blob: 99c617189e25afe9f1a360b2891b6031092f540a (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
|
# $NetBSD: files.ralink,v 1.4 2014/04/28 22:59:49 matt Exp $
file arch/mips/ralink/ralink_intr.c
file arch/mips/ralink/ralink_bus.c
# Ralink Watchdog Driver
defparam rwdog.h RA_WDOG_DEFAULT_PERIOD
defparam rwdog.h RA_WDOG_DEFAULT_MODE
device rwdog: sysmon_wdog
attach rwdog at mainbus
file arch/mips/ralink/ralink_wdog.c rwdog
# On-chip UART device as generic com
attach com at mainbus with ralink_com
file arch/mips/ralink/ralink_com.c ralink_com
options COM_REGMAP
# Ralink GPIO Controller
device rgpio: gpiobus
attach rgpio at mainbus
file arch/mips/ralink/ralink_gpio.c rgpio
# Ralink I2C Controller
device ri2c: i2cbus
attach ri2c at mainbus
file arch/mips/ralink/ralink_i2c.c ri2c
# USB OHCI Host Controller
attach ohci at mainbus with ralink_ohci
file arch/mips/ralink/ralink_ohci.c ralink_ohci
# USB EHCI Host Controller
attach ehci at mainbus with ralink_ehci
file arch/mips/ralink/ralink_ehci.c ralink_ehci
# Ralink Ethernet Controller
device reth: ether, ifnet, arp, mii
attach reth at mainbus
file arch/mips/ralink/ralink_eth.c reth
# Ralink CFI NOR
device cfi: norbus
attach cfi at mainbus with ralink_cfi
file arch/mips/ralink/ralink_cfi.c ralink_cfi
# Ralink PCIe
device rpci: pcibus
attach rpci at mainbus with ralink_pci
file arch/mips/ralink/ralink_pci.c ralink_pci
|