1 # $NetBSD: files.ingenic,v 1.5 2015/04/04 12:28:52 macallan Exp $ 2 3 include "dev/scsipi/files.scsipi" # SCSI devices 4 include "dev/ata/files.ata" # ATA devices 5 include "dev/usb/files.usb" # USB devices 6 7 # On-chip UART device 8 attach com at mainbus with com_mainbus 9 file arch/mips/ingenic/ingenic_com.c com_mainbus 10 11 # Ingenic system bus 12 device apbus { [addr=-1] } 13 attach apbus at mainbus 14 file arch/mips/ingenic/apbus.c apbus 15 16 # USB 17 attach dwctwo at apbus with ingenic_dwctwo 18 file arch/mips/ingenic/ingenic_dwctwo.c ingenic_dwctwo needs-flag 19 20 attach ohci at apbus with ingenic_ohci 21 file arch/mips/ingenic/ingenic_ohci.c ingenic_ohci needs-flag 22 23 attach ehci at apbus with ingenic_ehci 24 file arch/mips/ingenic/ingenic_ehci.c ingenic_ehci needs-flag 25 26 # Ethernet 27 attach dme at apbus with ingenic_dme 28 file arch/mips/ingenic/ingenic_dme.c ingenic_dme needs-flag 29 30 # I2C 31 device jziic : i2cbus 32 attach jziic at apbus 33 file arch/mips/ingenic/jziic.c jziic 34 defflag opt_ingenic.h JZIIC_DEBUG 35