1 /**************************************************************************
3 * isapnp.h -- Etherboot isapnp support for the 3Com 3c515
4 * Written 2002-2003 by Timothy Legge <tlegge@rogers.com>
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
11 * This program is distributed in the hope that it will be useful,
12 * but WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
14 * GNU General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA.
20 * Portions of this code:
21 * Copyright (C) 2001 P.J.H.Fox (fox@roestock.demon.co.uk)
27 * Version 0.1 April 26, 2002 TJL
28 * Version 0.2 01/08/2003 TJL Renamed from 3c515_isapnp.h
31 * Generalised into an ISAPnP bus that can be used by more than just
32 * the 3c515 by Michael Brown <mbrown@fensystems.co.uk>
34 ***************************************************************************/
36 FILE_LICENCE ( GPL2_OR_LATER
);
42 #include <gpxe/isa_ids.h>
43 #include <gpxe/device.h>
44 #include <gpxe/tables.h>
52 #define ISAPNP_ADDRESS 0x279
53 #define ISAPNP_WRITE_DATA 0xa79
54 #define ISAPNP_READ_PORT_MIN 0x203
55 #define ISAPNP_READ_PORT_START 0x213 /* ISAPnP spec says 0x203, but
56 * Linux ISAPnP starts at
57 * 0x213 with no explanatory
58 * comment. 0x203 probably
59 * clashes with something. */
60 #define ISAPNP_READ_PORT_MAX 0x3ff
61 #define ISAPNP_READ_PORT_STEP 0x10 /* Can be any multiple of 4
62 * according to the spec, but
63 * since ISA I/O addresses are
64 * allocated in blocks of 16,
65 * it makes no sense to use
66 * any value less than 16.
69 /* Card select numbers */
70 #define ISAPNP_CSN_MIN 0x01
71 #define ISAPNP_CSN_MAX 0x0f
74 #define ISAPNP_READPORT 0x00
75 #define ISAPNP_SERIALISOLATION 0x01
76 #define ISAPNP_CONFIGCONTROL 0x02
77 #define ISAPNP_WAKE 0x03
78 #define ISAPNP_RESOURCEDATA 0x04
79 #define ISAPNP_STATUS 0x05
80 #define ISAPNP_CARDSELECTNUMBER 0x06
81 #define ISAPNP_LOGICALDEVICENUMBER 0x07
82 #define ISAPNP_ACTIVATE 0x30
83 #define ISAPNP_IORANGECHECK 0x31
84 #define ISAPNP_IOBASE(n) ( 0x60 + ( (n) * 2 ) )
85 #define ISAPNP_IRQNO(n) ( 0x70 + ( (n) * 2 ) )
86 #define ISAPNP_IRQTYPE(n) ( 0x71 + ( (n) * 2 ) )
88 /* Bits in the CONFIGCONTROL register */
89 #define ISAPNP_CONFIG_RESET ( 1 << 0 )
90 #define ISAPNP_CONFIG_WAIT_FOR_KEY ( 1 << 1 )
91 #define ISAPNP_CONFIG_RESET_CSN ( 1 << 2 )
92 #define ISAPNP_CONFIG_RESET_DRV ( ISAPNP_CONFIG_RESET | \
93 ISAPNP_CONFIG_WAIT_FOR_KEY | \
94 ISAPNP_CONFIG_RESET_CSN )
96 /* The LFSR used for the initiation key and for checksumming */
97 #define ISAPNP_LFSR_SEED 0x6a
100 #define ISAPNP_IS_SMALL_TAG(tag) ( ! ( (tag) & 0x80 ) )
101 #define ISAPNP_SMALL_TAG_NAME(tag) ( ( (tag) >> 3 ) & 0xf )
102 #define ISAPNP_SMALL_TAG_LEN(tag) ( ( (tag) & 0x7 ) )
103 #define ISAPNP_TAG_PNPVERNO 0x01
104 #define ISAPNP_TAG_LOGDEVID 0x02
105 #define ISAPNP_TAG_COMPATDEVID 0x03
106 #define ISAPNP_TAG_IRQ 0x04
107 #define ISAPNP_TAG_DMA 0x05
108 #define ISAPNP_TAG_STARTDEP 0x06
109 #define ISAPNP_TAG_ENDDEP 0x07
110 #define ISAPNP_TAG_IOPORT 0x08
111 #define ISAPNP_TAG_FIXEDIO 0x09
112 #define ISAPNP_TAG_RSVDSHORTA 0x0A
113 #define ISAPNP_TAG_RSVDSHORTB 0x0B
114 #define ISAPNP_TAG_RSVDSHORTC 0x0C
115 #define ISAPNP_TAG_RSVDSHORTD 0x0D
116 #define ISAPNP_TAG_VENDORSHORT 0x0E
117 #define ISAPNP_TAG_END 0x0F
119 #define ISAPNP_IS_LARGE_TAG(tag) ( ( (tag) & 0x80 ) )
120 #define ISAPNP_LARGE_TAG_NAME(tag) (tag)
121 #define ISAPNP_TAG_MEMRANGE 0x81
122 #define ISAPNP_TAG_ANSISTR 0x82
123 #define ISAPNP_TAG_UNICODESTR 0x83
124 #define ISAPNP_TAG_VENDORLONG 0x84
125 #define ISAPNP_TAG_MEM32RANGE 0x85
126 #define ISAPNP_TAG_FIXEDMEM32RANGE 0x86
127 #define ISAPNP_TAG_RSVDLONG0 0xF0
128 #define ISAPNP_TAG_RSVDLONG1 0xF1
129 #define ISAPNP_TAG_RSVDLONG2 0xF2
130 #define ISAPNP_TAG_RSVDLONG3 0xF3
131 #define ISAPNP_TAG_RSVDLONG4 0xF4
132 #define ISAPNP_TAG_RSVDLONG5 0xF5
133 #define ISAPNP_TAG_RSVDLONG6 0xF6
134 #define ISAPNP_TAG_RSVDLONG7 0xF7
135 #define ISAPNP_TAG_RSVDLONG8 0xF8
136 #define ISAPNP_TAG_RSVDLONG9 0xF9
137 #define ISAPNP_TAG_RSVDLONGA 0xFA
138 #define ISAPNP_TAG_RSVDLONGB 0xFB
139 #define ISAPNP_TAG_RSVDLONGC 0xFC
140 #define ISAPNP_TAG_RSVDLONGD 0xFD
141 #define ISAPNP_TAG_RSVDLONGE 0xFE
142 #define ISAPNP_TAG_RSVDLONGF 0xFF
143 #define ISAPNP_TAG_PSEUDO_NEWBOARD 0x100
145 /** An ISAPnP serial identifier */
146 struct isapnp_identifier
{
155 } __attribute__ (( packed
));
157 /** An ISAPnP logical device ID structure */
158 struct isapnp_logdevid
{
165 } __attribute__ (( packed
));
167 /** An ISAPnP device ID list entry */
168 struct isapnp_device_id
{
177 /** An ISAPnP device */
178 struct isapnp_device
{
179 /** Generic device */
187 /** Interrupt number */
189 /** Card Select Number */
191 /** Logical Device ID */
193 /** Driver for this device */
194 struct isapnp_driver
*driver
;
195 /** Driver-private data
197 * Use isapnp_set_drvdata() and isapnp_get_drvdata() to access
202 const char *driver_name
;
205 /** An ISAPnP driver */
206 struct isapnp_driver
{
207 /** ISAPnP ID table */
208 struct isapnp_device_id
*ids
;
209 /** Number of entries in ISAPnP ID table */
210 unsigned int id_count
;
214 * @v isapnp ISAPnP device
215 * @v id Matching entry in ID table
216 * @ret rc Return status code
218 int ( * probe
) ( struct isapnp_device
*isapnp
,
219 const struct isapnp_device_id
*id
);
223 * @v isapnp ISAPnP device
225 void ( * remove
) ( struct isapnp_device
*isapnp
);
228 /** ISAPnP driver table */
229 #define ISAPNP_DRIVERS __table ( struct isapnp_driver, "isapnp_drivers" )
231 /** Declare an ISAPnP driver */
232 #define __isapnp_driver __table_entry ( ISAPNP_DRIVERS, 01 )
234 extern uint16_t isapnp_read_port
;
236 extern void isapnp_device_activation ( struct isapnp_device
*isapnp
,
240 * Activate ISAPnP device
242 * @v isapnp ISAPnP device
244 static inline void activate_isapnp_device ( struct isapnp_device
*isapnp
) {
245 isapnp_device_activation ( isapnp
, 1 );
249 * Deactivate ISAPnP device
251 * @v isapnp ISAPnP device
253 static inline void deactivate_isapnp_device ( struct isapnp_device
*isapnp
) {
254 isapnp_device_activation ( isapnp
, 0 );
258 * Set ISAPnP driver-private data
260 * @v isapnp ISAPnP device
261 * @v priv Private data
263 static inline void isapnp_set_drvdata ( struct isapnp_device
*isapnp
,
269 * Get ISAPnP driver-private data
271 * @v isapnp ISAPnP device
272 * @ret priv Private data
274 static inline void * isapnp_get_drvdata ( struct isapnp_device
*isapnp
) {
278 #endif /* ISAPNP_H */