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