blob: ed86a3bae0f96712ecf805b8d2e4c011e0f66363 (
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
|
# $OpenBSD: files.mvmeppc,v 1.4 2001/09/02 19:40:03 miod Exp $
#
# powerpc-specific configuration info
#
maxpartitions 16
maxusers 2 8 64
file dev/cons.c
file dev/cninit.c
file arch/mvmeppc/ddb/db_memrw.c ddb
file arch/mvmeppc/ddb/db_disasm.c ddb
file arch/mvmeppc/ddb/db_interface.c ddb
file arch/mvmeppc/ddb/db_trace.c ddb
file arch/mvmeppc/dev/bugio.c
file arch/mvmeppc/dev/clock.c
file arch/mvmeppc/dev/mem.c
file arch/mvmeppc/mvmeppc/autoconf.c
file arch/mvmeppc/mvmeppc/conf.c
file arch/mvmeppc/mvmeppc/disksubr.c disk
file arch/mvmeppc/mvmeppc/machdep.c
file arch/mvmeppc/mvmeppc/bus_space.c
file arch/mvmeppc/mvmeppc/bus_dma.c
file arch/mvmeppc/mvmeppc/ppc1_machdep.c
#
# Media Indepedent Interface (mii)
#
include "../../../dev/mii/files.mii"
define mainbus {}
device mainbus
attach mainbus at root
file arch/mvmeppc/dev/mainbus.c mainbus
device cpu
attach cpu at mainbus
file arch/mvmeppc/dev/cpu.c
device raven {}
attach raven at mainbus
file arch/mvmeppc/dev/raven.c
device openpic
attach openpic at raven
file arch/mvmeppc/dev/openpic.c
major {rd = 17}
# I2O
include "../../../dev/i2o/files.i2o"
# PCI bus support
# XXX Dummy bus needed for some multi-homed devices specified in files.isa
define pcmcia {}
include "dev/pci/files.pci" # XXX some ISA devs are 'at pci' too.
# Ethernet driver for DC21140A-based SBCs
device vde: ether, ifnet, ifmedia
attach vde at pci
file arch/mvmeppc/pci/if_vde.c vde
device mpcpcibr {} : pcibus
attach mpcpcibr at raven
file arch/mvmeppc/pci/mpcpcibr.c mpcpcibr
# PCI-Host bridge chipsets
device pchb: pcibus
attach pchb at pci
file arch/mvmeppc/pci/pchb.c pchb
#
# ISA Bus devices
#
include "dev/isa/files.isa"
include "dev/isa/files.isapnp"
file arch/mvmeppc/isa/isa_machdep.c isa
# PCI-ISA bridge chipsets
device pcib: isabus
attach pcib at pci
file arch/mvmeppc/pci/pcib.c pcib
include "dev/pckbc/files.pckbc"
major {sd = 2} # hey this was 0 but at slot 2 in bdevsw XXX
major {cd = 3}
include "../../../scsi/files.scsi"
#
# "workstation console" routines
#
#include "dev/wscons/files.wscons"
# Machine-independent ATAPI drivers
include "../../../dev/atapiscsi/files.atapiscsi"
include "../../../dev/ata/files.ata"
# MAC periph ??? XXX smurph
#device zsc {channel = -1}
#attach zsc at obio
#file arch/powerpc/mac/zs.c zsc needs-flag
#file dev/ic/z8530sc.c zsc
#device zstty: tty
#attach zstty at zsc
#file dev/ic/z8530tty.c zstty needs-flag
device bugtty: tty
attach bugtty at mainbus
file arch/mvmeppc/dev/bugtty.c bugtty needs-flag
|