blob: aed8e876568b960e30d020d9228b1b39a9e71ccc (
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
|
# $OpenBSD: files.pcmcia,v 1.6 1996/11/30 13:39:25 niklas Exp $
# $Id: files.pcmcia,v 1.6 1996/11/30 13:39:25 niklas Exp $
#
# Config.new file and device description for machine-independent PCMCIA code.
# Included by ports that need it.
# XXX Does this comment hold?
# ports should define their own "device pcmcia" line (like the one below,
# but with the correct bus attachment).
#
# needs all the parameters available on isa, so devices can attach here.
#
device pcmcia {[port = -1], [size = 0],
[iomem = -1], [iosiz = 0],
[irq = -1], [drq = -1], [slot = -1]}
attach pcmcia at pcmciabus
file dev/pcmcia/pcmcia.c pcmcia needs-flag
file dev/pcmcia/pcmcia_conf.c pcmcia
# 8250/16[45]50-based "com" ports
attach com at pcmcia with com_pcmcia
file dev/pcmcia/com_pcmcia.c com_pcmcia
# 3Com 3c589 Ethernet controllers
# device declaration in sys/conf/files
attach ep at pcmcia with ep_pcmcia
file dev/pcmcia/if_ep_pcmcia.c ep_pcmcia
|