files.bebox revision 1.21
1# $NetBSD: files.bebox,v 1.21 2000/11/08 19:48:52 ad Exp $ 2# 3# First try for bebox specific configuration info 4# 5maxpartitions 16 6 7maxusers 2 8 64 8 9file arch/bebox/bebox/autoconf.c 10file arch/bebox/bebox/bus_dma.c 11file arch/bebox/bebox/clock.c 12file arch/bebox/bebox/conf.c 13file arch/bebox/bebox/disksubr.c disk 14file arch/bebox/bebox/extintr.c 15file arch/bebox/bebox/machdep.c 16 17# General files 18file dev/cons.c 19 20# 21# Machine-independent SCSI drivers 22# 23include "dev/scsipi/files.scsipi" 24major {sd = 4} 25major {cd = 6} 26 27# 28# Machine-independent ATA drivers 29# 30 31include "dev/ata/files.ata" 32major {wd = 0} 33 34# 35# Memory Disk for install floppy 36# 37file arch/bebox/bebox/md_root.c memory_disk_hooks 38major {md = 17} 39 40# 41# RAIDframe 42# 43major {raid = 18} 44 45# 46# Machine-independent I2O drivers. 47# 48include "dev/i2o/files.i2o" 49 50# 51# System bus types 52# 53define mainbus { } 54device mainbus: isabus, pcibus, mainbus 55attach mainbus at root 56file arch/bebox/bebox/mainbus.c mainbus 57 58# 59# PCI-only drivers 60# XXX MUST BE INCLUDED BEFORE files.isa, as long as files.isa attaches 61# XXX devices to 'pci'. 62# 63include "dev/pci/files.pci" 64file arch/bebox/pci/pci_machdep.c pci 65 66# PCI-Host bridge chipsets 67device pchb: pcibus 68attach pchb at pci 69file arch/bebox/pci/pchb.c pchb 70 71# PCI-ISA bridges 72device pcib: isabus 73attach pcib at pci 74file arch/bebox/pci/pcib.c pcib 75 76# 77# ISA and mixed ISA+PCI drivers 78# 79 80include "dev/isa/files.isa" 81major {mcd = 7} 82#major {scd = 15} 83 84file arch/bebox/isa/isa_machdep.c isa 85file arch/bebox/isa/isadma_machdep.c isa 86 87# PC clock 88file arch/bebox/isa/isaclock.c isa 89 90# attribute used to represent the "keyboard controller" 91# XXX should be a real device 92define pckbcport { [irq = -1], [port = -1] } 93 94# PC console support a la "pccons" 95device pc: tty, pckbcport 96attach pc at isa 97device pcconskbd 98attach pcconskbd at pckbc 99file arch/bebox/isa/pccons.c pc | pcconskbd needs-flag 100 101# PC Mice; Logitech-style, Microsoft-style, and PS/2-style 102device lms 103attach lms at isa 104file arch/bebox/isa/lms.c lms needs-flag 105device mms 106attach mms at isa 107file arch/bebox/isa/mms.c mms needs-flag 108device opms 109attach opms at pckbcport with pms_hack 110attach opms at pckbc with pms_pckbc 111file arch/bebox/isa/pms.c pms | pms_hack | pms_pckbc needs-flag 112 113include "dev/wscons/files.wscons" 114 115device pfb: wsemuldisplaydev, wsrasteremulops 116attach pfb at pci 117file arch/bebox/pci/pfb.c pfb needs-flag 118 119include "dev/pckbc/files.pckbc" 120 121# Floppy disk controller 122device fdc {drive = -1}: isadma 123file dev/isa/fd.c fdc needs-flag 124 125attach fdc at isa with fdc_isa 126file dev/isa/fdc_isa.c fdc_isa 127 128device fd: disk 129attach fd at fdc 130major {fd = 2} 131 132# Game adapter (joystick) 133device joy 134file arch/bebox/isa/joy.c joy needs-flag 135 136attach joy at isa with joy_isa 137file arch/bebox/isa/joy_isa.c joy_isa 138 139# ISA Plug 'n Play support 140file arch/bebox/isa/isapnp_machdep.c isapnp 141