blob: ebf70d44e9a3518e3325ed5cad57bc0fe1975004 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
|
# $OpenBSD: files.hppa64,v 1.16 2011/10/06 20:49:28 deraadt Exp $
#
# hppa64-specific configuration info
# maxpartitions must be the first item in files.${ARCH}
maxpartitions 16
maxusers 2 8 128
#
# "workstation console" routines
#
include "dev/wscons/files.wscons"
file arch/hppa64/hppa64/wscons_machdep.c wsdisplay
#
# Media Independent Interface (mii)
#
include "dev/mii/files.mii"
#
# Machine-independent SCSI drivers
#
include "scsi/files.scsi"
major { sd = 4 }
major { st = 5 }
major { cd = 6 }
# I2O
include "dev/i2o/files.i2o"
#
# MI ATAPI drivers
#
include "dev/atapiscsi/files.atapiscsi"
include "dev/ata/files.ata"
#
# PCI Bus support
#
include "dev/pci/files.pci"
#
# CardBus support
#
include "dev/cardbus/files.cardbus"
#
# Machine-independent PCMCIA drivers
#
include "dev/pcmcia/files.pcmcia"
#
# Machine-independent USB drivers
#
include "dev/usb/files.usb"
#
# Bluetooth
#
include "dev/bluetooth/files.bluetooth"
#
# Machine-independent 1-Wire drivers
#
include "dev/onewire/files.onewire"
#
# Mainbus
#
define gedoens {}
device mainbus: gedoens
attach mainbus at root
file arch/hppa64/hppa64/mainbus.c mainbus
device pdc
attach pdc at gedoens
file arch/hppa64/dev/pdc.c pdc
device power
attach power at gedoens
file arch/hppa64/dev/power.c power needs-flag
device mem
attach mem at gedoens
file arch/hppa64/dev/mem.c mem
device cpu
attach cpu at gedoens
file arch/hppa64/dev/cpu.c cpu
# Astro/Pluto, integrated Runway-Ropes bridge, MIOC and IOA
device astro: gedoens
attach astro at gedoens
file arch/hppa64/dev/astro.c astro
# Elroy, Ropes to PCI Bridge. Supports 4X PCI and dual address cycle.
# Mercury; QuickSilver is an AGP also
device elroy: pcibus
attach elroy at gedoens
file arch/hppa64/dev/elroy.c elroy
file arch/hppa64/dev/apic.c elroy
device ssio {[irq = -1]}
attach ssio at pci
file arch/hppa64/dev/ssio.c ssio
attach com at ssio with com_ssio
file arch/hppa64/dev/com_ssio.c com_ssio
#attach lpt at ssio with lpt_ssio
#file arch/hppa64/dev/lpt_ssio.c lpt_ssio
###
major {vnd = 2}
major {rd = 3}
# PS/2 mouse
include "dev/pckbc/files.pckbc"
#
# Non-device files
#
file arch/hppa64/hppa64/autoconf.c
file arch/hppa64/hppa64/conf.c
file arch/hppa64/hppa64/db_interface.c ddb
file arch/hppa64/hppa64/db_disasm.c ddb
file arch/hppa64/hppa64/disksubr.c disk
file arch/hppa64/hppa64/fpu.c
file arch/hppa64/hppa64/intr.c
file arch/hppa64/hppa64/machdep.c
file arch/hppa64/hppa64/mutex.c
file arch/hppa64/hppa64/pmap.c
file arch/hppa64/hppa64/process_machdep.c
file arch/hppa64/hppa64/sys_machdep.c
file arch/hppa64/hppa64/trap.c
file arch/hppa64/hppa64/vm_machdep.c
file arch/hppa64/hppa64/in_cksum.c inet
file netinet/in4_cksum.c inet
file arch/hppa64/dev/clock.c
# hppa64 doesn't have multiplication or division instructions
file lib/libkern/divdi3.c
file lib/libkern/moddi3.c
file lib/libkern/muldi3.c
file lib/libkern/qdivrem.c
file lib/libkern/udivdi3.c
file lib/libkern/umoddi3.c
# kern..
file lib/libkern/arch/hppa64/milli.S
file lib/libkern/arch/hppa64/spcopy.S
|