1 # $NetBSD: files.malta,v 1.4 2002/09/06 13:18:43 gehenna Exp $ 2 3 file arch/evbmips/malta/malta_bus_io.c 4 file arch/evbmips/malta/malta_bus_mem.c 5 file arch/evbmips/malta/malta_dma.c 6 file arch/evbmips/malta/malta_intr.c 7 8 file arch/evbmips/malta/autoconf.c 9 file arch/evbmips/malta/disksubr.c 10 file arch/evbmips/malta/leds.c 11 file arch/evbmips/malta/machdep.c 12 13 file arch/mips/mips/bus_dma.c 14 file arch/evbmips/evbmips/clock.c 15 file arch/evbmips/evbmips/conf_common.c 16 file arch/evbmips/evbmips/interrupt.c 17 file arch/evbmips/evbmips/yamon.c # XXX should be in arch/mips/yamon ? 18 19 # The autoconfiguration root. 20 device mainbus { [addr = -1] } 21 attach mainbus at root 22 file arch/evbmips/malta/dev/mainbus.c mainbus 23 24 device cpu 25 attach cpu at mainbus 26 file arch/evbmips/malta/cpu.c cpu 27 28 device mcclock 29 file arch/evbmips/dev/mcclock.c mcclock 30 31 # Machine-independent I2O drivers. 32 include "dev/i2o/files.i2o" 33 34 # Machine-independent SCSI drivers 35 include "dev/scsipi/files.scsipi" 36 37 # Machine-independent ATA drivers 38 include "dev/ata/files.ata" 39 40 # Machine-independent WS console drivers 41 include "dev/wsfont/files.wsfont" 42 include "dev/wscons/files.wscons" 43 44 # Machine-independent PC-style keyboard controller drivers 45 include "dev/pckbc/files.pckbc" 46 47 # Machine-independent USB device support 48 include "dev/usb/files.usb" 49 50 # Memory Disk 51 file dev/md_root.c memory_disk_hooks 52 53 include "dev/pci/files.pci" 54 include "dev/isa/files.isa" 55 56 #device panel 57 #attach panel at mainbus 58 #file arch/evbmips/malta/dev/panel.c panel 59 60 # 61 # PCI bus support. 62 # 63 device gt: pcibus 64 attach gt at mainbus 65 file arch/evbmips/malta/dev/gt.c gt # XXX should be in arch/mips/galileo ? 66 67 file arch/evbmips/malta/pci/pci_machdep.c pci 68 file arch/evbmips/malta/pci/pciide_machdep.c pciide 69 70 device pchb 71 attach pchb at pci 72 file arch/evbmips/malta/pci/pchb.c pchb 73 74 device pcib: isabus 75 attach pcib at pci 76 file arch/evbmips/malta/pci/pcib.c pcib 77 78 # 79 # ISA bus support. 80 # 81 attach mcclock at isa with mcclock_isa 82 file arch/evbmips/isa/mcclock_isa.c mcclock_isa 83 84 file arch/evbmips/isa/isadma_bounce.c isa 85 86 # Floppy disk controller 87 device fdc { drive = -1 }: isadma 88 file dev/isa/fd.c fdc needs-flag 89 90 attach fdc at isa with fdc_isa 91 file dev/isa/fdc_isa.c fdc_isa 92 93 device fd: disk 94 attach fd at fdc 95 96 # 97 # Devices on the local I/O bus. 98 # 99 attach com at mainbus with com_mainbus 100 file arch/evbmips/malta/dev/com_mainbus.c com_mainbus 101