blob: 600f48d25142554a422f20abf1f0fc273d6d0e4c (
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
|
# $OpenBSD: GENERIC,v 1.6 2001/08/21 14:33:53 jason Exp $
# $NetBSD: GENERIC32,v 1.18 2001/07/20 00:07:12 eeh Exp $
machine sparc64
include "../../../conf/GENERIC"
option SUN4U
option _LP64
option DDB_SAFE_CONSOLE # XXX - remove later
maxusers 64
config bsd swap generic
# Main bus and CPU .. all systems.
mainbus0 at root
cpu0 at mainbus0
# Bus types found on SPARC systems.
sbus0 at mainbus0 # Ultra 1
#### Standard system devices -- all required for a given architecture
## PROM console driver -- if all else fails
pcons0 at mainbus0 # PROM console
## Mostek clock
clock* at sbus? slot ? offset ?
## Timer chip found on (some) sun4u systems.
timer* at mainbus0
## Lance Ethernet - AMD7990
le* at sbus? slot ? offset ?
ledma* at sbus? slot ? offset ?
le* at ledma?
# Quad-ethernet glue device, and sub-devices
qec* at sbus? slot ? offset ?
qe* at qec?
be* at qec?
#
# Note the flags on the esp entries below, that work around
# deficiencies in the current driver:
# bits 0-7: disable disconnect/reselect for the corresponding target
# bits 8-15: disable synch negotiation for target [bit-8]
# Note: targets 4-7 have disconnect/reselect enabled on the premise
# that tape devices normally have one of these targets. Tape
# devices should be allowed to disconnect for the SCSI bus
# to operate acceptably.
#
dma* at sbus? slot ? offset ? # SBus
esp* at dma? flags 0x0000 # SBus
esp* at sbus? slot ? offset ?
# SCSI bus layer. SCSI devices attach to the SCSI bus, which attaches
# to the underlying hardware controller.
scsibus* at esp?
# These entries find devices on all SCSI busses and assign
# unit numers dynamically.
sd* at scsibus? target ? lun ?
cd* at scsibus? target ? lun ?
ch* at scsibus? target ? lun ?
uk* at scsibus? target ? lun ?
|