files.hp300 revision 1.65
11.65Sgmcgarry#	$NetBSD: files.hp300,v 1.65 2003/05/24 06:21:21 gmcgarry Exp $
21.2Scgd#
31.20Sthorpej# hp300-specific configuration info
41.20Sthorpej
51.20Sthorpej# maxpartitions must be the first item in files.${ARCH}
61.20Sthorpejmaxpartitions 8
71.20Sthorpej
81.20Sthorpejmaxusers 2 8 64
91.26Sthorpej
101.27Sthorpej# SPU configuration options.
111.50Slukemdefflag	opt_spuconf.h	HP320 HP330 HP340 HP345 HP350 HP360 HP370
121.49Slukem			HP375 HP380 HP385 HP400 HP425 HP433
131.20Sthorpej
141.27Sthorpej# Misc. options.
151.50Slukemdefflag			USELEDS		# make the lights twinkle
161.27Sthorpej
171.20Sthorpej# NOTE!  The order of these lines is significant!  Don't change them
181.20Sthorpej# unless you absolutely know what you're doing!
191.20Sthorpej
201.27Sthorpej#
211.27Sthorpej# Mainbus
221.27Sthorpej#
231.27Sthorpej
241.34Sthorpejdevice	mainbus { }
251.27Sthorpejattach	mainbus at root
261.27Sthorpej
271.27Sthorpej#
281.27Sthorpej# Internal i/o space
291.27Sthorpej#
301.27Sthorpej
311.34Sthorpejdevice	intio { }
321.27Sthorpejattach	intio at mainbus
331.27Sthorpejfile	arch/hp300/dev/intio.c		intio
341.27Sthorpej
351.27Sthorpej#
361.27Sthorpej# DIO bus
371.27Sthorpej#
381.27Sthorpej
391.34Sthorpejdevice	dio { scode = -1 }
401.27Sthorpejattach	dio at mainbus
411.27Sthorpejfile	arch/hp300/dev/dio.c		dio
421.27Sthorpej
431.27Sthorpej#
441.27Sthorpej# Devices in Internal i/o space
451.27Sthorpej#
461.27Sthorpej
471.53Sgmcgarry# Real-time clock (not optional)
481.53Sgmcgarrydevice	rtc
491.53Sgmcgarryattach	rtc at intio
501.53Sgmcgarryfile	arch/hp300/dev/rtc.c			rtc
511.53Sgmcgarry
521.53Sgmcgarry# Human (Hilarious) Interface Loop
531.53Sgmcgarrydevice	hil { }
541.53Sgmcgarryattach	hil at intio
551.53Sgmcgarryfile	arch/hp300/dev/hil.c			hil	needs-flag
561.53Sgmcgarryfile	arch/hp300/dev/hil_keymaps.c		hil
571.53Sgmcgarry
581.63Sgmcgarry# 98620 DMA controller
591.64Sthorpejdevice	dma
601.63Sgmcgarryattach	dma at intio
611.63Sgmcgarryfile	arch/hp300/dev/dma.c			dma
621.63Sgmcgarry
631.27Sthorpej# Apollo Utilility Chip (a.k.a. "Frodo") found on 4xx workstations
641.34Sthorpejdevice	frodo { offset = -1 }
651.27Sthorpejattach	frodo at intio
661.27Sthorpejfile	arch/hp300/dev/frodo.c		frodo
671.28Sthorpej
681.28Sthorpej# Apollo APCI 8250-like UARTs
691.34Sthorpejdevice	apci: tty
701.28Sthorpejattach	apci at frodo
711.28Sthorpejfile	arch/hp300/dev/apci.c		apci needs-flag
721.27Sthorpej
731.20Sthorpej# Frame buffer attribute
741.20Sthorpejdefine	grfdev { }
751.20Sthorpej
761.20Sthorpej# Frame buffer devices
771.34Sthorpejdevice	dvbox: grfdev
781.20Sthorpejfile	arch/hp300/dev/grf_dv.c		dvbox needs-flag
791.20Sthorpej
801.34Sthorpejdevice	gbox: grfdev
811.20Sthorpejfile	arch/hp300/dev/grf_gb.c		gbox needs-flag
821.20Sthorpej
831.34Sthorpejdevice	hyper: grfdev
841.20Sthorpejfile	arch/hp300/dev/grf_hy.c		hyper needs-flag
851.20Sthorpej
861.34Sthorpejdevice	rbox: grfdev
871.20Sthorpejfile	arch/hp300/dev/grf_rb.c		rbox needs-flag
881.20Sthorpej
891.34Sthorpejdevice	topcat: grfdev
901.20Sthorpejfile	arch/hp300/dev/grf_tc.c		topcat needs-flag
911.20Sthorpej
921.20Sthorpej# `grf' framebuffer abstraction
931.34Sthorpejdevice	grf { }
941.20Sthorpejattach	grf at grfdev
951.20Sthorpejfile	arch/hp300/dev/grf.c		grf needs-flag
961.20Sthorpejfile	arch/hp300/dev/grf_subr.c	grf
971.20Sthorpej
981.20Sthorpej# Internal Terminal Emulator
991.34Sthorpejdevice	ite: tty
1001.20Sthorpejattach	ite at grf
1011.20Sthorpejfile	arch/hp300/dev/ite.c		ite needs-flag
1021.48Slukemfile	arch/hp300/dev/ite_subr.c	ite
1031.20Sthorpej
1041.20Sthorpej# Internal i/o framebuffer attachments
1051.20Sthorpejattach	dvbox at intio with dvbox_intio
1061.20Sthorpejattach	gbox at intio with gbox_intio
1071.20Sthorpejattach	rbox at intio with rbox_intio
1081.20Sthorpejattach	topcat at intio with topcat_intio
1091.20Sthorpej
1101.20Sthorpej#
1111.27Sthorpej# Devices on the DIO bus
1121.20Sthorpej#
1131.20Sthorpej
1141.20Sthorpej# DIO framebuffer attachments
1151.20Sthorpejattach	dvbox at dio with dvbox_dio
1161.20Sthorpejattach	gbox at dio with gbox_dio
1171.20Sthorpejattach	hyper at dio with hyper_dio
1181.20Sthorpejattach	rbox at dio with rbox_dio
1191.20Sthorpejattach	topcat at dio with topcat_dio
1201.20Sthorpej
1211.20Sthorpej# DCA serial interface
1221.34Sthorpejdevice	dca: tty
1231.20Sthorpejattach	dca at dio
1241.20Sthorpejfile	arch/hp300/dev/dca.c		dca needs-flag
1251.20Sthorpej
1261.20Sthorpej# DCM serial interface
1271.34Sthorpejdevice	dcm: tty
1281.20Sthorpejattach	dcm at dio
1291.20Sthorpejfile	arch/hp300/dev/dcm.c		dcm needs-flag
1301.20Sthorpej
1311.20Sthorpej# LANCE ethernet
1321.37Sdrochnerattach	le at dio: le24
1331.20Sthorpejfile	arch/hp300/dev/if_le.c		le
1341.20Sthorpej
1351.20Sthorpej# HP-IB interfaces
1361.20Sthorpejdefine	hpibdev { }
1371.20Sthorpej
1381.64Sthorpejdevice	nhpib: hpibdev
1391.65Sgmcgarryattach	nhpib at intio with nhpib_intio
1401.65Sgmcgarryattach	nhpib at dio with nhpib_dio
1411.20Sthorpejfile	arch/hp300/dev/nhpib.c		nhpib
1421.20Sthorpej
1431.64Sthorpejdevice	fhpib: hpibdev
1441.20Sthorpejattach	fhpib at dio
1451.20Sthorpejfile	arch/hp300/dev/fhpib.c		fhpib
1461.20Sthorpej
1471.20Sthorpej# HP-IB bus layer
1481.34Sthorpejdevice	hpibbus { slave = -1, punit = -1 }
1491.20Sthorpejattach	hpibbus at hpibdev
1501.20Sthorpejfile	arch/hp300/dev/hpib.c		hpibbus
1511.20Sthorpej
1521.20Sthorpej# HP-IB devices
1531.34Sthorpejdevice	ct: tape
1541.20Sthorpejattach	ct at hpibbus
1551.20Sthorpejfile	arch/hp300/dev/ct.c		ct needs-flag
1561.20Sthorpej
1571.34Sthorpejdevice	mt: tape
1581.20Sthorpejattach	mt at hpibbus
1591.20Sthorpejfile	arch/hp300/dev/mt.c		mt needs-flag
1601.20Sthorpej
1611.34Sthorpejdevice	rd: disk
1621.20Sthorpejattach	rd at hpibbus
1631.20Sthorpejfile	arch/hp300/dev/rd.c		rd needs-flag
1641.20Sthorpejfile	arch/hp300/dev/rd_compat.c	rd		# XXX
1651.20Sthorpej
1661.34Sthorpejdevice	ppi
1671.20Sthorpejattach	ppi at hpibbus
1681.20Sthorpejfile	arch/hp300/dev/ppi.c		ppi needs-flag
1691.20Sthorpej
1701.20Sthorpej# Old HP SCSI layer
1711.34Sthorpejdevice	oscsi { target = -1, lun = -1 }
1721.20Sthorpejattach	oscsi at dio
1731.21Sthorpejfile	arch/hp300/dev/scsi.c		oscsi
1741.20Sthorpej
1751.20Sthorpej# Old HP SCSI devices
1761.34Sthorpejdevice	sd: disk
1771.20Sthorpejattach	sd at oscsi
1781.20Sthorpejfile	arch/hp300/dev/sd.c		sd needs-flag
1791.20Sthorpejfile	arch/hp300/dev/sd_compat.c	sd		# XXX
1801.20Sthorpej
1811.34Sthorpejdevice	st: tape
1821.20Sthorpejattach	st at oscsi
1831.20Sthorpejfile	arch/hp300/dev/st.c		st needs-flag
1841.20Sthorpej
1851.34Sthorpejdevice	ac
1861.20Sthorpejattach	ac at oscsi
1871.20Sthorpejfile	arch/hp300/dev/ac.c		ac needs-flag
1881.42Soster
1891.55Sgmcgarry# Memory Disk for ramdisk
1901.55Sgmcgarryfile	dev/md_root.c			memory_disk_hooks
1911.55Sgmcgarry
1921.20Sthorpej#
1931.20Sthorpej# Non-device files
1941.20Sthorpej#
1951.20Sthorpej
1961.20Sthorpejfile	arch/hp300/hp300/autoconf.c
1971.31Sthorpejfile	arch/hp300/hp300/bus_space.c
1981.20Sthorpejfile	arch/hp300/hp300/clock.c
1991.20Sthorpejfile	arch/hp300/hp300/dkbad.c
2001.20Sthorpejfile	arch/hp300/hp300/machdep.c
2011.25Sthorpejfile	arch/hp300/hp300/intr.c
2021.27Sthorpejfile	arch/hp300/hp300/leds.c			useleds
2031.20Sthorpejfile	arch/hp300/hp300/mem.c
2041.35Sthorpejfile	arch/hp300/hp300/pmap_bootstrap.c	compile-with "${NOPROF_C}"
2051.44Sfvdlfile	arch/hp300/hp300/procfs_machdep.c	procfs
2061.52Sgmcgarryfile	arch/hp300/hp300/softintr.c
2071.20Sthorpejfile	arch/hp300/hp300/trap.c
2081.20Sthorpejfile	arch/hp300/hp300/disksubr.c
2091.57Schsfile	arch/m68k/m68k/cacheops.c
2101.59Schsfile	arch/m68k/m68k/db_memrw.c		ddb | kgdb
2111.60Schsfile	arch/m68k/m68k/kgdb_machdep.c		kgdb
2121.62Schsfile	arch/m68k/m68k/pmap_motorola.c
2131.61Schsfile	arch/m68k/m68k/sys_machdep.c
2141.57Schsfile	arch/m68k/m68k/vm_machdep.c
2151.20Sthorpej
2161.46Stsutsuifile	dev/clock_subr.c
2171.20Sthorpejfile	dev/cons.c
2181.20Sthorpej
2191.20Sthorpej#
2201.20Sthorpej# HP-UX binary compatibility
2211.20Sthorpej#
2221.20Sthorpejinclude "compat/hpux/files.hpux"
2231.20Sthorpejfile	arch/hp300/hp300/hpux_machdep.c		compat_hpux
2241.43Ssimonb
2251.43Ssimonb# NetBSD m68k a.out Binary Compatibility (COMPAT_AOUT_M68K)
2261.43Ssimonbinclude	"compat/aoutm68k/files.aoutm68k"
2271.30Scarrel
2281.39Skleink# SVR4 Binary Compatibility (COMPAT_SVR4)
2291.39Skleinkinclude	"compat/svr4/files.svr4"
2301.39Skleink
2311.30Scarrel# SunOS Binary Compatibility (COMPAT_SUNOS)
2321.30Scarrelinclude	"compat/sunos/files.sunos"
2331.30Scarrelfile	arch/m68k/m68k/sunos_machdep.c	compat_sunos
2341.38Sitohy
2351.38Sitohy# Linux binary compatibility (COMPAT_LINUX)
2361.38Sitohyinclude "compat/linux/files.linux"
2371.38Sitohyinclude "compat/linux/arch/m68k/files.linux_m68k"
2381.45Schristosfile arch/m68k/m68k/linux_trap.c		compat_linux
2391.39Skleink
2401.39Skleink# a.out binary compatibility (COMPAT_AOUT)
2411.39Skleinkinclude "compat/aout/files.aout"
2421.38Sitohy
2431.38Sitohy# OSS audio driver compatibility
2441.38Sitohyinclude "compat/ossaudio/files.ossaudio"
2451.56Sgehenna
2461.56Sgehennainclude	"arch/hp300/conf/majors.hp300"
247