2 * Copyright (c) 1997, 1998, 1999 Nicolas Souchu
5 * Redistribution and use in source and binary forms, with or without
6 * modification, are permitted provided that the following conditions
8 * 1. Redistributions of source code must retain the above copyright
9 * notice, this list of conditions and the following disclaimer.
10 * 2. Redistributions in binary form must reproduce the above copyright
11 * notice, this list of conditions and the following disclaimer in the
12 * documentation and/or other materials provided with the distribution.
14 * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND
15 * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE
16 * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE
17 * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE
18 * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL
19 * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS
20 * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION)
21 * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
22 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY
23 * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF
26 * $FreeBSD: src/sys/dev/ppbus/ppbconf.h,v 1.17.2.1 2000/05/24 00:20:57 n_hibma Exp $
27 * $DragonFly: src/sys/bus/ppbus/ppbconf.h,v 1.3 2003/07/19 21:14:25 dillon Exp $
33 #include <sys/queue.h>
36 * Parallel Port Chipset mode masks.
37 * NIBBLE mode is supposed to be available under each other modes.
39 #define PPB_COMPATIBLE 0x0 /* Centronics compatible mode */
41 #define PPB_NIBBLE 0x1 /* reverse 4 bit mode */
42 #define PPB_PS2 0x2 /* PS/2 byte mode */
43 #define PPB_EPP 0x4 /* EPP mode, 32 bit */
44 #define PPB_ECP 0x8 /* ECP mode */
47 #define PPB_SPP PPB_NIBBLE|PPB_PS2
48 #define PPB_BYTE PPB_PS2
51 #define PPB_OPTIONS_MASK 0xf0
53 #define PPB_IS_EPP(mode) (mode & PPB_EPP)
54 #define PPB_IN_EPP_MODE(bus) (PPB_IS_EPP (ppb_get_mode (bus)))
55 #define PPB_IN_NIBBLE_MODE(bus) (ppb_get_mode (bus) & PPB_NIBBLE)
56 #define PPB_IN_PS2_MODE(bus) (ppb_get_mode (bus) & PPB_PS2)
58 #define n(flags) (~(flags) & (flags))
61 * Parallel Port Chipset control bits.
67 #define IRQENABLE 0x10
70 #define nSTROBE n(STROBE)
71 #define nAUTOFEED n(AUTOFEED)
73 #define nSELECTIN n(SELECTIN)
77 * Parallel Port Chipset status bits.
87 * Structure to store status information.
92 unsigned int timeout
:1;
94 unsigned int select
:1;
95 unsigned int paper_end
:1;
100 /* Parallel port bus I/O opcodes */
101 #define PPB_OUTSB_EPP 1
102 #define PPB_OUTSW_EPP 2
103 #define PPB_OUTSL_EPP 3
104 #define PPB_INSB_EPP 4
105 #define PPB_INSW_EPP 5
106 #define PPB_INSL_EPP 6
110 #define PPB_REPP_A 10
111 #define PPB_REPP_D 11
117 #define PPB_WEPP_A 17
118 #define PPB_WEPP_D 18
123 * How tsleep() is called in ppb_request_bus().
125 #define PPB_DONTWAIT 0
130 #define PPB_FOREVER -1
133 * Microsequence stuff.
135 #define PPB_MS_MAXLEN 64 /* XXX according to MS_INS_MASK */
136 #define PPB_MS_MAXARGS 3 /* according to MS_ARG_MASK */
138 /* maximum number of mode dependent
139 * submicrosequences for in/out operations
141 #define PPB_MAX_XFER 6
147 int (* f
)(void *, char *);
150 struct ppb_microseq
{
151 int opcode
; /* microins. opcode */
152 union ppb_insarg arg
[PPB_MS_MAXARGS
]; /* arguments */
155 /* microseqences used for GET/PUT operations */
157 struct ppb_microseq
*loop
; /* the loop microsequence */
161 * Parallel Port Bus Device structure.
163 struct ppb_data
; /* see below */
166 int valid
; /* 1 if the struct is valid */
167 int mode
; /* XXX chipset operating mode */
169 struct microseq
*curpc
; /* pc in curmsq */
170 struct microseq
*curmsq
; /* currently executed microseqence */
174 * List of IVARS available to ppb device drivers
176 #define PPBUS_IVAR_MODE 0
177 #define PPBUS_IVAR_AVM 1
178 #define PPBUS_IVAR_IRQ 2
180 /* other fields are reserved to the ppbus internals */
184 const char *name
; /* name of the device */
186 ushort mode
; /* current mode of the device */
187 ushort avm
; /* available IEEE1284 modes of
189 uint flags
; /* flags */
191 struct ppb_context ctx
; /* context of the device */
193 /* mode dependent get msq. If NULL,
194 * IEEE1284 code is used */
196 get_xfer
[PPB_MAX_XFER
];
198 /* mode dependent put msq. If NULL,
199 * IEEE1284 code is used */
201 put_xfer
[PPB_MAX_XFER
];
203 struct resource
*intr_resource
;
206 void *drv1
, *drv2
; /* drivers private data */
210 #define EPP_1_9 0x0 /* default */
213 /* Parallel Port Chipset IVARS */ /* elsewhere XXX */
214 #define PPC_IVAR_EPP_PROTO 0
215 #define PPC_IVAR_IRQ 1
218 * Maximum size of the PnP info string
220 #define PPB_PnP_STRING_SIZE 256 /* XXX */
223 * Parallel Port Bus structure.
227 #define PPB_PnP_PRINTER 0
228 #define PPB_PnP_MODEM 1
229 #define PPB_PnP_NET 2
230 #define PPB_PnP_HDC 3
231 #define PPB_PnP_PCMCIA 4
232 #define PPB_PnP_MEDIA 5
233 #define PPB_PnP_FDC 6
234 #define PPB_PnP_PORTS 7
235 #define PPB_PnP_SCANNER 8
236 #define PPB_PnP_DIGICAM 9
237 #define PPB_PnP_UNKNOWN 10
238 int class_id
; /* not a PnP device if class_id < 0 */
240 int state
; /* current IEEE1284 state */
241 int error
; /* last IEEE1284 error */
243 int mode
; /* IEEE 1284-1994 mode
244 * NIBBLE, PS2, EPP or ECP */
246 void *ppb_owner
; /* device which owns the bus */
250 extern int ppb_attach_device(device_t
);
251 extern int ppb_request_bus(device_t
, device_t
, int);
252 extern int ppb_release_bus(device_t
, device_t
);
254 /* bus related functions */
255 extern int ppb_get_status(device_t
, struct ppb_status
*);
256 extern int ppb_poll_bus(device_t
, int, char, char, int);
257 extern int ppb_reset_epp_timeout(device_t
);
258 extern int ppb_ecp_sync(device_t
);
259 extern int ppb_get_epp_protocol(device_t
);
260 extern int ppb_set_mode(device_t
, int); /* returns old mode */
261 extern int ppb_get_mode(device_t
); /* returns current mode */
262 extern int ppb_write(device_t
, char *, int, int);
266 * These are defined as macros for speedup.
267 #define ppb_get_base_addr(dev) ((dev)->ppb->ppb_link->base)
268 #define ppb_get_epp_protocol(dev) ((dev)->ppb->ppb_link->epp_protocol)
269 #define ppb_get_irq(dev) ((dev)->ppb->ppb_link->id_irq)