1 # $NetBSD: files.malta,v 1.19 2014/07/20 10:22:54 alnsn 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/leds.c 10 file arch/evbmips/malta/machdep.c 11 12 file arch/mips/mips/bus_dma.c 13 file arch/evbmips/evbmips/disksubr.c 14 file arch/evbmips/evbmips/interrupt.c 15 file arch/evbmips/evbmips/yamon.c # XXX should be in arch/mips/yamon ? 16 17 file arch/mips/mips/mips3_clock.c 18 file arch/mips/mips/mips3_clockintr.c 19 20 # The autoconfiguration root. 21 device mainbus { [addr = -1] } 22 attach mainbus at root 23 file arch/evbmips/malta/dev/mainbus.c mainbus 24 25 device cpu 26 attach cpu at mainbus 27 file arch/evbmips/evbmips/cpu.c cpu 28 29 # Stack-less Just-In-Time compiler 30 include "external/bsd/sljit/conf/files.sljit" 31 32 # Machine-independent I2O drivers. 33 include "dev/i2o/files.i2o" 34 35 # Machine-independent SCSI drivers 36 include "dev/scsipi/files.scsipi" 37 38 # Machine-independent ATA drivers 39 include "dev/ata/files.ata" 40 41 # Machine-independent PC-style keyboard controller drivers 42 include "dev/pckbport/files.pckbport" 43 44 # Machine-independent USB device support 45 include "dev/usb/files.usb" 46 47 # Memory Disk 48 file dev/md_root.c memory_disk_hooks 49 50 include "dev/pci/files.pci" 51 include "dev/isa/files.isa" 52 53 #device panel 54 #attach panel at mainbus 55 #file arch/evbmips/malta/dev/panel.c panel 56 57 # 58 # PCI bus support. 59 # 60 device gt: pcibus 61 attach gt at mainbus 62 file arch/evbmips/malta/dev/gt.c gt # XXX should be in arch/mips/galileo ? 63 64 file arch/evbmips/malta/pci/pci_machdep.c pci 65 file arch/mips/pci/pciide_machdep.c pciide_common 66 67 device pchb 68 attach pchb at pci 69 file arch/evbmips/malta/pci/pchb.c pchb 70 71 device pcib: isabus 72 attach pcib at pci 73 file arch/evbmips/malta/pci/pcib.c pcib 74 75 # 76 # ISA bus support. 77 # 78 device mcclock: mc146818 79 attach mcclock at isa with mcclock_isa 80 file arch/evbmips/isa/mcclock_isa.c mcclock_isa 81 82 #file arch/evbmips/isa/isadma_bounce.c isa 83 84 # Floppy disk controller 85 device fdc { drive = -1 }: isadma 86 file dev/isa/fd.c fdc needs-flag 87 88 attach fdc at isa with fdc_isa 89 file dev/isa/fdc_isa.c fdc_isa 90 91 device fd: disk 92 attach fd at fdc 93 94 # 95 # Devices on the local I/O bus. 96 # 97 attach com at mainbus with com_mainbus 98 file arch/evbmips/malta/dev/com_mainbus.c com_mainbus 99