stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1 | /* |
| 2 | * CDDL HEADER START |
| 3 | * |
| 4 | * The contents of this file are subject to the terms of the |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 5 | * Common Development and Distribution License (the "License"). |
| 6 | * You may not use this file except in compliance with the License. |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 7 | * |
| 8 | * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE |
| 9 | * or http://www.opensolaris.org/os/licensing. |
| 10 | * See the License for the specific language governing permissions |
| 11 | * and limitations under the License. |
| 12 | * |
| 13 | * When distributing Covered Code, include this CDDL HEADER in each |
| 14 | * file and include the License file at usr/src/OPENSOLARIS.LICENSE. |
| 15 | * If applicable, add the following below this CDDL HEADER, with the |
| 16 | * fields enclosed by brackets "[]" replaced with your own identifying |
| 17 | * information: Portions Copyright [yyyy] [name of copyright owner] |
| 18 | * |
| 19 | * CDDL HEADER END |
| 20 | */ |
| 21 | /* |
Rafael Vanoni | d3d5073 | 2009-11-13 01:32:32 -0800 | [diff] [blame] | 22 | * Copyright 2009 Sun Microsystems, Inc. All rights reserved. |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 23 | * Use is subject to license terms. |
| 24 | */ |
| 25 | |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 26 | |
| 27 | /* |
| 28 | * |
| 29 | * IEEE 1284 Parallel Port Device Driver |
| 30 | * |
| 31 | */ |
| 32 | |
| 33 | #include <sys/param.h> |
| 34 | #include <sys/errno.h> |
| 35 | #include <sys/file.h> |
| 36 | #include <sys/cmn_err.h> |
| 37 | #include <sys/stropts.h> |
| 38 | #include <sys/debug.h> |
| 39 | #include <sys/stream.h> |
| 40 | #include <sys/strsun.h> |
| 41 | #include <sys/kmem.h> |
| 42 | #include <sys/ddi.h> |
| 43 | #include <sys/sunddi.h> |
| 44 | #include <sys/conf.h> /* req. by dev_ops flags MTSAFE etc. */ |
| 45 | #include <sys/modctl.h> /* for modldrv */ |
| 46 | #include <sys/stat.h> /* ddi_create_minor_node S_IFCHR */ |
| 47 | #include <sys/open.h> |
| 48 | #include <sys/ddi_impldefs.h> |
| 49 | #include <sys/kstat.h> |
| 50 | |
| 51 | #include <sys/prnio.h> |
| 52 | #include <sys/ecppreg.h> /* hw description */ |
| 53 | #include <sys/ecppio.h> /* ioctl description */ |
| 54 | #include <sys/ecppvar.h> /* driver description */ |
| 55 | #include <sys/dma_engine.h> |
| 56 | #include <sys/dma_i8237A.h> |
| 57 | |
| 58 | /* |
| 59 | * Background |
| 60 | * ========== |
| 61 | * IEEE 1284-1994 standard defines "a signalling method for asynchronous, |
| 62 | * fully interlocked, bidirectional parallel communications between hosts |
| 63 | * and printers or other peripherals." (1.1) The standard defines 5 modes |
| 64 | * of operation - Compatibility, Nibble, Byte, ECP and EPP - which differ |
| 65 | * in direction, bandwidth, pins assignment, DMA capability, etc. |
| 66 | * |
| 67 | * Negotiation is a mechanism for moving between modes. Compatibility mode |
| 68 | * is a default mode, from which negotiations to other modes occur and |
| 69 | * to which both host and peripheral break in case of interface errors. |
| 70 | * Compatibility mode provides a unidirectional (forward) channel for |
| 71 | * communicating with old pre-1284 peripherals. |
| 72 | * |
| 73 | * Each mode has a number of phases. [Mode, phase] pair represents the |
| 74 | * interface state. Host initiates all transfers, though peripheral can |
| 75 | * request backchannel transfer by asserting nErr pin. |
| 76 | * |
| 77 | * Ecpp driver implements an IEEE 1284-compliant host using a combination |
| 78 | * of hardware and software. Hardware part is represented by a controller, |
| 79 | * which is a part of the SuperIO chip. Ecpp supports the following SuperIOs: |
| 80 | * PC82332/PC82336 (U5/U10/U60), PC97317 (U100), M1553 (Grover). |
| 81 | * Struct ecpp_hw describes each SuperIO and is determined in ecpp_attach(). |
| 82 | * |
| 83 | * Negotiation is performed in software. Transfer may be performed either |
| 84 | * in software by driving output pins for each byte (PIO method), or with |
| 85 | * hardware assistance - SuperIO has a 16-byte FIFO, which is filled by |
| 86 | * the driver (normally using DMA), while the chip performs the actual xfer. |
| 87 | * PIO is used for Nibble and Compat, DMA is used for ECP and Compat modes. |
| 88 | * |
| 89 | * Driver currently supports the following modes: |
| 90 | * |
| 91 | * - Compatibility mode: byte-wide forward channel ~50KB/sec; |
| 92 | * pp->io_mode defines PIO or DMA method of transfer; |
| 93 | * - Nibble mode: nibble-wide (4-bit) reverse channel ~30KB/sec; |
| 94 | * - ECP mode: byte-wide bidirectional channel (~1MB/sec); |
| 95 | * |
| 96 | * Theory of operation |
| 97 | * =================== |
| 98 | * The manner in which ecpp drives 1284 interface is that of a state machine. |
| 99 | * State is a combination of 1284 mode {ECPP_*_MODE}, 1284 phase {ECPP_PHASE_*} |
| 100 | * and transfer method {PIO, DMA}. State is a function of application actions |
| 101 | * {write(2), ioctl(2)} and peripheral reaction. |
| 102 | * |
| 103 | * 1284 interface state is described by the following variables: |
| 104 | * pp->current_mode -- 1284 mode used for forward transfers; |
| 105 | * pp->backchannel -- 1284 mode used for backward transfers; |
| 106 | * pp->curent_phase -- 1284 phase; |
| 107 | * |
| 108 | * Bidirectional operation in Compatibility mode is provided by a combination: |
| 109 | * pp->current_mode == ECPP_COMPAT_MODE && pp->backchannel == ECPP_NIBBLE_MODE |
| 110 | * ECPP_CENTRONICS means no backchannel |
| 111 | * |
| 112 | * Driver internal state is defined by pp->e_busy as follows: |
| 113 | * ECPP_IDLE -- idle, no active transfers; |
| 114 | * ECPP_BUSY -- transfer is in progress; |
| 115 | * ECPP_ERR -- have data to transfer, but peripheral can`t receive data; |
| 116 | * ECPP_FLUSH -- flushing the queues; |
| 117 | * |
| 118 | * When opened, driver is in ECPP_IDLE state, current mode is ECPP_CENTRONICS |
| 119 | * Default negotiation tries to negotiate to the best mode supported by printer, |
| 120 | * sets pp->current_mode and pp->backchannel accordingly. |
| 121 | * |
| 122 | * When output data arrives in M_DATA mblks ecpp_wput() puts them on the queue |
| 123 | * to let ecpp_wsrv() concatenate small blocks into one big transfer |
| 124 | * by copying them into pp->ioblock. If first the mblk data is bigger than |
| 125 | * pp->ioblock, then it is used instead of i/o block (pointed by pp->msg) |
| 126 | * |
| 127 | * Before starting the transfer the driver will check if peripheral is ready |
| 128 | * by calling ecpp_check_status() and if it is not, driver goes ECPP_ERR state |
| 129 | * and schedules ecpp_wsrv_timer() which would qenable() the wq, effectively |
| 130 | * rechecking the peripheral readiness and restarting itself until it is ready. |
| 131 | * The transfer is then started by calling ecpp_start(), driver goes ECPP_BUSY |
| 132 | * |
| 133 | * While transfer is in progress all arriving messages will be queued up. |
| 134 | * Transfer can end up in either of two ways: |
| 135 | * - interrupt occurs, ecpp_isr() checks if all the data was transferred, if so |
| 136 | * cleanup and go ECPP_IDLE, otherwise putback untransferred and qenable(); |
| 137 | * - ecpp_xfer_timeout() cancels the transfer and puts back untransferred data; |
| 138 | * |
| 139 | * PIO transfer method is very CPU intensive: for each sent byte the peripheral |
| 140 | * state is checked, then the byte is transfered and driver waits for an nAck |
| 141 | * interrupt; ecpp_isr() will then look if there is more data and if so |
| 142 | * triggers the soft interrupt, which transfers the next byte. PIO method |
| 143 | * is needed only for legacy printers which are sensitive to strobe problem |
| 144 | * (Bugid 4192788). |
| 145 | * |
| 146 | * ecpp_wsrv() is responsible for both starting transfers (ecpp_start()) and |
| 147 | * going idle (ecpp_idle_phase()). Many routines qenable() the write queue, |
| 148 | * meaning "check if there are pending requests, process them and go idle". |
| 149 | * |
| 150 | * In it`s idle state the driver will always try to listen to the backchannel |
| 151 | * (as advised by 1284). |
| 152 | * |
| 153 | * The mechanism for handling backchannel requests is as follows: |
| 154 | * - when the peripheral has data to send it asserts nErr pin |
| 155 | * (and also nAck in Nibble Mode) which results in an interrupt on the host; |
| 156 | * - ISR creates M_CTL message containing an ECPP_BACKCHANNEL byte and |
| 157 | * puts it back on the write queue; |
| 158 | * - ecpp_wsrv() gets M_CTL and calls ecpp_peripheral2host(), which kicks off |
| 159 | * the transfer; |
| 160 | * |
| 161 | * This way Nibble and ECP mode backchannel are implemented. |
| 162 | * If the read queue gets full, backchannel request is rejected. |
| 163 | * As the application reads data and queue size falls below the low watermark, |
| 164 | * ecpp_rsrv() gets called and enables the backchannel again. |
| 165 | * |
| 166 | * Future enhancements |
| 167 | * =================== |
| 168 | * |
| 169 | * Support new modes: Byte and EPP. |
| 170 | */ |
| 171 | |
| 172 | #ifndef ECPP_DEBUG |
| 173 | #define ECPP_DEBUG 0 |
| 174 | #endif /* ECPP_DEBUG */ |
| 175 | int ecpp_debug = ECPP_DEBUG; |
| 176 | |
| 177 | int noecp = 0; /* flag not to use ECP mode */ |
| 178 | |
| 179 | /* driver entry point fn definitions */ |
| 180 | static int ecpp_open(queue_t *, dev_t *, int, int, cred_t *); |
| 181 | static int ecpp_close(queue_t *, int, cred_t *); |
| 182 | static uint_t ecpp_isr(caddr_t); |
| 183 | static uint_t ecpp_softintr(caddr_t); |
| 184 | |
| 185 | /* configuration entry point fn definitions */ |
| 186 | static int ecpp_getinfo(dev_info_t *, ddi_info_cmd_t, void *, void **); |
| 187 | static int ecpp_attach(dev_info_t *, ddi_attach_cmd_t); |
| 188 | static int ecpp_detach(dev_info_t *, ddi_detach_cmd_t); |
| 189 | static struct ecpp_hw_bind *ecpp_determine_sio_type(struct ecppunit *); |
| 190 | |
| 191 | /* isr support routines */ |
| 192 | static uint_t ecpp_nErr_ihdlr(struct ecppunit *); |
| 193 | static uint_t ecpp_pio_ihdlr(struct ecppunit *); |
| 194 | static uint_t ecpp_dma_ihdlr(struct ecppunit *); |
| 195 | static uint_t ecpp_M1553_intr(struct ecppunit *); |
| 196 | |
| 197 | /* configuration support routines */ |
| 198 | static void ecpp_get_props(struct ecppunit *); |
| 199 | |
| 200 | /* Streams Routines */ |
| 201 | static int ecpp_wput(queue_t *, mblk_t *); |
| 202 | static int ecpp_wsrv(queue_t *); |
| 203 | static int ecpp_rsrv(queue_t *); |
| 204 | static void ecpp_flush(struct ecppunit *, int); |
| 205 | static void ecpp_start(struct ecppunit *, caddr_t, size_t); |
| 206 | |
| 207 | /* ioctl handling */ |
| 208 | static void ecpp_putioc(queue_t *, mblk_t *); |
| 209 | static void ecpp_srvioc(queue_t *, mblk_t *); |
| 210 | static void ecpp_wput_iocdata_devid(queue_t *, mblk_t *, uintptr_t); |
| 211 | static void ecpp_putioc_copyout(queue_t *, mblk_t *, void *, int); |
| 212 | static void ecpp_putioc_stateful_copyin(queue_t *, mblk_t *, size_t); |
| 213 | static void ecpp_srvioc_devid(queue_t *, mblk_t *, |
| 214 | struct ecpp_device_id *, int *); |
| 215 | static void ecpp_srvioc_prnif(queue_t *, mblk_t *); |
| 216 | static void ecpp_ack_ioctl(queue_t *, mblk_t *); |
| 217 | static void ecpp_nack_ioctl(queue_t *, mblk_t *, int); |
| 218 | |
| 219 | /* kstat routines */ |
| 220 | static void ecpp_kstat_init(struct ecppunit *); |
| 221 | static int ecpp_kstat_update(kstat_t *, int); |
| 222 | static int ecpp_kstatintr_update(kstat_t *, int); |
| 223 | |
| 224 | /* dma routines */ |
| 225 | static void ecpp_putback_untransfered(struct ecppunit *, void *, uint_t); |
| 226 | static uint8_t ecpp_setup_dma_resources(struct ecppunit *, caddr_t, size_t); |
| 227 | static uint8_t ecpp_init_dma_xfer(struct ecppunit *, caddr_t, size_t); |
| 228 | |
| 229 | /* pio routines */ |
| 230 | static void ecpp_pio_writeb(struct ecppunit *); |
| 231 | static void ecpp_xfer_cleanup(struct ecppunit *); |
| 232 | static uint8_t ecpp_prep_pio_xfer(struct ecppunit *, caddr_t, size_t); |
| 233 | |
| 234 | /* misc */ |
| 235 | static uchar_t ecpp_reset_port_regs(struct ecppunit *); |
| 236 | static void ecpp_xfer_timeout(void *); |
| 237 | static void ecpp_fifo_timer(void *); |
| 238 | static void ecpp_wsrv_timer(void *); |
| 239 | static uchar_t dcr_write(struct ecppunit *, uint8_t); |
| 240 | static uchar_t ecr_write(struct ecppunit *, uint8_t); |
| 241 | static uchar_t ecpp_check_status(struct ecppunit *); |
| 242 | static int ecpp_backchan_req(struct ecppunit *); |
| 243 | static void ecpp_untimeout_unblock(struct ecppunit *, timeout_id_t *); |
| 244 | static uint_t ecpp_get_prn_ifcap(struct ecppunit *); |
| 245 | |
| 246 | /* stubs */ |
| 247 | static void empty_config_mode(struct ecppunit *); |
| 248 | static void empty_mask_intr(struct ecppunit *); |
| 249 | |
| 250 | /* PC87332 support */ |
| 251 | static int pc87332_map_regs(struct ecppunit *); |
| 252 | static void pc87332_unmap_regs(struct ecppunit *); |
| 253 | static int pc87332_config_chip(struct ecppunit *); |
| 254 | static void pc87332_config_mode(struct ecppunit *); |
| 255 | static uint8_t pc87332_read_config_reg(struct ecppunit *, uint8_t); |
| 256 | static void pc87332_write_config_reg(struct ecppunit *, uint8_t, uint8_t); |
| 257 | static void cheerio_mask_intr(struct ecppunit *); |
| 258 | static void cheerio_unmask_intr(struct ecppunit *); |
| 259 | static int cheerio_dma_start(struct ecppunit *); |
| 260 | static int cheerio_dma_stop(struct ecppunit *, size_t *); |
| 261 | static size_t cheerio_getcnt(struct ecppunit *); |
| 262 | static void cheerio_reset_dcsr(struct ecppunit *); |
| 263 | |
| 264 | /* PC97317 support */ |
| 265 | static int pc97317_map_regs(struct ecppunit *); |
| 266 | static void pc97317_unmap_regs(struct ecppunit *); |
| 267 | static int pc97317_config_chip(struct ecppunit *); |
| 268 | static void pc97317_config_mode(struct ecppunit *); |
| 269 | |
| 270 | /* M1553 Southbridge support */ |
| 271 | static int m1553_map_regs(struct ecppunit *pp); |
| 272 | static void m1553_unmap_regs(struct ecppunit *pp); |
| 273 | static int m1553_config_chip(struct ecppunit *); |
| 274 | static uint8_t m1553_read_config_reg(struct ecppunit *, uint8_t); |
| 275 | static void m1553_write_config_reg(struct ecppunit *, uint8_t, uint8_t); |
| 276 | |
| 277 | /* M1553 Southbridge DMAC 8237 support routines */ |
| 278 | static int dma8237_dma_start(struct ecppunit *); |
| 279 | static int dma8237_dma_stop(struct ecppunit *, size_t *); |
| 280 | static size_t dma8237_getcnt(struct ecppunit *); |
| 281 | static void dma8237_write_addr(struct ecppunit *, uint32_t); |
| 282 | static void dma8237_write_count(struct ecppunit *, uint32_t); |
| 283 | static uint32_t dma8237_read_count(struct ecppunit *); |
| 284 | static void dma8237_write(struct ecppunit *, int, uint8_t); |
| 285 | static uint8_t dma8237_read(struct ecppunit *, int); |
| 286 | #ifdef INCLUDE_DMA8237_READ_ADDR |
| 287 | static uint32_t dma8237_read_addr(struct ecppunit *); |
| 288 | #endif |
| 289 | |
| 290 | /* i86 PC support rountines */ |
| 291 | |
| 292 | #if defined(__x86) |
| 293 | static int x86_dma_start(struct ecppunit *); |
| 294 | static int x86_dma_stop(struct ecppunit *, size_t *); |
| 295 | static int x86_map_regs(struct ecppunit *); |
| 296 | static void x86_unmap_regs(struct ecppunit *); |
| 297 | static int x86_config_chip(struct ecppunit *); |
| 298 | static size_t x86_getcnt(struct ecppunit *); |
| 299 | #endif |
| 300 | |
| 301 | /* IEEE 1284 phase transitions */ |
| 302 | static void ecpp_1284_init_interface(struct ecppunit *); |
| 303 | static int ecpp_1284_termination(struct ecppunit *); |
| 304 | static uchar_t ecpp_idle_phase(struct ecppunit *); |
| 305 | static int ecp_forward2reverse(struct ecppunit *); |
| 306 | static int ecp_reverse2forward(struct ecppunit *); |
| 307 | static int read_nibble_backchan(struct ecppunit *); |
| 308 | |
| 309 | /* reverse transfers */ |
| 310 | static uint_t ecpp_peripheral2host(struct ecppunit *); |
| 311 | static uchar_t ecp_peripheral2host(struct ecppunit *); |
| 312 | static uchar_t nibble_peripheral2host(struct ecppunit *pp, uint8_t *); |
| 313 | static int ecpp_getdevid(struct ecppunit *, uint8_t *, int *, int); |
| 314 | static void ecpp_ecp_read_timeout(void *); |
| 315 | static void ecpp_ecp_read_completion(struct ecppunit *); |
| 316 | |
| 317 | /* IEEE 1284 mode transitions */ |
| 318 | static void ecpp_default_negotiation(struct ecppunit *); |
| 319 | static int ecpp_mode_negotiation(struct ecppunit *, uchar_t); |
| 320 | static int ecpp_1284_negotiation(struct ecppunit *, uint8_t, uint8_t *); |
| 321 | static int ecp_negotiation(struct ecppunit *); |
| 322 | static int nibble_negotiation(struct ecppunit *); |
| 323 | static int devidnib_negotiation(struct ecppunit *); |
| 324 | |
| 325 | /* IEEE 1284 utility routines */ |
| 326 | static int wait_dsr(struct ecppunit *, uint8_t, uint8_t, int); |
| 327 | |
| 328 | /* debugging functions */ |
| 329 | static void ecpp_error(dev_info_t *, char *, ...); |
| 330 | static uchar_t ecpp_get_error_status(uchar_t); |
| 331 | |
| 332 | /* |
| 333 | * Chip-dependent structures |
| 334 | */ |
| 335 | static ddi_dma_attr_t cheerio_dma_attr = { |
| 336 | DMA_ATTR_VERSION, /* version */ |
| 337 | 0x00000000ull, /* dlim_addr_lo */ |
| 338 | 0xfffffffeull, /* dlim_addr_hi */ |
| 339 | 0xffffff, /* DMA counter register */ |
| 340 | 1, /* DMA address alignment */ |
| 341 | 0x74, /* burst sizes */ |
| 342 | 0x0001, /* min effective DMA size */ |
| 343 | 0xffff, /* maximum transfer size */ |
| 344 | 0xffff, /* segment boundary */ |
| 345 | 1, /* s/g list length */ |
| 346 | 1, /* granularity of device */ |
| 347 | 0 /* DMA flags */ |
| 348 | }; |
| 349 | |
| 350 | static struct ecpp_hw pc87332 = { |
| 351 | pc87332_map_regs, |
| 352 | pc87332_unmap_regs, |
| 353 | pc87332_config_chip, |
| 354 | pc87332_config_mode, |
| 355 | cheerio_mask_intr, |
| 356 | cheerio_unmask_intr, |
| 357 | cheerio_dma_start, |
| 358 | cheerio_dma_stop, |
| 359 | cheerio_getcnt, |
| 360 | &cheerio_dma_attr |
| 361 | }; |
| 362 | |
| 363 | static struct ecpp_hw pc97317 = { |
| 364 | pc97317_map_regs, |
| 365 | pc97317_unmap_regs, |
| 366 | pc97317_config_chip, |
| 367 | pc97317_config_mode, |
| 368 | cheerio_mask_intr, |
| 369 | cheerio_unmask_intr, |
| 370 | cheerio_dma_start, |
| 371 | cheerio_dma_stop, |
| 372 | cheerio_getcnt, |
| 373 | &cheerio_dma_attr |
| 374 | }; |
| 375 | |
| 376 | static ddi_dma_attr_t i8237_dma_attr = { |
| 377 | DMA_ATTR_VERSION, /* version */ |
| 378 | 0x00000000ull, /* dlim_addr_lo */ |
| 379 | 0xfffffffeull, /* dlim_addr_hi */ |
| 380 | 0xffff, /* DMA counter register */ |
| 381 | 1, /* DMA address alignment */ |
| 382 | 0x01, /* burst sizes */ |
| 383 | 0x0001, /* min effective DMA size */ |
| 384 | 0xffff, /* maximum transfer size */ |
| 385 | 0x7fff, /* segment boundary */ |
| 386 | 1, /* s/g list length */ |
| 387 | 1, /* granularity of device */ |
| 388 | 0 /* DMA flags */ |
| 389 | }; |
| 390 | |
| 391 | static struct ecpp_hw m1553 = { |
| 392 | m1553_map_regs, |
| 393 | m1553_unmap_regs, |
| 394 | m1553_config_chip, |
| 395 | empty_config_mode, /* no config_mode */ |
| 396 | empty_mask_intr, /* no mask_intr */ |
| 397 | empty_mask_intr, /* no unmask_intr */ |
| 398 | dma8237_dma_start, |
| 399 | dma8237_dma_stop, |
| 400 | dma8237_getcnt, |
| 401 | &i8237_dma_attr |
| 402 | }; |
| 403 | |
| 404 | #if defined(__x86) |
| 405 | static ddi_dma_attr_t sb_dma_attr = { |
| 406 | DMA_ATTR_VERSION, /* version */ |
| 407 | 0x00000000ull, /* dlim_addr_lo */ |
| 408 | 0xffffff, /* dlim_addr_hi */ |
| 409 | 0xffff, /* DMA counter register */ |
| 410 | 1, /* DMA address alignment */ |
| 411 | 0x01, /* burst sizes */ |
| 412 | 0x0001, /* min effective DMA size */ |
| 413 | 0xffffffff, /* maximum transfer size */ |
| 414 | 0xffff, /* segment boundary */ |
| 415 | 1, /* s/g list length */ |
| 416 | 1, /* granularity of device */ |
| 417 | 0 /* DMA flags */ |
| 418 | }; |
| 419 | |
| 420 | static struct ecpp_hw x86 = { |
| 421 | x86_map_regs, |
| 422 | x86_unmap_regs, |
| 423 | x86_config_chip, |
| 424 | empty_config_mode, /* no config_mode */ |
| 425 | empty_mask_intr, /* no mask_intr */ |
| 426 | empty_mask_intr, /* no unmask_intr */ |
| 427 | x86_dma_start, |
| 428 | x86_dma_stop, |
| 429 | x86_getcnt, |
| 430 | &sb_dma_attr |
| 431 | }; |
| 432 | #endif |
| 433 | |
| 434 | /* |
| 435 | * list of supported devices |
| 436 | */ |
| 437 | struct ecpp_hw_bind ecpp_hw_bind[] = { |
| 438 | { "ns87317-ecpp", &pc97317, "PC97317" }, |
| 439 | { "pnpALI,1533,3", &m1553, "M1553" }, |
| 440 | { "ecpp", &pc87332, "PC87332" }, |
| 441 | #if defined(__x86) |
| 442 | { "lp", &x86, "i86pc"}, |
| 443 | #endif |
| 444 | }; |
| 445 | |
| 446 | static ddi_device_acc_attr_t acc_attr = { |
| 447 | DDI_DEVICE_ATTR_V0, |
| 448 | DDI_STRUCTURE_LE_ACC, |
| 449 | DDI_STRICTORDER_ACC |
| 450 | }; |
| 451 | |
| 452 | static struct ecpp_transfer_parms default_xfer_parms = { |
| 453 | FWD_TIMEOUT_DEFAULT, /* write timeout in seconds */ |
| 454 | ECPP_CENTRONICS /* supported mode */ |
| 455 | }; |
| 456 | |
| 457 | /* prnio interface info string */ |
| 458 | static const char prn_ifinfo[] = PRN_PARALLEL; |
| 459 | |
| 460 | /* prnio timeouts */ |
| 461 | static const struct prn_timeouts prn_timeouts_default = { |
| 462 | FWD_TIMEOUT_DEFAULT, /* forward timeout */ |
| 463 | REV_TIMEOUT_DEFAULT /* reverse timeout */ |
| 464 | }; |
| 465 | |
| 466 | static int ecpp_isr_max_delay = ECPP_ISR_MAX_DELAY; |
| 467 | static int ecpp_def_timeout = 90; /* left in for 2.7 compatibility */ |
| 468 | |
| 469 | static void *ecppsoft_statep; |
| 470 | |
| 471 | /* |
| 472 | * STREAMS framework manages locks for these structures |
| 473 | */ |
| 474 | _NOTE(SCHEME_PROTECTS_DATA("unique per call", iocblk)) |
| 475 | _NOTE(SCHEME_PROTECTS_DATA("unique per call", datab)) |
| 476 | _NOTE(SCHEME_PROTECTS_DATA("unique per call", msgb)) |
| 477 | _NOTE(SCHEME_PROTECTS_DATA("unique per call", queue)) |
| 478 | _NOTE(SCHEME_PROTECTS_DATA("unique per call", copyreq)) |
| 479 | _NOTE(SCHEME_PROTECTS_DATA("unique per call", stroptions)) |
| 480 | |
| 481 | struct module_info ecppinfo = { |
| 482 | /* id, name, min pkt siz, max pkt siz, hi water, low water */ |
| 483 | 42, "ecpp", 0, IO_BLOCK_SZ, ECPPHIWAT, ECPPLOWAT |
| 484 | }; |
| 485 | |
| 486 | static struct qinit ecpp_rinit = { |
| 487 | putq, ecpp_rsrv, ecpp_open, ecpp_close, NULL, &ecppinfo, NULL |
| 488 | }; |
| 489 | |
| 490 | static struct qinit ecpp_wint = { |
| 491 | ecpp_wput, ecpp_wsrv, ecpp_open, ecpp_close, NULL, &ecppinfo, NULL |
| 492 | }; |
| 493 | |
| 494 | struct streamtab ecpp_str_info = { |
| 495 | &ecpp_rinit, &ecpp_wint, NULL, NULL |
| 496 | }; |
| 497 | |
| 498 | static struct cb_ops ecpp_cb_ops = { |
| 499 | nodev, /* cb_open */ |
| 500 | nodev, /* cb_close */ |
| 501 | nodev, /* cb_strategy */ |
| 502 | nodev, /* cb_print */ |
| 503 | nodev, /* cb_dump */ |
| 504 | nodev, /* cb_read */ |
| 505 | nodev, /* cb_write */ |
| 506 | nodev, /* cb_ioctl */ |
| 507 | nodev, /* cb_devmap */ |
| 508 | nodev, /* cb_mmap */ |
| 509 | nodev, /* cb_segmap */ |
| 510 | nochpoll, /* cb_chpoll */ |
| 511 | ddi_prop_op, /* cb_prop_op */ |
| 512 | &ecpp_str_info, /* cb_stream */ |
| 513 | (D_NEW | D_MP | D_MTPERQ) /* cb_flag */ |
| 514 | }; |
| 515 | |
| 516 | /* |
| 517 | * Declare ops vectors for auto configuration. |
| 518 | */ |
| 519 | struct dev_ops ecpp_ops = { |
| 520 | DEVO_REV, /* devo_rev */ |
| 521 | 0, /* devo_refcnt */ |
| 522 | ecpp_getinfo, /* devo_getinfo */ |
| 523 | nulldev, /* devo_identify */ |
| 524 | nulldev, /* devo_probe */ |
| 525 | ecpp_attach, /* devo_attach */ |
| 526 | ecpp_detach, /* devo_detach */ |
| 527 | nodev, /* devo_reset */ |
| 528 | &ecpp_cb_ops, /* devo_cb_ops */ |
| 529 | (struct bus_ops *)NULL, /* devo_bus_ops */ |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 530 | nulldev, /* devo_power */ |
| 531 | ddi_quiesce_not_needed, /* devo_quiesce */ |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 532 | }; |
| 533 | |
| 534 | extern struct mod_ops mod_driverops; |
| 535 | |
| 536 | static struct modldrv ecppmodldrv = { |
| 537 | &mod_driverops, /* type of module - driver */ |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 538 | "parallel port driver", |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 539 | &ecpp_ops, |
| 540 | }; |
| 541 | |
| 542 | static struct modlinkage ecppmodlinkage = { |
| 543 | MODREV_1, |
| 544 | &ecppmodldrv, |
| 545 | 0 |
| 546 | }; |
| 547 | |
| 548 | |
| 549 | /* |
| 550 | * |
| 551 | * DDI/DKI entry points and supplementary routines |
| 552 | * |
| 553 | */ |
| 554 | |
| 555 | |
| 556 | int |
| 557 | _init(void) |
| 558 | { |
| 559 | int error; |
| 560 | |
| 561 | if ((error = mod_install(&ecppmodlinkage)) == 0) { |
| 562 | (void) ddi_soft_state_init(&ecppsoft_statep, |
| 563 | sizeof (struct ecppunit), 1); |
| 564 | } |
| 565 | |
| 566 | return (error); |
| 567 | } |
| 568 | |
| 569 | int |
| 570 | _fini(void) |
| 571 | { |
| 572 | int error; |
| 573 | |
| 574 | if ((error = mod_remove(&ecppmodlinkage)) == 0) { |
| 575 | ddi_soft_state_fini(&ecppsoft_statep); |
| 576 | } |
| 577 | |
| 578 | return (error); |
| 579 | } |
| 580 | |
| 581 | int |
| 582 | _info(struct modinfo *modinfop) |
| 583 | { |
| 584 | return (mod_info(&ecppmodlinkage, modinfop)); |
| 585 | } |
| 586 | |
| 587 | static int |
| 588 | ecpp_attach(dev_info_t *dip, ddi_attach_cmd_t cmd) |
| 589 | { |
| 590 | int instance; |
| 591 | char name[16]; |
| 592 | struct ecppunit *pp; |
| 593 | struct ecpp_hw_bind *hw_bind; |
| 594 | |
| 595 | instance = ddi_get_instance(dip); |
| 596 | |
| 597 | switch (cmd) { |
| 598 | case DDI_ATTACH: |
| 599 | break; |
| 600 | |
| 601 | case DDI_RESUME: |
| 602 | if (!(pp = ddi_get_soft_state(ecppsoft_statep, instance))) { |
| 603 | return (DDI_FAILURE); |
| 604 | } |
| 605 | |
| 606 | mutex_enter(&pp->umutex); |
| 607 | |
| 608 | pp->suspended = FALSE; |
| 609 | |
| 610 | /* |
| 611 | * Initialize the chip and restore current mode if needed |
| 612 | */ |
| 613 | (void) ECPP_CONFIG_CHIP(pp); |
| 614 | (void) ecpp_reset_port_regs(pp); |
| 615 | |
| 616 | if (pp->oflag == TRUE) { |
| 617 | int current_mode = pp->current_mode; |
| 618 | |
| 619 | (void) ecpp_1284_termination(pp); |
| 620 | (void) ecpp_mode_negotiation(pp, current_mode); |
| 621 | } |
| 622 | |
| 623 | mutex_exit(&pp->umutex); |
| 624 | |
| 625 | return (DDI_SUCCESS); |
| 626 | |
| 627 | default: |
| 628 | return (DDI_FAILURE); |
| 629 | } |
| 630 | |
| 631 | if (ddi_soft_state_zalloc(ecppsoft_statep, instance) != 0) { |
| 632 | ecpp_error(dip, "ddi_soft_state_zalloc failed\n"); |
| 633 | goto fail; |
| 634 | } |
| 635 | |
| 636 | pp = ddi_get_soft_state(ecppsoft_statep, instance); |
| 637 | |
| 638 | pp->dip = dip; |
| 639 | pp->suspended = FALSE; |
| 640 | |
| 641 | /* |
| 642 | * Determine SuperIO type and set chip-dependent variables |
| 643 | */ |
| 644 | hw_bind = ecpp_determine_sio_type(pp); |
| 645 | |
| 646 | if (hw_bind == NULL) { |
| 647 | cmn_err(CE_NOTE, "parallel port controller not supported"); |
| 648 | goto fail_sio; |
| 649 | } else { |
| 650 | pp->hw = hw_bind->hw; |
| 651 | ecpp_error(pp->dip, "SuperIO type: %s\n", hw_bind->info); |
| 652 | } |
| 653 | |
| 654 | /* |
| 655 | * Map registers |
| 656 | */ |
| 657 | if (ECPP_MAP_REGS(pp) != SUCCESS) { |
| 658 | goto fail_map; |
| 659 | } |
| 660 | |
| 661 | if (ddi_dma_alloc_handle(dip, pp->hw->attr, DDI_DMA_DONTWAIT, |
| 662 | NULL, &pp->dma_handle) != DDI_SUCCESS) { |
| 663 | ecpp_error(dip, "ecpp_attach: failed ddi_dma_alloc_handle\n"); |
| 664 | goto fail_dma; |
| 665 | } |
| 666 | |
| 667 | if (ddi_get_iblock_cookie(dip, 0, |
| 668 | &pp->ecpp_trap_cookie) != DDI_SUCCESS) { |
| 669 | ecpp_error(dip, "ecpp_attach: failed ddi_get_iblock_cookie\n"); |
| 670 | goto fail_ibc; |
| 671 | } |
| 672 | |
| 673 | mutex_init(&pp->umutex, NULL, MUTEX_DRIVER, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 674 | (void *)pp->ecpp_trap_cookie); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 675 | |
| 676 | cv_init(&pp->pport_cv, NULL, CV_DRIVER, NULL); |
| 677 | |
| 678 | if (ddi_add_intr(dip, 0, &pp->ecpp_trap_cookie, NULL, ecpp_isr, |
| 679 | (caddr_t)pp) != DDI_SUCCESS) { |
| 680 | ecpp_error(dip, "ecpp_attach: failed to add hard intr\n"); |
| 681 | goto fail_intr; |
| 682 | } |
| 683 | |
| 684 | if (ddi_add_softintr(dip, DDI_SOFTINT_LOW, |
| 685 | &pp->softintr_id, 0, 0, ecpp_softintr, |
| 686 | (caddr_t)pp) != DDI_SUCCESS) { |
| 687 | ecpp_error(dip, "ecpp_attach: failed to add soft intr\n"); |
| 688 | goto fail_softintr; |
| 689 | } |
| 690 | |
| 691 | (void) sprintf(name, "ecpp%d", instance); |
| 692 | |
| 693 | if (ddi_create_minor_node(dip, name, S_IFCHR, instance, |
| 694 | DDI_NT_PRINTER, NULL) == DDI_FAILURE) { |
| 695 | ecpp_error(dip, "ecpp_attach: create_minor_node failed\n"); |
| 696 | goto fail_minor; |
| 697 | } |
| 698 | |
| 699 | pp->ioblock = (caddr_t)kmem_alloc(IO_BLOCK_SZ, KM_SLEEP); |
| 700 | if (pp->ioblock == NULL) { |
| 701 | ecpp_error(dip, "ecpp_attach: kmem_alloc failed\n"); |
| 702 | goto fail_iob; |
| 703 | } else { |
| 704 | ecpp_error(pp->dip, "ecpp_attach: ioblock=0x%x\n", pp->ioblock); |
| 705 | } |
| 706 | |
| 707 | ecpp_get_props(pp); |
| 708 | #if defined(__x86) |
| 709 | if (pp->hw == &x86 && pp->uh.x86.chn != 0xff) { |
| 710 | if (ddi_dmae_alloc(dip, pp->uh.x86.chn, |
| 711 | DDI_DMA_DONTWAIT, NULL) == DDI_SUCCESS) |
| 712 | ecpp_error(pp->dip, "dmae_alloc success!\n"); |
| 713 | } |
| 714 | #endif |
| 715 | if (ECPP_CONFIG_CHIP(pp) == FAILURE) { |
| 716 | ecpp_error(pp->dip, "config_chip failed.\n"); |
| 717 | goto fail_config; |
| 718 | } |
| 719 | |
| 720 | ecpp_kstat_init(pp); |
| 721 | |
| 722 | ddi_report_dev(dip); |
| 723 | |
| 724 | return (DDI_SUCCESS); |
| 725 | |
| 726 | fail_config: |
| 727 | ddi_prop_remove_all(dip); |
| 728 | kmem_free(pp->ioblock, IO_BLOCK_SZ); |
| 729 | fail_iob: |
| 730 | ddi_remove_minor_node(dip, NULL); |
| 731 | fail_minor: |
| 732 | ddi_remove_softintr(pp->softintr_id); |
| 733 | fail_softintr: |
| 734 | ddi_remove_intr(dip, (uint_t)0, pp->ecpp_trap_cookie); |
| 735 | fail_intr: |
| 736 | mutex_destroy(&pp->umutex); |
| 737 | cv_destroy(&pp->pport_cv); |
| 738 | fail_ibc: |
| 739 | ddi_dma_free_handle(&pp->dma_handle); |
| 740 | fail_dma: |
| 741 | ECPP_UNMAP_REGS(pp); |
| 742 | fail_map: |
| 743 | fail_sio: |
| 744 | ddi_soft_state_free(ecppsoft_statep, instance); |
| 745 | fail: |
| 746 | ecpp_error(dip, "ecpp_attach: failed.\n"); |
| 747 | |
| 748 | return (DDI_FAILURE); |
| 749 | } |
| 750 | |
| 751 | static int |
| 752 | ecpp_detach(dev_info_t *dip, ddi_detach_cmd_t cmd) |
| 753 | { |
| 754 | int instance; |
| 755 | struct ecppunit *pp; |
| 756 | |
| 757 | instance = ddi_get_instance(dip); |
| 758 | |
| 759 | switch (cmd) { |
| 760 | case DDI_DETACH: |
| 761 | break; |
| 762 | |
| 763 | case DDI_SUSPEND: |
| 764 | if (!(pp = ddi_get_soft_state(ecppsoft_statep, instance))) { |
| 765 | return (DDI_FAILURE); |
| 766 | } |
| 767 | |
| 768 | mutex_enter(&pp->umutex); |
| 769 | ASSERT(pp->suspended == FALSE); |
| 770 | |
| 771 | pp->suspended = TRUE; /* prevent new transfers */ |
| 772 | |
| 773 | /* |
| 774 | * Wait if there's any activity on the port |
| 775 | */ |
| 776 | if ((pp->e_busy == ECPP_BUSY) || (pp->e_busy == ECPP_FLUSH)) { |
Rafael Vanoni | d3d5073 | 2009-11-13 01:32:32 -0800 | [diff] [blame] | 777 | (void) cv_reltimedwait(&pp->pport_cv, &pp->umutex, |
| 778 | SUSPEND_TOUT * drv_usectohz(1000000), |
| 779 | TR_CLOCK_TICK); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 780 | if ((pp->e_busy == ECPP_BUSY) || |
| 781 | (pp->e_busy == ECPP_FLUSH)) { |
| 782 | pp->suspended = FALSE; |
| 783 | mutex_exit(&pp->umutex); |
| 784 | ecpp_error(pp->dip, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 785 | "ecpp_detach: suspend timeout\n"); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 786 | return (DDI_FAILURE); |
| 787 | } |
| 788 | } |
| 789 | |
| 790 | mutex_exit(&pp->umutex); |
| 791 | return (DDI_SUCCESS); |
| 792 | |
| 793 | default: |
| 794 | return (DDI_FAILURE); |
| 795 | } |
| 796 | |
| 797 | pp = ddi_get_soft_state(ecppsoft_statep, instance); |
| 798 | #if defined(__x86) |
| 799 | if (pp->hw == &x86 && pp->uh.x86.chn != 0xff) |
| 800 | (void) ddi_dmae_release(pp->dip, pp->uh.x86.chn); |
| 801 | #endif |
| 802 | if (pp->dma_handle != NULL) |
| 803 | ddi_dma_free_handle(&pp->dma_handle); |
| 804 | |
| 805 | ddi_remove_minor_node(dip, NULL); |
| 806 | |
| 807 | ddi_remove_softintr(pp->softintr_id); |
| 808 | |
| 809 | ddi_remove_intr(dip, (uint_t)0, pp->ecpp_trap_cookie); |
| 810 | |
| 811 | if (pp->ksp) { |
| 812 | kstat_delete(pp->ksp); |
| 813 | } |
| 814 | if (pp->intrstats) { |
| 815 | kstat_delete(pp->intrstats); |
| 816 | } |
| 817 | |
| 818 | cv_destroy(&pp->pport_cv); |
| 819 | |
| 820 | mutex_destroy(&pp->umutex); |
| 821 | |
| 822 | ECPP_UNMAP_REGS(pp); |
| 823 | |
| 824 | kmem_free(pp->ioblock, IO_BLOCK_SZ); |
| 825 | |
| 826 | ddi_prop_remove_all(dip); |
| 827 | |
| 828 | ddi_soft_state_free(ecppsoft_statep, instance); |
| 829 | |
| 830 | return (DDI_SUCCESS); |
| 831 | |
| 832 | } |
| 833 | |
| 834 | /* |
| 835 | * ecpp_get_props() reads ecpp.conf for user defineable tuneables. |
| 836 | * If the file or a particular variable is not there, a default value |
| 837 | * is assigned. |
| 838 | */ |
| 839 | |
| 840 | static void |
| 841 | ecpp_get_props(struct ecppunit *pp) |
| 842 | { |
| 843 | char *prop; |
| 844 | #if defined(__x86) |
| 845 | int len; |
| 846 | int value; |
| 847 | #endif |
| 848 | /* |
| 849 | * If fast_centronics is TRUE, non-compliant IEEE 1284 |
| 850 | * peripherals ( Centronics peripherals) will operate in DMA mode. |
| 851 | * Transfers betwee main memory and the device will be via DMA; |
| 852 | * peripheral handshaking will be conducted by superio logic. |
| 853 | * If ecpp can not read the variable correctly fast_centronics will |
| 854 | * be set to FALSE. In this case, transfers and handshaking |
| 855 | * will be conducted by PIO for Centronics devices. |
| 856 | */ |
| 857 | if (ddi_prop_lookup_string(DDI_DEV_T_ANY, pp->dip, 0, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 858 | "fast-centronics", &prop) == DDI_PROP_SUCCESS) { |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 859 | pp->fast_centronics = |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 860 | (strcmp(prop, "true") == 0) ? TRUE : FALSE; |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 861 | ddi_prop_free(prop); |
| 862 | } else { |
| 863 | pp->fast_centronics = FALSE; |
| 864 | } |
| 865 | |
| 866 | /* |
| 867 | * If fast-1284-compatible is set to TRUE, when ecpp communicates |
| 868 | * with IEEE 1284 compliant peripherals, data transfers between |
| 869 | * main memory and the parallel port will be conducted by DMA. |
| 870 | * Handshaking between the port and peripheral will be conducted |
| 871 | * by superio logic. This is the default characteristic. If |
| 872 | * fast-1284-compatible is set to FALSE, transfers and handshaking |
| 873 | * will be conducted by PIO. |
| 874 | */ |
| 875 | |
| 876 | if (ddi_prop_lookup_string(DDI_DEV_T_ANY, pp->dip, 0, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 877 | "fast-1284-compatible", &prop) == DDI_PROP_SUCCESS) { |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 878 | pp->fast_compat = (strcmp(prop, "true") == 0) ? TRUE : FALSE; |
| 879 | ddi_prop_free(prop); |
| 880 | } else { |
| 881 | pp->fast_compat = TRUE; |
| 882 | } |
| 883 | |
| 884 | /* |
| 885 | * Some centronics peripherals require the nInit signal to be |
| 886 | * toggled to reset the device. If centronics_init_seq is set |
| 887 | * to TRUE, ecpp will toggle the nInit signal upon every ecpp_open(). |
| 888 | * Applications have the opportunity to toggle the nInit signal |
| 889 | * with ioctl(2) calls as well. The default is to set it to FALSE. |
| 890 | */ |
| 891 | if (ddi_prop_lookup_string(DDI_DEV_T_ANY, pp->dip, 0, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 892 | "centronics-init-seq", &prop) == DDI_PROP_SUCCESS) { |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 893 | pp->init_seq = (strcmp(prop, "true") == 0) ? TRUE : FALSE; |
| 894 | ddi_prop_free(prop); |
| 895 | } else { |
| 896 | pp->init_seq = FALSE; |
| 897 | } |
| 898 | |
| 899 | /* |
| 900 | * If one of the centronics status signals are in an erroneous |
| 901 | * state, ecpp_wsrv() will be reinvoked centronics-retry ms to |
| 902 | * check if the status is ok to transfer. If the property is not |
| 903 | * found, wsrv_retry will be set to CENTRONICS_RETRY ms. |
| 904 | */ |
| 905 | pp->wsrv_retry = ddi_prop_get_int(DDI_DEV_T_ANY, pp->dip, 0, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 906 | "centronics-retry", CENTRONICS_RETRY); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 907 | |
| 908 | /* |
| 909 | * In PIO mode, ecpp_isr() will loop for wait for the busy signal |
| 910 | * to be deasserted before transferring the next byte. wait_for_busy |
| 911 | * is specificied in microseconds. If the property is not found |
| 912 | * ecpp_isr() will wait for a maximum of WAIT_FOR_BUSY us. |
| 913 | */ |
| 914 | pp->wait_for_busy = ddi_prop_get_int(DDI_DEV_T_ANY, pp->dip, 0, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 915 | "centronics-wait-for-busy", WAIT_FOR_BUSY); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 916 | |
| 917 | /* |
| 918 | * In PIO mode, centronics transfers must hold the data signals |
| 919 | * for a data_setup_time milliseconds before the strobe is asserted. |
| 920 | */ |
| 921 | pp->data_setup_time = ddi_prop_get_int(DDI_DEV_T_ANY, pp->dip, 0, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 922 | "centronics-data-setup-time", DATA_SETUP_TIME); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 923 | |
| 924 | /* |
| 925 | * In PIO mode, centronics transfers asserts the strobe signal |
| 926 | * for a period of strobe_pulse_width milliseconds. |
| 927 | */ |
| 928 | pp->strobe_pulse_width = ddi_prop_get_int(DDI_DEV_T_ANY, pp->dip, 0, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 929 | "centronics-strobe-pulse-width", STROBE_PULSE_WIDTH); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 930 | |
| 931 | /* |
| 932 | * Upon a transfer the peripheral, ecpp waits write_timeout seconds |
| 933 | * for the transmission to complete. |
| 934 | */ |
| 935 | default_xfer_parms.write_timeout = ddi_prop_get_int(DDI_DEV_T_ANY, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 936 | pp->dip, 0, "ecpp-transfer-timeout", ecpp_def_timeout); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 937 | |
| 938 | pp->xfer_parms = default_xfer_parms; |
| 939 | |
| 940 | /* |
| 941 | * Get dma channel for M1553 |
| 942 | */ |
| 943 | if (pp->hw == &m1553) { |
| 944 | pp->uh.m1553.chn = ddi_prop_get_int(DDI_DEV_T_ANY, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 945 | pp->dip, 0, "dma-channel", 0x1); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 946 | ecpp_error(pp->dip, "ecpp_get_prop:chn=%x\n", pp->uh.m1553.chn); |
| 947 | } |
| 948 | #if defined(__x86) |
| 949 | len = sizeof (value); |
| 950 | /* Get dma channel for i86 pc */ |
| 951 | if (pp->hw == &x86) { |
| 952 | if (ddi_prop_op(DDI_DEV_T_ANY, pp->dip, PROP_LEN_AND_VAL_BUF, |
| 953 | DDI_PROP_DONTPASS, "dma-channels", (caddr_t)&value, &len) |
| 954 | != DDI_PROP_SUCCESS) { |
| 955 | ecpp_error(pp->dip, "No dma channel found\n"); |
| 956 | pp->uh.x86.chn = 0xff; |
| 957 | pp->fast_compat = FALSE; |
| 958 | pp->noecpregs = TRUE; |
| 959 | } else |
| 960 | pp->uh.x86.chn = (uint8_t)value; |
| 961 | } |
| 962 | #endif |
| 963 | /* |
| 964 | * these properties are not yet public |
| 965 | */ |
| 966 | pp->ecp_rev_speed = ddi_prop_get_int(DDI_DEV_T_ANY, pp->dip, 0, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 967 | "ecp-rev-speed", ECP_REV_SPEED); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 968 | |
| 969 | pp->rev_watchdog = ddi_prop_get_int(DDI_DEV_T_ANY, pp->dip, 0, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 970 | "rev-watchdog", REV_WATCHDOG); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 971 | |
| 972 | ecpp_error(pp->dip, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 973 | "ecpp_get_prop: fast_centronics=%x, fast-1284=%x\n" |
| 974 | "ecpp_get_prop: wsrv_retry=%d, wait_for_busy=%d\n" |
| 975 | "ecpp_get_prop: data_setup=%d, strobe_pulse=%d\n" |
| 976 | "ecpp_get_prop: transfer-timeout=%d\n", |
| 977 | pp->fast_centronics, pp->fast_compat, |
| 978 | pp->wsrv_retry, pp->wait_for_busy, |
| 979 | pp->data_setup_time, pp->strobe_pulse_width, |
| 980 | pp->xfer_parms.write_timeout); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 981 | } |
| 982 | |
| 983 | /*ARGSUSED*/ |
| 984 | int |
| 985 | ecpp_getinfo(dev_info_t *dip, ddi_info_cmd_t infocmd, void *arg, void **result) |
| 986 | { |
| 987 | dev_t dev = (dev_t)arg; |
| 988 | struct ecppunit *pp; |
| 989 | int instance, ret; |
| 990 | |
| 991 | instance = getminor(dev); |
| 992 | |
| 993 | switch (infocmd) { |
| 994 | case DDI_INFO_DEVT2DEVINFO: |
| 995 | pp = ddi_get_soft_state(ecppsoft_statep, instance); |
| 996 | if (pp != NULL) { |
| 997 | *result = pp->dip; |
| 998 | ret = DDI_SUCCESS; |
| 999 | } else { |
| 1000 | ret = DDI_FAILURE; |
| 1001 | } |
| 1002 | break; |
| 1003 | |
| 1004 | case DDI_INFO_DEVT2INSTANCE: |
| 1005 | *result = (void *)(uintptr_t)instance; |
| 1006 | ret = DDI_SUCCESS; |
| 1007 | break; |
| 1008 | |
| 1009 | default: |
| 1010 | ret = DDI_FAILURE; |
| 1011 | break; |
| 1012 | } |
| 1013 | |
| 1014 | return (ret); |
| 1015 | } |
| 1016 | |
| 1017 | /*ARGSUSED2*/ |
| 1018 | static int |
| 1019 | ecpp_open(queue_t *q, dev_t *dev, int flag, int sflag, cred_t *credp) |
| 1020 | { |
| 1021 | struct ecppunit *pp; |
| 1022 | int instance; |
| 1023 | struct stroptions *sop; |
| 1024 | mblk_t *mop; |
| 1025 | |
| 1026 | instance = getminor(*dev); |
| 1027 | |
| 1028 | if (instance < 0) { |
| 1029 | return (ENXIO); |
| 1030 | } |
| 1031 | |
| 1032 | pp = (struct ecppunit *)ddi_get_soft_state(ecppsoft_statep, instance); |
| 1033 | |
| 1034 | if (pp == NULL) { |
| 1035 | return (ENXIO); |
| 1036 | } |
| 1037 | |
| 1038 | mutex_enter(&pp->umutex); |
| 1039 | |
| 1040 | /* |
| 1041 | * Parallel port is an exclusive-use device |
| 1042 | * thus providing print job integrity |
| 1043 | */ |
| 1044 | if (pp->oflag == TRUE) { |
| 1045 | ecpp_error(pp->dip, "ecpp open failed"); |
| 1046 | mutex_exit(&pp->umutex); |
| 1047 | return (EBUSY); |
| 1048 | } |
| 1049 | |
| 1050 | pp->oflag = TRUE; |
| 1051 | |
| 1052 | /* initialize state variables */ |
| 1053 | pp->prn_timeouts = prn_timeouts_default; |
| 1054 | pp->xfer_parms = default_xfer_parms; |
| 1055 | pp->current_mode = ECPP_CENTRONICS; |
| 1056 | pp->backchannel = ECPP_CENTRONICS; |
| 1057 | pp->current_phase = ECPP_PHASE_PO; |
| 1058 | pp->port = ECPP_PORT_DMA; |
| 1059 | pp->instance = instance; |
| 1060 | pp->timeout_error = 0; |
| 1061 | pp->saved_dsr = DSR_READ(pp); |
| 1062 | pp->ecpp_drain_counter = 0; |
| 1063 | pp->dma_cancelled = FALSE; |
| 1064 | pp->io_mode = ECPP_DMA; |
| 1065 | pp->joblen = 0; |
| 1066 | pp->tfifo_intr = 0; |
| 1067 | pp->softintr_pending = 0; |
| 1068 | pp->nread = 0; |
| 1069 | |
| 1070 | /* clear the state flag */ |
| 1071 | pp->e_busy = ECPP_IDLE; |
| 1072 | |
| 1073 | pp->readq = RD(q); |
| 1074 | pp->writeq = WR(q); |
| 1075 | pp->msg = NULL; |
| 1076 | |
| 1077 | RD(q)->q_ptr = WR(q)->q_ptr = (caddr_t)pp; |
| 1078 | |
| 1079 | /* |
| 1080 | * Get ready: check host/peripheral, negotiate into default mode |
| 1081 | */ |
| 1082 | if (ecpp_reset_port_regs(pp) == FAILURE) { |
| 1083 | mutex_exit(&pp->umutex); |
| 1084 | return (EIO); |
| 1085 | } |
| 1086 | |
| 1087 | mutex_exit(&pp->umutex); |
| 1088 | |
| 1089 | /* |
| 1090 | * Configure the Stream head and enable the Stream |
| 1091 | */ |
| 1092 | if (!(mop = allocb(sizeof (struct stroptions), BPRI_MED))) { |
| 1093 | return (EAGAIN); |
| 1094 | } |
| 1095 | |
| 1096 | mop->b_datap->db_type = M_SETOPTS; |
| 1097 | mop->b_wptr += sizeof (struct stroptions); |
| 1098 | |
| 1099 | /* |
| 1100 | * if device is open with O_NONBLOCK flag set, let read(2) return 0 |
| 1101 | * if no data waiting to be read. Writes will block on flow control. |
| 1102 | */ |
| 1103 | sop = (struct stroptions *)mop->b_rptr; |
| 1104 | sop->so_flags = SO_HIWAT | SO_LOWAT | SO_NDELON | SO_MREADON; |
| 1105 | sop->so_hiwat = ECPPHIWAT; |
| 1106 | sop->so_lowat = ECPPLOWAT; |
| 1107 | |
| 1108 | /* enable the stream */ |
| 1109 | qprocson(q); |
| 1110 | |
| 1111 | putnext(q, mop); |
| 1112 | |
| 1113 | mutex_enter(&pp->umutex); |
| 1114 | |
| 1115 | ecpp_default_negotiation(pp); |
| 1116 | |
| 1117 | /* go revidle */ |
| 1118 | (void) ecpp_idle_phase(pp); |
| 1119 | |
| 1120 | ecpp_error(pp->dip, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1121 | "ecpp_open: mode=%x, phase=%x ecr=%x, dsr=%x, dcr=%x\n", |
| 1122 | pp->current_mode, pp->current_phase, |
| 1123 | ECR_READ(pp), DSR_READ(pp), DCR_READ(pp)); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1124 | |
| 1125 | mutex_exit(&pp->umutex); |
| 1126 | |
| 1127 | return (0); |
| 1128 | } |
| 1129 | |
| 1130 | /*ARGSUSED1*/ |
| 1131 | static int |
| 1132 | ecpp_close(queue_t *q, int flag, cred_t *cred_p) |
| 1133 | { |
| 1134 | struct ecppunit *pp; |
| 1135 | timeout_id_t timeout_id, fifo_timer_id, wsrv_timer_id; |
| 1136 | |
| 1137 | pp = (struct ecppunit *)q->q_ptr; |
| 1138 | |
| 1139 | ecpp_error(pp->dip, "ecpp_close: entering ...\n"); |
| 1140 | |
| 1141 | mutex_enter(&pp->umutex); |
| 1142 | |
| 1143 | /* |
| 1144 | * ecpp_close() will continue to loop until the |
| 1145 | * queue has been drained or if the thread |
| 1146 | * has received a SIG. Typically, when the queue |
| 1147 | * has data, the port will be ECPP_BUSY. However, |
| 1148 | * after a dma completes and before the wsrv |
| 1149 | * starts the next transfer, the port may be IDLE. |
| 1150 | * In this case, ecpp_close() will loop within this |
| 1151 | * while(qsize) segment. Since, ecpp_wsrv() runs |
| 1152 | * at software interupt level, this shouldn't loop |
| 1153 | * very long. |
| 1154 | */ |
| 1155 | while (pp->e_busy != ECPP_IDLE || qsize(WR(q))) { |
| 1156 | if (!cv_wait_sig(&pp->pport_cv, &pp->umutex)) { |
| 1157 | ecpp_error(pp->dip, "ecpp_close:B: received SIG\n"); |
| 1158 | /* |
| 1159 | * Returning from a signal such as |
| 1160 | * SIGTERM or SIGKILL |
| 1161 | */ |
| 1162 | ecpp_flush(pp, FWRITE); |
| 1163 | break; |
| 1164 | } else { |
| 1165 | ecpp_error(pp->dip, "ecpp_close:rcvd cv-sig\n"); |
| 1166 | } |
| 1167 | } |
| 1168 | |
| 1169 | ecpp_error(pp->dip, "ecpp_close: joblen=%d, ctx_cf=%d, " |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1170 | "qsize(WR(q))=%d, qsize(RD(q))=%d\n", |
| 1171 | pp->joblen, pp->ctx_cf, qsize(pp->writeq), qsize(q)); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1172 | |
| 1173 | /* |
| 1174 | * Cancel all timeouts, disable interrupts |
| 1175 | * |
| 1176 | * Note that we can`t call untimeout(9F) with mutex held: |
| 1177 | * callout may be blocked on the same mutex, and untimeout() will |
| 1178 | * cv_wait() while callout is executing, thus creating a deadlock |
| 1179 | * So we zero the timeout id's inside mutex and call untimeout later |
| 1180 | */ |
| 1181 | timeout_id = pp->timeout_id; |
| 1182 | fifo_timer_id = pp->fifo_timer_id; |
| 1183 | wsrv_timer_id = pp->wsrv_timer_id; |
| 1184 | |
| 1185 | pp->timeout_id = pp->fifo_timer_id = pp->wsrv_timer_id = 0; |
| 1186 | |
| 1187 | pp->softintr_pending = 0; |
| 1188 | pp->dma_cancelled = TRUE; |
| 1189 | ECPP_MASK_INTR(pp); |
| 1190 | |
| 1191 | mutex_exit(&pp->umutex); |
| 1192 | |
| 1193 | qprocsoff(q); |
| 1194 | |
| 1195 | if (timeout_id) { |
| 1196 | (void) untimeout(timeout_id); |
| 1197 | } |
| 1198 | if (fifo_timer_id) { |
| 1199 | (void) untimeout(fifo_timer_id); |
| 1200 | } |
| 1201 | if (wsrv_timer_id) { |
| 1202 | (void) untimeout(wsrv_timer_id); |
| 1203 | } |
| 1204 | |
| 1205 | mutex_enter(&pp->umutex); |
| 1206 | |
| 1207 | /* set link to Compatible mode */ |
| 1208 | if ((pp->current_mode == ECPP_ECP_MODE) && |
| 1209 | (pp->current_phase != ECPP_PHASE_ECP_FWD_IDLE)) { |
| 1210 | (void) ecp_reverse2forward(pp); |
| 1211 | } |
| 1212 | |
| 1213 | (void) ecpp_1284_termination(pp); |
| 1214 | |
| 1215 | pp->oflag = FALSE; |
| 1216 | q->q_ptr = WR(q)->q_ptr = NULL; |
| 1217 | pp->readq = pp->writeq = NULL; |
| 1218 | pp->msg = NULL; |
| 1219 | |
| 1220 | ecpp_error(pp->dip, "ecpp_close: ecr=%x, dsr=%x, dcr=%x\n", |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1221 | ECR_READ(pp), DSR_READ(pp), DCR_READ(pp)); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1222 | |
| 1223 | mutex_exit(&pp->umutex); |
| 1224 | |
| 1225 | return (0); |
| 1226 | } |
| 1227 | |
| 1228 | /* |
| 1229 | * standard put procedure for ecpp |
| 1230 | */ |
| 1231 | static int |
| 1232 | ecpp_wput(queue_t *q, mblk_t *mp) |
| 1233 | { |
| 1234 | struct msgb *nmp; |
| 1235 | struct ecppunit *pp; |
| 1236 | |
| 1237 | pp = (struct ecppunit *)q->q_ptr; |
| 1238 | |
| 1239 | if (!mp) { |
| 1240 | return (0); |
| 1241 | } |
| 1242 | |
| 1243 | if ((mp->b_wptr - mp->b_rptr) <= 0) { |
| 1244 | ecpp_error(pp->dip, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1245 | "ecpp_wput:bogus packet recieved mp=%x\n", mp); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1246 | freemsg(mp); |
| 1247 | return (0); |
| 1248 | } |
| 1249 | |
| 1250 | switch (DB_TYPE(mp)) { |
| 1251 | case M_DATA: |
| 1252 | /* |
| 1253 | * This is a quick fix for multiple message block problem, |
| 1254 | * it will be changed later with better performance code. |
| 1255 | */ |
| 1256 | if (mp->b_cont) { |
| 1257 | /* |
| 1258 | * mblk has scattered data ... do msgpullup |
| 1259 | * if it fails, continue with the current mblk |
| 1260 | */ |
| 1261 | if ((nmp = msgpullup(mp, -1)) != NULL) { |
| 1262 | freemsg(mp); |
| 1263 | mp = nmp; |
| 1264 | ecpp_error(pp->dip, |
| 1265 | "ecpp_wput:msgpullup: mp=%p len=%d\n", |
| 1266 | mp, mp->b_wptr - mp->b_rptr); |
| 1267 | } |
| 1268 | } |
| 1269 | |
| 1270 | /* let ecpp_wsrv() concatenate small blocks */ |
| 1271 | (void) putq(q, mp); |
| 1272 | |
| 1273 | break; |
| 1274 | |
| 1275 | case M_CTL: |
| 1276 | (void) putq(q, mp); |
| 1277 | |
| 1278 | break; |
| 1279 | |
| 1280 | case M_IOCTL: { |
| 1281 | struct iocblk *iocbp; |
| 1282 | |
| 1283 | iocbp = (struct iocblk *)mp->b_rptr; |
| 1284 | |
| 1285 | ecpp_error(pp->dip, "ecpp_wput:M_IOCTL %x\n", iocbp->ioc_cmd); |
| 1286 | |
| 1287 | mutex_enter(&pp->umutex); |
| 1288 | |
| 1289 | /* TESTIO and GET_STATUS can be used during transfer */ |
| 1290 | if ((pp->e_busy == ECPP_BUSY) && |
| 1291 | (iocbp->ioc_cmd != BPPIOC_TESTIO) && |
| 1292 | (iocbp->ioc_cmd != PRNIOC_GET_STATUS)) { |
| 1293 | mutex_exit(&pp->umutex); |
| 1294 | (void) putq(q, mp); |
| 1295 | } else { |
| 1296 | mutex_exit(&pp->umutex); |
| 1297 | ecpp_putioc(q, mp); |
| 1298 | } |
| 1299 | |
| 1300 | break; |
| 1301 | } |
| 1302 | |
| 1303 | case M_IOCDATA: { |
| 1304 | struct copyresp *csp; |
| 1305 | |
| 1306 | ecpp_error(pp->dip, "ecpp_wput:M_IOCDATA\n"); |
| 1307 | |
| 1308 | csp = (struct copyresp *)mp->b_rptr; |
| 1309 | |
| 1310 | /* |
| 1311 | * If copy request failed, quit now |
| 1312 | */ |
| 1313 | if (csp->cp_rval != 0) { |
| 1314 | freemsg(mp); |
| 1315 | return (0); |
| 1316 | } |
| 1317 | |
| 1318 | switch (csp->cp_cmd) { |
| 1319 | case ECPPIOC_SETPARMS: |
| 1320 | case ECPPIOC_SETREGS: |
| 1321 | case ECPPIOC_SETPORT: |
| 1322 | case ECPPIOC_SETDATA: |
| 1323 | case PRNIOC_SET_IFCAP: |
| 1324 | case PRNIOC_SET_TIMEOUTS: |
| 1325 | /* |
| 1326 | * need to retrieve and use the data, but if the |
| 1327 | * device is busy, wait. |
| 1328 | */ |
| 1329 | (void) putq(q, mp); |
| 1330 | break; |
| 1331 | |
| 1332 | case ECPPIOC_GETPARMS: |
| 1333 | case ECPPIOC_GETREGS: |
| 1334 | case ECPPIOC_GETPORT: |
| 1335 | case ECPPIOC_GETDATA: |
| 1336 | case BPPIOC_GETERR: |
| 1337 | case BPPIOC_TESTIO: |
| 1338 | case PRNIOC_GET_IFCAP: |
| 1339 | case PRNIOC_GET_STATUS: |
| 1340 | case PRNIOC_GET_1284_STATUS: |
| 1341 | case PRNIOC_GET_TIMEOUTS: |
| 1342 | /* data transfered to user space okay */ |
| 1343 | ecpp_ack_ioctl(q, mp); |
| 1344 | break; |
| 1345 | |
| 1346 | case ECPPIOC_GETDEVID: |
| 1347 | ecpp_wput_iocdata_devid(q, mp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1348 | offsetof(struct ecpp_device_id, rlen)); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1349 | break; |
| 1350 | |
| 1351 | case PRNIOC_GET_1284_DEVID: |
| 1352 | ecpp_wput_iocdata_devid(q, mp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1353 | offsetof(struct prn_1284_device_id, id_rlen)); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1354 | break; |
| 1355 | |
| 1356 | case PRNIOC_GET_IFINFO: |
| 1357 | ecpp_wput_iocdata_devid(q, mp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1358 | offsetof(struct prn_interface_info, if_rlen)); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1359 | break; |
| 1360 | |
| 1361 | default: |
| 1362 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 1363 | break; |
| 1364 | } |
| 1365 | |
| 1366 | break; |
| 1367 | } |
| 1368 | |
| 1369 | case M_FLUSH: |
| 1370 | ecpp_error(pp->dip, "ecpp_wput:M_FLUSH\n"); |
| 1371 | |
| 1372 | if (*mp->b_rptr & FLUSHW) { |
| 1373 | mutex_enter(&pp->umutex); |
| 1374 | ecpp_flush(pp, FWRITE); |
| 1375 | mutex_exit(&pp->umutex); |
| 1376 | } |
| 1377 | |
| 1378 | if (*mp->b_rptr & FLUSHR) { |
| 1379 | mutex_enter(&pp->umutex); |
| 1380 | ecpp_flush(pp, FREAD); |
| 1381 | mutex_exit(&pp->umutex); |
| 1382 | qreply(q, mp); |
| 1383 | } else { |
| 1384 | freemsg(mp); |
| 1385 | } |
| 1386 | |
| 1387 | break; |
| 1388 | |
| 1389 | case M_READ: |
| 1390 | /* |
| 1391 | * When the user calls read(2), M_READ message is sent to us, |
| 1392 | * first byte of which is the number of requested bytes |
| 1393 | * We add up user requests and use resulting number |
| 1394 | * to calculate the reverse transfer block size |
| 1395 | */ |
| 1396 | mutex_enter(&pp->umutex); |
| 1397 | if (pp->e_busy == ECPP_IDLE) { |
| 1398 | pp->nread += *(size_t *)mp->b_rptr; |
| 1399 | ecpp_error(pp->dip, "ecpp_wput: M_READ %d", pp->nread); |
| 1400 | freemsg(mp); |
| 1401 | } else { |
| 1402 | ecpp_error(pp->dip, "ecpp_wput: M_READ queueing"); |
| 1403 | (void) putq(q, mp); |
| 1404 | } |
| 1405 | mutex_exit(&pp->umutex); |
| 1406 | break; |
| 1407 | |
| 1408 | default: |
| 1409 | ecpp_error(pp->dip, "ecpp_wput: bad messagetype 0x%x\n", |
| 1410 | DB_TYPE(mp)); |
| 1411 | freemsg(mp); |
| 1412 | break; |
| 1413 | } |
| 1414 | |
| 1415 | return (0); |
| 1416 | } |
| 1417 | |
| 1418 | /* |
| 1419 | * Process ECPPIOC_GETDEVID-like ioctls |
| 1420 | */ |
| 1421 | static void |
| 1422 | ecpp_wput_iocdata_devid(queue_t *q, mblk_t *mp, uintptr_t rlen_offset) |
| 1423 | { |
| 1424 | struct copyresp *csp; |
| 1425 | struct ecpp_copystate *stp; |
| 1426 | mblk_t *datamp; |
| 1427 | |
| 1428 | csp = (struct copyresp *)mp->b_rptr; |
| 1429 | stp = (struct ecpp_copystate *)csp->cp_private->b_rptr; |
| 1430 | |
| 1431 | /* determine the state of copyin/copyout process */ |
| 1432 | switch (stp->state) { |
| 1433 | case ECPP_STRUCTIN: |
| 1434 | /* user structure has arrived */ |
| 1435 | (void) putq(q, mp); |
| 1436 | break; |
| 1437 | |
| 1438 | case ECPP_ADDROUT: |
| 1439 | /* |
| 1440 | * data transfered to user space okay |
| 1441 | * now update user structure |
| 1442 | */ |
| 1443 | datamp = allocb(sizeof (int), BPRI_MED); |
| 1444 | if (datamp == NULL) { |
| 1445 | ecpp_nack_ioctl(q, mp, ENOSR); |
| 1446 | break; |
| 1447 | } |
| 1448 | |
| 1449 | *(int *)datamp->b_rptr = |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1450 | *(int *)((char *)&stp->un + rlen_offset); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1451 | stp->state = ECPP_STRUCTOUT; |
| 1452 | |
| 1453 | mcopyout(mp, csp->cp_private, sizeof (int), |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1454 | (char *)stp->uaddr + rlen_offset, datamp); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1455 | qreply(q, mp); |
| 1456 | break; |
| 1457 | |
| 1458 | case ECPP_STRUCTOUT: |
| 1459 | /* user structure was updated okay */ |
| 1460 | freemsg(csp->cp_private); |
| 1461 | ecpp_ack_ioctl(q, mp); |
| 1462 | break; |
| 1463 | |
| 1464 | default: |
| 1465 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 1466 | break; |
| 1467 | } |
| 1468 | } |
| 1469 | |
| 1470 | static uchar_t |
| 1471 | ecpp_get_error_status(uchar_t status) |
| 1472 | { |
| 1473 | uchar_t pin_status = 0; |
| 1474 | |
| 1475 | if (!(status & ECPP_nERR)) { |
| 1476 | pin_status |= BPP_ERR_ERR; |
| 1477 | } |
| 1478 | |
| 1479 | if (status & ECPP_PE) { |
| 1480 | pin_status |= BPP_PE_ERR; |
| 1481 | } |
| 1482 | |
| 1483 | if (!(status & ECPP_SLCT)) { |
| 1484 | pin_status |= BPP_SLCT_ERR; |
| 1485 | } |
| 1486 | |
| 1487 | if (!(status & ECPP_nBUSY)) { |
| 1488 | pin_status |= BPP_SLCT_ERR; |
| 1489 | } |
| 1490 | |
| 1491 | return (pin_status); |
| 1492 | } |
| 1493 | |
| 1494 | /* |
| 1495 | * ioctl handler for output PUT procedure. |
| 1496 | */ |
| 1497 | static void |
| 1498 | ecpp_putioc(queue_t *q, mblk_t *mp) |
| 1499 | { |
| 1500 | struct iocblk *iocbp; |
| 1501 | struct ecppunit *pp; |
| 1502 | |
| 1503 | pp = (struct ecppunit *)q->q_ptr; |
| 1504 | |
| 1505 | iocbp = (struct iocblk *)mp->b_rptr; |
| 1506 | |
| 1507 | /* I_STR ioctls are invalid */ |
| 1508 | if (iocbp->ioc_count != TRANSPARENT) { |
| 1509 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 1510 | return; |
| 1511 | } |
| 1512 | |
| 1513 | switch (iocbp->ioc_cmd) { |
| 1514 | case ECPPIOC_SETPARMS: { |
| 1515 | mcopyin(mp, NULL, sizeof (struct ecpp_transfer_parms), NULL); |
| 1516 | qreply(q, mp); |
| 1517 | break; |
| 1518 | } |
| 1519 | |
| 1520 | case ECPPIOC_GETPARMS: { |
| 1521 | struct ecpp_transfer_parms xfer_parms; |
| 1522 | |
| 1523 | mutex_enter(&pp->umutex); |
| 1524 | |
| 1525 | pp->xfer_parms.mode = pp->current_mode; |
| 1526 | xfer_parms = pp->xfer_parms; |
| 1527 | |
| 1528 | mutex_exit(&pp->umutex); |
| 1529 | |
| 1530 | ecpp_putioc_copyout(q, mp, &xfer_parms, sizeof (xfer_parms)); |
| 1531 | break; |
| 1532 | } |
| 1533 | |
| 1534 | case ECPPIOC_SETREGS: { |
| 1535 | mutex_enter(&pp->umutex); |
| 1536 | if (pp->current_mode != ECPP_DIAG_MODE) { |
| 1537 | mutex_exit(&pp->umutex); |
| 1538 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 1539 | break; |
| 1540 | } |
| 1541 | mutex_exit(&pp->umutex); |
| 1542 | |
| 1543 | mcopyin(mp, NULL, sizeof (struct ecpp_regs), NULL); |
| 1544 | qreply(q, mp); |
| 1545 | break; |
| 1546 | } |
| 1547 | |
| 1548 | case ECPPIOC_GETREGS: { |
| 1549 | struct ecpp_regs rg; |
| 1550 | |
| 1551 | mutex_enter(&pp->umutex); |
| 1552 | |
| 1553 | if (pp->current_mode != ECPP_DIAG_MODE) { |
| 1554 | mutex_exit(&pp->umutex); |
| 1555 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 1556 | break; |
| 1557 | } |
| 1558 | |
| 1559 | rg.dsr = DSR_READ(pp); |
| 1560 | rg.dcr = DCR_READ(pp); |
| 1561 | |
| 1562 | mutex_exit(&pp->umutex); |
| 1563 | |
| 1564 | ecpp_error(pp->dip, "ECPPIOC_GETREGS: dsr=%x,dcr=%x\n", |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1565 | rg.dsr, rg.dcr); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1566 | |
| 1567 | /* these bits must be 1 */ |
| 1568 | rg.dsr |= ECPP_SETREGS_DSR_MASK; |
| 1569 | rg.dcr |= ECPP_SETREGS_DCR_MASK; |
| 1570 | |
| 1571 | ecpp_putioc_copyout(q, mp, &rg, sizeof (rg)); |
| 1572 | break; |
| 1573 | } |
| 1574 | |
| 1575 | case ECPPIOC_SETPORT: |
| 1576 | case ECPPIOC_SETDATA: { |
| 1577 | mutex_enter(&pp->umutex); |
| 1578 | if (pp->current_mode != ECPP_DIAG_MODE) { |
| 1579 | mutex_exit(&pp->umutex); |
| 1580 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 1581 | break; |
| 1582 | } |
| 1583 | mutex_exit(&pp->umutex); |
| 1584 | |
| 1585 | /* |
| 1586 | * each of the commands fetches a byte quantity. |
| 1587 | */ |
| 1588 | mcopyin(mp, NULL, sizeof (uchar_t), NULL); |
| 1589 | qreply(q, mp); |
| 1590 | break; |
| 1591 | } |
| 1592 | |
| 1593 | case ECPPIOC_GETDATA: |
| 1594 | case ECPPIOC_GETPORT: { |
| 1595 | uchar_t byte; |
| 1596 | |
| 1597 | mutex_enter(&pp->umutex); |
| 1598 | |
| 1599 | /* must be in diagnostic mode for these commands to work */ |
| 1600 | if (pp->current_mode != ECPP_DIAG_MODE) { |
| 1601 | mutex_exit(&pp->umutex); |
| 1602 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 1603 | break; |
| 1604 | } |
| 1605 | |
| 1606 | if (iocbp->ioc_cmd == ECPPIOC_GETPORT) { |
| 1607 | byte = pp->port; |
| 1608 | } else if (iocbp->ioc_cmd == ECPPIOC_GETDATA) { |
| 1609 | switch (pp->port) { |
| 1610 | case ECPP_PORT_PIO: |
| 1611 | byte = DATAR_READ(pp); |
| 1612 | break; |
| 1613 | case ECPP_PORT_TDMA: |
| 1614 | byte = TFIFO_READ(pp); |
| 1615 | ecpp_error(pp->dip, "GETDATA=0x%x\n", byte); |
| 1616 | break; |
| 1617 | default: |
| 1618 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 1619 | break; |
| 1620 | } |
| 1621 | } else { |
| 1622 | mutex_exit(&pp->umutex); |
| 1623 | ecpp_error(pp->dip, "weird command"); |
| 1624 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 1625 | break; |
| 1626 | } |
| 1627 | |
| 1628 | mutex_exit(&pp->umutex); |
| 1629 | |
| 1630 | ecpp_putioc_copyout(q, mp, &byte, sizeof (byte)); |
| 1631 | |
| 1632 | break; |
| 1633 | } |
| 1634 | |
| 1635 | case BPPIOC_GETERR: { |
| 1636 | struct bpp_error_status bpp_status; |
| 1637 | |
| 1638 | mutex_enter(&pp->umutex); |
| 1639 | |
| 1640 | bpp_status.timeout_occurred = pp->timeout_error; |
| 1641 | bpp_status.bus_error = 0; /* not used */ |
| 1642 | bpp_status.pin_status = ecpp_get_error_status(pp->saved_dsr); |
| 1643 | |
| 1644 | mutex_exit(&pp->umutex); |
| 1645 | |
| 1646 | ecpp_putioc_copyout(q, mp, &bpp_status, sizeof (bpp_status)); |
| 1647 | |
| 1648 | break; |
| 1649 | } |
| 1650 | |
| 1651 | case BPPIOC_TESTIO: { |
| 1652 | mutex_enter(&pp->umutex); |
| 1653 | |
| 1654 | if (!((pp->current_mode == ECPP_CENTRONICS) || |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1655 | (pp->current_mode == ECPP_COMPAT_MODE))) { |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1656 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 1657 | } else { |
| 1658 | pp->saved_dsr = DSR_READ(pp); |
| 1659 | |
| 1660 | if ((pp->saved_dsr & ECPP_PE) || |
| 1661 | !(pp->saved_dsr & ECPP_SLCT) || |
| 1662 | !(pp->saved_dsr & ECPP_nERR)) { |
| 1663 | ecpp_nack_ioctl(q, mp, EIO); |
| 1664 | } else { |
| 1665 | ecpp_ack_ioctl(q, mp); |
| 1666 | } |
| 1667 | } |
| 1668 | |
| 1669 | mutex_exit(&pp->umutex); |
| 1670 | |
| 1671 | break; |
| 1672 | } |
| 1673 | |
| 1674 | case PRNIOC_RESET: |
| 1675 | /* |
| 1676 | * Initialize interface only if no transfer is in progress |
| 1677 | */ |
| 1678 | mutex_enter(&pp->umutex); |
| 1679 | if (pp->e_busy == ECPP_BUSY) { |
| 1680 | mutex_exit(&pp->umutex); |
| 1681 | ecpp_nack_ioctl(q, mp, EIO); |
| 1682 | } else { |
| 1683 | (void) ecpp_mode_negotiation(pp, ECPP_CENTRONICS); |
| 1684 | |
| 1685 | DCR_WRITE(pp, ECPP_SLCTIN); |
| 1686 | drv_usecwait(2); |
| 1687 | DCR_WRITE(pp, ECPP_SLCTIN | ECPP_nINIT); |
| 1688 | |
| 1689 | ecpp_default_negotiation(pp); |
| 1690 | |
| 1691 | mutex_exit(&pp->umutex); |
| 1692 | ecpp_ack_ioctl(q, mp); |
| 1693 | } |
| 1694 | break; |
| 1695 | |
| 1696 | case PRNIOC_GET_IFCAP: { |
| 1697 | uint_t ifcap; |
| 1698 | |
| 1699 | mutex_enter(&pp->umutex); |
| 1700 | |
| 1701 | ifcap = ecpp_get_prn_ifcap(pp); |
| 1702 | |
| 1703 | mutex_exit(&pp->umutex); |
| 1704 | |
| 1705 | ecpp_putioc_copyout(q, mp, &ifcap, sizeof (ifcap)); |
| 1706 | break; |
| 1707 | } |
| 1708 | |
| 1709 | case PRNIOC_SET_IFCAP: { |
| 1710 | mcopyin(mp, NULL, sizeof (uint_t), NULL); |
| 1711 | qreply(q, mp); |
| 1712 | break; |
| 1713 | } |
| 1714 | |
| 1715 | case PRNIOC_GET_TIMEOUTS: { |
| 1716 | struct prn_timeouts timeouts; |
| 1717 | |
| 1718 | mutex_enter(&pp->umutex); |
| 1719 | timeouts = pp->prn_timeouts; |
| 1720 | mutex_exit(&pp->umutex); |
| 1721 | |
| 1722 | ecpp_putioc_copyout(q, mp, &timeouts, sizeof (timeouts)); |
| 1723 | |
| 1724 | break; |
| 1725 | } |
| 1726 | |
| 1727 | case PRNIOC_SET_TIMEOUTS: |
| 1728 | mcopyin(mp, NULL, sizeof (struct prn_timeouts), |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1729 | *(caddr_t *)(void *)mp->b_cont->b_rptr); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1730 | qreply(q, mp); |
| 1731 | break; |
| 1732 | |
| 1733 | case PRNIOC_GET_STATUS: { |
| 1734 | uint8_t dsr; |
| 1735 | uint_t status; |
| 1736 | |
| 1737 | mutex_enter(&pp->umutex); |
| 1738 | |
| 1739 | /* DSR only makes sense in Centronics & Compat mode */ |
| 1740 | if (pp->current_mode == ECPP_CENTRONICS || |
| 1741 | pp->current_mode == ECPP_COMPAT_MODE) { |
| 1742 | dsr = DSR_READ(pp); |
| 1743 | if ((dsr & ECPP_PE) || |
| 1744 | !(dsr & ECPP_SLCT) || !(dsr & ECPP_nERR)) { |
| 1745 | status = PRN_ONLINE; |
| 1746 | } else { |
| 1747 | status = PRN_ONLINE | PRN_READY; |
| 1748 | } |
| 1749 | } else { |
| 1750 | status = PRN_ONLINE | PRN_READY; |
| 1751 | } |
| 1752 | |
| 1753 | mutex_exit(&pp->umutex); |
| 1754 | |
| 1755 | ecpp_putioc_copyout(q, mp, &status, sizeof (status)); |
| 1756 | break; |
| 1757 | } |
| 1758 | |
| 1759 | case PRNIOC_GET_1284_STATUS: { |
| 1760 | uint8_t dsr; |
| 1761 | uchar_t status; |
| 1762 | |
| 1763 | mutex_enter(&pp->umutex); |
| 1764 | |
| 1765 | /* status only makes sense in Centronics & Compat mode */ |
| 1766 | if (pp->current_mode != ECPP_COMPAT_MODE && |
| 1767 | pp->current_mode != ECPP_CENTRONICS) { |
| 1768 | mutex_exit(&pp->umutex); |
| 1769 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 1770 | break; |
| 1771 | } |
| 1772 | |
| 1773 | dsr = DSR_READ(pp); /* read status */ |
| 1774 | |
| 1775 | mutex_exit(&pp->umutex); |
| 1776 | |
| 1777 | ecpp_error(pp->dip, "PRNIOC_GET_STATUS: %x\n", dsr); |
| 1778 | |
| 1779 | status = (dsr & (ECPP_SLCT | ECPP_PE | ECPP_nERR)) | |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1780 | (~dsr & ECPP_nBUSY); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1781 | |
| 1782 | ecpp_putioc_copyout(q, mp, &status, sizeof (status)); |
| 1783 | break; |
| 1784 | } |
| 1785 | |
| 1786 | case ECPPIOC_GETDEVID: |
| 1787 | ecpp_putioc_stateful_copyin(q, mp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1788 | sizeof (struct ecpp_device_id)); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1789 | break; |
| 1790 | |
| 1791 | case PRNIOC_GET_1284_DEVID: |
| 1792 | ecpp_putioc_stateful_copyin(q, mp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1793 | sizeof (struct prn_1284_device_id)); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1794 | break; |
| 1795 | |
| 1796 | case PRNIOC_GET_IFINFO: |
| 1797 | ecpp_putioc_stateful_copyin(q, mp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1798 | sizeof (struct prn_interface_info)); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1799 | break; |
| 1800 | |
| 1801 | default: |
| 1802 | ecpp_error(pp->dip, "putioc: unknown IOCTL: %x\n", |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1803 | iocbp->ioc_cmd); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1804 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 1805 | break; |
| 1806 | } |
| 1807 | } |
| 1808 | |
| 1809 | /* |
| 1810 | * allocate mblk and copyout the requested number of bytes |
| 1811 | */ |
| 1812 | static void |
| 1813 | ecpp_putioc_copyout(queue_t *q, mblk_t *mp, void *buf, int len) |
| 1814 | { |
| 1815 | mblk_t *tmp; |
| 1816 | |
| 1817 | if ((tmp = allocb(len, BPRI_MED)) == NULL) { |
| 1818 | ecpp_nack_ioctl(q, mp, ENOSR); |
| 1819 | return; |
| 1820 | } |
| 1821 | |
| 1822 | bcopy(buf, tmp->b_wptr, len); |
| 1823 | |
| 1824 | mcopyout(mp, NULL, len, NULL, tmp); |
| 1825 | qreply(q, mp); |
| 1826 | } |
| 1827 | |
| 1828 | /* |
| 1829 | * copyin the structure using struct ecpp_copystate |
| 1830 | */ |
| 1831 | static void |
| 1832 | ecpp_putioc_stateful_copyin(queue_t *q, mblk_t *mp, size_t size) |
| 1833 | { |
| 1834 | mblk_t *tmp; |
| 1835 | struct ecpp_copystate *stp; |
| 1836 | |
| 1837 | if ((tmp = allocb(sizeof (struct ecpp_copystate), BPRI_MED)) == NULL) { |
| 1838 | ecpp_nack_ioctl(q, mp, EAGAIN); |
| 1839 | return; |
| 1840 | } |
| 1841 | |
| 1842 | stp = (struct ecpp_copystate *)tmp->b_rptr; |
| 1843 | stp->state = ECPP_STRUCTIN; |
| 1844 | stp->uaddr = *(caddr_t *)mp->b_cont->b_rptr; |
| 1845 | |
| 1846 | tmp->b_wptr += sizeof (struct ecpp_copystate); |
| 1847 | |
| 1848 | mcopyin(mp, tmp, size, stp->uaddr); |
| 1849 | qreply(q, mp); |
| 1850 | } |
| 1851 | |
| 1852 | /* |
| 1853 | * read queue is only used when the peripheral sends data faster, |
| 1854 | * then the application consumes it; |
| 1855 | * once the low water mark is reached, this routine will be scheduled |
| 1856 | */ |
| 1857 | static int |
| 1858 | ecpp_rsrv(queue_t *q) |
| 1859 | { |
| 1860 | struct msgb *mp; |
| 1861 | |
| 1862 | /* |
| 1863 | * send data upstream until next queue is full or the queue is empty |
| 1864 | */ |
| 1865 | while (canputnext(q) && (mp = getq(q))) { |
| 1866 | putnext(q, mp); |
| 1867 | } |
| 1868 | |
| 1869 | /* |
| 1870 | * if there is still space on the queue, enable backchannel |
| 1871 | */ |
| 1872 | if (canputnext(q)) { |
| 1873 | struct ecppunit *pp = (struct ecppunit *)q->q_ptr; |
| 1874 | |
| 1875 | mutex_enter(&pp->umutex); |
| 1876 | |
| 1877 | if (pp->e_busy == ECPP_IDLE) { |
| 1878 | (void) ecpp_idle_phase(pp); |
| 1879 | cv_signal(&pp->pport_cv); /* signal ecpp_close() */ |
| 1880 | } |
| 1881 | |
| 1882 | mutex_exit(&pp->umutex); |
| 1883 | } |
| 1884 | |
| 1885 | return (0); |
| 1886 | } |
| 1887 | |
| 1888 | static int |
| 1889 | ecpp_wsrv(queue_t *q) |
| 1890 | { |
| 1891 | struct ecppunit *pp = (struct ecppunit *)q->q_ptr; |
| 1892 | struct msgb *mp; |
| 1893 | size_t len, total_len; |
| 1894 | size_t my_ioblock_sz; |
| 1895 | caddr_t my_ioblock; |
| 1896 | caddr_t start_addr; |
| 1897 | |
| 1898 | mutex_enter(&pp->umutex); |
| 1899 | |
| 1900 | ecpp_error(pp->dip, "ecpp_wsrv: e_busy=%x\n", pp->e_busy); |
| 1901 | |
| 1902 | /* if channel is actively doing work, wait till completed */ |
| 1903 | if (pp->e_busy == ECPP_BUSY || pp->e_busy == ECPP_FLUSH) { |
| 1904 | mutex_exit(&pp->umutex); |
| 1905 | return (0); |
| 1906 | } else if (pp->suspended == TRUE) { |
| 1907 | /* |
| 1908 | * if the system is about to suspend and ecpp_detach() |
| 1909 | * is blocked due to active transfers, wake it up and exit |
| 1910 | */ |
| 1911 | cv_signal(&pp->pport_cv); |
| 1912 | mutex_exit(&pp->umutex); |
| 1913 | return (0); |
| 1914 | } |
| 1915 | |
| 1916 | /* peripheral status should be okay before starting transfer */ |
| 1917 | if (pp->e_busy == ECPP_ERR) { |
| 1918 | if (ecpp_check_status(pp) == FAILURE) { |
| 1919 | if (pp->wsrv_timer_id == 0) { |
| 1920 | ecpp_error(pp->dip, "wsrv: start wrsv_timer\n"); |
| 1921 | pp->wsrv_timer_id = timeout(ecpp_wsrv_timer, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1922 | (caddr_t)pp, |
| 1923 | drv_usectohz(pp->wsrv_retry * 1000)); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1924 | } else { |
| 1925 | ecpp_error(pp->dip, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 1926 | "ecpp_wsrv: wrsv_timer is active\n"); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 1927 | } |
| 1928 | |
| 1929 | mutex_exit(&pp->umutex); |
| 1930 | return (0); |
| 1931 | } else { |
| 1932 | pp->e_busy = ECPP_IDLE; |
| 1933 | } |
| 1934 | } |
| 1935 | |
| 1936 | my_ioblock = pp->ioblock; |
| 1937 | my_ioblock_sz = IO_BLOCK_SZ; |
| 1938 | |
| 1939 | /* |
| 1940 | * it`s important to null pp->msg here, |
| 1941 | * cleaning up from the previous transfer attempts |
| 1942 | */ |
| 1943 | pp->msg = NULL; |
| 1944 | |
| 1945 | start_addr = NULL; |
| 1946 | len = total_len = 0; |
| 1947 | /* |
| 1948 | * The following loop is implemented to gather the |
| 1949 | * many small writes that the lp subsystem makes and |
| 1950 | * compile them into one large dma transfer. The len and |
| 1951 | * total_len variables are a running count of the number of |
| 1952 | * bytes that have been gathered. They are bcopied to the |
| 1953 | * ioblock buffer. The pp->e_busy is set to E_BUSY as soon as |
| 1954 | * we start gathering packets to indicate the following transfer. |
| 1955 | */ |
| 1956 | while (mp = getq(q)) { |
| 1957 | switch (DB_TYPE(mp)) { |
| 1958 | case M_DATA: |
| 1959 | pp->e_busy = ECPP_BUSY; |
| 1960 | len = mp->b_wptr - mp->b_rptr; |
| 1961 | |
| 1962 | if ((total_len == 0) && (len >= my_ioblock_sz)) { |
| 1963 | /* |
| 1964 | * if the first M_DATA is bigger than ioblock, |
| 1965 | * just use this mblk and start the transfer |
| 1966 | */ |
| 1967 | total_len = len; |
| 1968 | start_addr = (caddr_t)mp->b_rptr; |
| 1969 | pp->msg = mp; |
| 1970 | goto breakout; |
| 1971 | } else if (total_len + len > my_ioblock_sz) { |
| 1972 | /* |
| 1973 | * current M_DATA does not fit in ioblock, |
| 1974 | * put it back and start the transfer |
| 1975 | */ |
| 1976 | (void) putbq(q, mp); |
| 1977 | goto breakout; |
| 1978 | } else { |
| 1979 | /* |
| 1980 | * otherwise add data to ioblock and free mblk |
| 1981 | */ |
| 1982 | bcopy(mp->b_rptr, my_ioblock, len); |
| 1983 | my_ioblock += len; |
| 1984 | total_len += len; |
| 1985 | start_addr = (caddr_t)pp->ioblock; |
| 1986 | freemsg(mp); |
| 1987 | } |
| 1988 | break; |
| 1989 | |
| 1990 | case M_IOCTL: |
| 1991 | /* |
| 1992 | * Assume a simple loopback test: an application |
| 1993 | * writes data into the TFIFO, reads it using |
| 1994 | * ECPPIOC_GETDATA and compares. If the transfer |
| 1995 | * times out (which is only possible on Grover), |
| 1996 | * the ioctl might be processed before the data |
| 1997 | * got to the TFIFO, which leads to miscompare. |
| 1998 | * So if we met ioctl, postpone it until after xfer. |
| 1999 | */ |
| 2000 | if (total_len > 0) { |
| 2001 | (void) putbq(q, mp); |
| 2002 | goto breakout; |
| 2003 | } |
| 2004 | |
| 2005 | ecpp_error(pp->dip, "M_IOCTL.\n"); |
| 2006 | |
| 2007 | mutex_exit(&pp->umutex); |
| 2008 | |
| 2009 | ecpp_putioc(q, mp); |
| 2010 | |
| 2011 | mutex_enter(&pp->umutex); |
| 2012 | |
| 2013 | break; |
| 2014 | |
| 2015 | case M_IOCDATA: { |
| 2016 | struct copyresp *csp = (struct copyresp *)mp->b_rptr; |
| 2017 | |
| 2018 | ecpp_error(pp->dip, "M_IOCDATA\n"); |
| 2019 | |
| 2020 | /* |
| 2021 | * If copy request failed, quit now |
| 2022 | */ |
| 2023 | if (csp->cp_rval != 0) { |
| 2024 | freemsg(mp); |
| 2025 | break; |
| 2026 | } |
| 2027 | |
| 2028 | switch (csp->cp_cmd) { |
| 2029 | case ECPPIOC_SETPARMS: |
| 2030 | case ECPPIOC_SETREGS: |
| 2031 | case ECPPIOC_SETPORT: |
| 2032 | case ECPPIOC_SETDATA: |
| 2033 | case ECPPIOC_GETDEVID: |
| 2034 | case PRNIOC_SET_IFCAP: |
| 2035 | case PRNIOC_GET_1284_DEVID: |
| 2036 | case PRNIOC_SET_TIMEOUTS: |
| 2037 | case PRNIOC_GET_IFINFO: |
| 2038 | ecpp_srvioc(q, mp); |
| 2039 | break; |
| 2040 | |
| 2041 | default: |
| 2042 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2043 | break; |
| 2044 | } |
| 2045 | |
| 2046 | break; |
| 2047 | } |
| 2048 | |
| 2049 | case M_CTL: |
| 2050 | if (pp->e_busy != ECPP_IDLE) { |
| 2051 | ecpp_error(pp->dip, "wsrv: M_CTL postponed\n"); |
| 2052 | (void) putbq(q, mp); |
| 2053 | goto breakout; |
| 2054 | } else { |
| 2055 | ecpp_error(pp->dip, "wsrv: M_CTL\n"); |
| 2056 | } |
| 2057 | |
| 2058 | /* sanity check */ |
| 2059 | if ((mp->b_wptr - mp->b_rptr != sizeof (int)) || |
| 2060 | (*(int *)mp->b_rptr != ECPP_BACKCHANNEL)) { |
| 2061 | ecpp_error(pp->dip, "wsrv: bogus M_CTL"); |
| 2062 | freemsg(mp); |
| 2063 | break; |
| 2064 | } else { |
| 2065 | freemsg(mp); |
| 2066 | } |
| 2067 | |
| 2068 | /* This was a backchannel request */ |
| 2069 | (void) ecpp_peripheral2host(pp); |
| 2070 | |
| 2071 | /* exit if transfer have been initiated */ |
| 2072 | if (pp->e_busy == ECPP_BUSY) { |
| 2073 | goto breakout; |
| 2074 | } |
| 2075 | break; |
| 2076 | |
| 2077 | case M_READ: |
| 2078 | pp->nread += *(size_t *)mp->b_rptr; |
| 2079 | freemsg(mp); |
| 2080 | ecpp_error(pp->dip, "wsrv: M_READ %d", pp->nread); |
| 2081 | break; |
| 2082 | |
| 2083 | default: |
| 2084 | ecpp_error(pp->dip, "wsrv: should never get here\n"); |
| 2085 | freemsg(mp); |
| 2086 | break; |
| 2087 | } |
| 2088 | } |
| 2089 | breakout: |
| 2090 | /* |
| 2091 | * If total_len > 0 then start the transfer, otherwise goto idle state |
| 2092 | */ |
| 2093 | if (total_len > 0) { |
| 2094 | ecpp_error(pp->dip, "wsrv:starting: total_len=%d\n", total_len); |
| 2095 | pp->e_busy = ECPP_BUSY; |
| 2096 | ecpp_start(pp, start_addr, total_len); |
| 2097 | } else { |
| 2098 | ecpp_error(pp->dip, "wsrv:finishing: ebusy=%x\n", pp->e_busy); |
| 2099 | |
| 2100 | /* IDLE if xfer_timeout, or FIFO_EMPTY */ |
| 2101 | if (pp->e_busy == ECPP_IDLE) { |
| 2102 | (void) ecpp_idle_phase(pp); |
| 2103 | cv_signal(&pp->pport_cv); /* signal ecpp_close() */ |
| 2104 | } |
| 2105 | } |
| 2106 | |
| 2107 | mutex_exit(&pp->umutex); |
| 2108 | return (1); |
| 2109 | } |
| 2110 | |
| 2111 | /* |
| 2112 | * Ioctl processor for queued ioctl data transfer messages. |
| 2113 | */ |
| 2114 | static void |
| 2115 | ecpp_srvioc(queue_t *q, mblk_t *mp) |
| 2116 | { |
| 2117 | struct iocblk *iocbp; |
| 2118 | struct ecppunit *pp; |
| 2119 | |
| 2120 | iocbp = (struct iocblk *)mp->b_rptr; |
| 2121 | pp = (struct ecppunit *)q->q_ptr; |
| 2122 | |
| 2123 | switch (iocbp->ioc_cmd) { |
| 2124 | case ECPPIOC_SETPARMS: { |
| 2125 | struct ecpp_transfer_parms *xferp; |
| 2126 | |
| 2127 | xferp = (struct ecpp_transfer_parms *)mp->b_cont->b_rptr; |
| 2128 | |
| 2129 | if (xferp->write_timeout <= 0 || |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2130 | xferp->write_timeout >= ECPP_MAX_TIMEOUT) { |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2131 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2132 | break; |
| 2133 | } |
| 2134 | |
| 2135 | if (!((xferp->mode == ECPP_CENTRONICS) || |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2136 | (xferp->mode == ECPP_COMPAT_MODE) || |
| 2137 | (xferp->mode == ECPP_NIBBLE_MODE) || |
| 2138 | (xferp->mode == ECPP_ECP_MODE) || |
| 2139 | (xferp->mode == ECPP_DIAG_MODE))) { |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2140 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2141 | break; |
| 2142 | } |
| 2143 | |
| 2144 | pp->xfer_parms = *xferp; |
| 2145 | pp->prn_timeouts.tmo_forward = pp->xfer_parms.write_timeout; |
| 2146 | |
| 2147 | ecpp_error(pp->dip, "srvioc: current_mode =%x new mode=%x\n", |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2148 | pp->current_mode, pp->xfer_parms.mode); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2149 | |
| 2150 | if (ecpp_mode_negotiation(pp, pp->xfer_parms.mode) == FAILURE) { |
| 2151 | ecpp_nack_ioctl(q, mp, EPROTONOSUPPORT); |
| 2152 | } else { |
| 2153 | /* |
| 2154 | * mode nego was a success. If nibble mode check |
| 2155 | * back channel and set into REVIDLE. |
| 2156 | */ |
| 2157 | if ((pp->current_mode == ECPP_NIBBLE_MODE) && |
| 2158 | (read_nibble_backchan(pp) == FAILURE)) { |
| 2159 | /* |
| 2160 | * problems reading the backchannel |
| 2161 | * returned to centronics; |
| 2162 | * ioctl fails. |
| 2163 | */ |
| 2164 | ecpp_nack_ioctl(q, mp, EPROTONOSUPPORT); |
| 2165 | break; |
| 2166 | } |
| 2167 | |
| 2168 | ecpp_ack_ioctl(q, mp); |
| 2169 | } |
| 2170 | if (pp->current_mode != ECPP_DIAG_MODE) { |
| 2171 | pp->port = ECPP_PORT_DMA; |
| 2172 | } else { |
| 2173 | pp->port = ECPP_PORT_PIO; |
| 2174 | } |
| 2175 | |
| 2176 | pp->xfer_parms.mode = pp->current_mode; |
| 2177 | |
| 2178 | break; |
| 2179 | } |
| 2180 | |
| 2181 | case ECPPIOC_SETREGS: { |
| 2182 | struct ecpp_regs *rg; |
| 2183 | uint8_t dcr; |
| 2184 | |
| 2185 | rg = (struct ecpp_regs *)mp->b_cont->b_rptr; |
| 2186 | |
| 2187 | /* must be in diagnostic mode for these commands to work */ |
| 2188 | if (pp->current_mode != ECPP_DIAG_MODE) { |
| 2189 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2190 | break; |
| 2191 | } |
| 2192 | |
| 2193 | /* bits 4-7 must be 1 or return EINVAL */ |
| 2194 | if ((rg->dcr & ECPP_SETREGS_DCR_MASK) != |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2195 | ECPP_SETREGS_DCR_MASK) { |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2196 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2197 | break; |
| 2198 | } |
| 2199 | |
| 2200 | /* get the old dcr */ |
| 2201 | dcr = DCR_READ(pp) & ~ECPP_REV_DIR; |
| 2202 | /* get the new dcr */ |
| 2203 | dcr = (dcr & ECPP_SETREGS_DCR_MASK) | |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2204 | (rg->dcr & ~ECPP_SETREGS_DCR_MASK); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2205 | DCR_WRITE(pp, dcr); |
| 2206 | ecpp_error(pp->dip, "ECPPIOC_SETREGS:dcr=%x\n", dcr); |
| 2207 | ecpp_ack_ioctl(q, mp); |
| 2208 | break; |
| 2209 | } |
| 2210 | |
| 2211 | case ECPPIOC_SETPORT: { |
| 2212 | uchar_t *port; |
| 2213 | |
| 2214 | port = (uchar_t *)mp->b_cont->b_rptr; |
| 2215 | |
| 2216 | /* must be in diagnostic mode for these commands to work */ |
| 2217 | if (pp->current_mode != ECPP_DIAG_MODE) { |
| 2218 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2219 | break; |
| 2220 | } |
| 2221 | |
| 2222 | switch (*port) { |
| 2223 | case ECPP_PORT_PIO: |
| 2224 | /* put superio into PIO mode */ |
| 2225 | ECR_WRITE(pp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2226 | ECR_mode_001 | ECPP_INTR_MASK | ECPP_INTR_SRV); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2227 | pp->port = *port; |
| 2228 | ecpp_ack_ioctl(q, mp); |
| 2229 | break; |
| 2230 | |
| 2231 | case ECPP_PORT_TDMA: |
| 2232 | ecpp_error(pp->dip, "SETPORT: to TDMA\n"); |
| 2233 | pp->tfifo_intr = 1; |
| 2234 | /* change to mode 110 */ |
| 2235 | ECR_WRITE(pp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2236 | ECR_mode_110 | ECPP_INTR_MASK | ECPP_INTR_SRV); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2237 | pp->port = *port; |
| 2238 | ecpp_ack_ioctl(q, mp); |
| 2239 | break; |
| 2240 | |
| 2241 | default: |
| 2242 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2243 | } |
| 2244 | |
| 2245 | break; |
| 2246 | } |
| 2247 | |
| 2248 | case ECPPIOC_SETDATA: { |
| 2249 | uchar_t *data; |
| 2250 | |
| 2251 | data = (uchar_t *)mp->b_cont->b_rptr; |
| 2252 | |
| 2253 | /* must be in diagnostic mode for these commands to work */ |
| 2254 | if (pp->current_mode != ECPP_DIAG_MODE) { |
| 2255 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2256 | break; |
| 2257 | } |
| 2258 | |
| 2259 | switch (pp->port) { |
| 2260 | case ECPP_PORT_PIO: |
| 2261 | DATAR_WRITE(pp, *data); |
| 2262 | ecpp_ack_ioctl(q, mp); |
| 2263 | break; |
| 2264 | |
| 2265 | case ECPP_PORT_TDMA: |
| 2266 | TFIFO_WRITE(pp, *data); |
| 2267 | ecpp_ack_ioctl(q, mp); |
| 2268 | break; |
| 2269 | |
| 2270 | default: |
| 2271 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2272 | } |
| 2273 | |
| 2274 | break; |
| 2275 | } |
| 2276 | |
| 2277 | case ECPPIOC_GETDEVID: { |
| 2278 | struct copyresp *csp; |
| 2279 | struct ecpp_copystate *stp; |
| 2280 | struct ecpp_device_id *dp; |
| 2281 | struct ecpp_device_id id; |
| 2282 | |
| 2283 | csp = (struct copyresp *)mp->b_rptr; |
| 2284 | stp = (struct ecpp_copystate *)csp->cp_private->b_rptr; |
| 2285 | dp = (struct ecpp_device_id *)mp->b_cont->b_rptr; |
| 2286 | |
| 2287 | #ifdef _MULTI_DATAMODEL |
| 2288 | if (IOC_CONVERT_FROM(iocbp) == IOC_ILP32) { |
| 2289 | struct ecpp_device_id32 *dp32; |
| 2290 | |
| 2291 | dp32 = (struct ecpp_device_id32 *)dp; |
| 2292 | id.mode = dp32->mode; |
| 2293 | id.len = dp32->len; |
| 2294 | id.addr = (char *)(uintptr_t)dp32->addr; |
| 2295 | } else { |
| 2296 | #endif /* _MULTI_DATAMODEL */ |
| 2297 | id = *dp; |
| 2298 | #ifdef _MULTI_DATAMODEL |
| 2299 | } |
| 2300 | #endif /* _MULTI_DATAMODEL */ |
| 2301 | |
| 2302 | ecpp_srvioc_devid(q, mp, &id, &stp->un.devid.rlen); |
| 2303 | break; |
| 2304 | } |
| 2305 | |
| 2306 | case PRNIOC_GET_1284_DEVID: { |
| 2307 | struct copyresp *csp; |
| 2308 | struct ecpp_copystate *stp; |
| 2309 | struct prn_1284_device_id *dp; |
| 2310 | struct ecpp_device_id id; |
| 2311 | |
| 2312 | csp = (struct copyresp *)mp->b_rptr; |
| 2313 | stp = (struct ecpp_copystate *)csp->cp_private->b_rptr; |
| 2314 | dp = (struct prn_1284_device_id *)mp->b_cont->b_rptr; |
| 2315 | |
| 2316 | /* imitate struct ecpp_device_id */ |
| 2317 | id.mode = ECPP_NIBBLE_MODE; |
| 2318 | |
| 2319 | #ifdef _MULTI_DATAMODEL |
| 2320 | if (IOC_CONVERT_FROM(iocbp) == IOC_ILP32) { |
| 2321 | struct prn_1284_device_id32 *dp32; |
| 2322 | |
| 2323 | dp32 = (struct prn_1284_device_id32 *)dp; |
| 2324 | id.len = dp32->id_len; |
| 2325 | id.addr = (char *)(uintptr_t)dp32->id_data; |
| 2326 | } else { |
| 2327 | #endif /* _MULTI_DATAMODEL */ |
| 2328 | id.len = dp->id_len; |
| 2329 | id.addr = (char *)dp->id_data; |
| 2330 | #ifdef _MULTI_DATAMODEL |
| 2331 | } |
| 2332 | #endif /* _MULTI_DATAMODEL */ |
| 2333 | |
| 2334 | ecpp_srvioc_devid(q, mp, &id, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2335 | (int *)&stp->un.prn_devid.id_rlen); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2336 | break; |
| 2337 | } |
| 2338 | |
| 2339 | case PRNIOC_SET_IFCAP: { |
| 2340 | uint_t ifcap, new_ifcap; |
| 2341 | |
| 2342 | ifcap = ecpp_get_prn_ifcap(pp); |
| 2343 | new_ifcap = *(uint_t *)mp->b_cont->b_rptr; |
| 2344 | |
| 2345 | if (ifcap == new_ifcap) { |
| 2346 | ecpp_ack_ioctl(q, mp); |
| 2347 | break; |
| 2348 | } |
| 2349 | |
| 2350 | /* only changing PRN_BIDI is supported */ |
| 2351 | if ((ifcap ^ new_ifcap) & ~PRN_BIDI) { |
| 2352 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2353 | break; |
| 2354 | } |
| 2355 | |
| 2356 | if (new_ifcap & PRN_BIDI) { /* go bidirectional */ |
| 2357 | ecpp_default_negotiation(pp); |
| 2358 | } else { /* go unidirectional */ |
| 2359 | (void) ecpp_mode_negotiation(pp, ECPP_CENTRONICS); |
| 2360 | } |
| 2361 | |
| 2362 | ecpp_ack_ioctl(q, mp); |
| 2363 | break; |
| 2364 | } |
| 2365 | |
| 2366 | case PRNIOC_SET_TIMEOUTS: { |
| 2367 | struct prn_timeouts *prn_timeouts; |
| 2368 | |
| 2369 | prn_timeouts = (struct prn_timeouts *)mp->b_cont->b_rptr; |
| 2370 | |
| 2371 | if (prn_timeouts->tmo_forward > ECPP_MAX_TIMEOUT) { |
| 2372 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2373 | break; |
| 2374 | } |
| 2375 | |
| 2376 | pp->prn_timeouts = *prn_timeouts; |
| 2377 | pp->xfer_parms.write_timeout = (int)prn_timeouts->tmo_forward; |
| 2378 | |
| 2379 | ecpp_ack_ioctl(q, mp); |
| 2380 | break; |
| 2381 | } |
| 2382 | |
| 2383 | case PRNIOC_GET_IFINFO: |
| 2384 | ecpp_srvioc_prnif(q, mp); |
| 2385 | break; |
| 2386 | |
| 2387 | default: /* unexpected ioctl type */ |
| 2388 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2389 | break; |
| 2390 | } |
| 2391 | } |
| 2392 | |
| 2393 | static void |
| 2394 | ecpp_srvioc_devid(queue_t *q, mblk_t *mp, struct ecpp_device_id *id, int *rlen) |
| 2395 | { |
| 2396 | struct ecppunit *pp; |
| 2397 | struct copyresp *csp; |
| 2398 | struct ecpp_copystate *stp; |
| 2399 | int error; |
| 2400 | int len; |
| 2401 | int mode; |
| 2402 | mblk_t *datamp; |
| 2403 | |
| 2404 | pp = (struct ecppunit *)q->q_ptr; |
| 2405 | csp = (struct copyresp *)mp->b_rptr; |
| 2406 | stp = (struct ecpp_copystate *)csp->cp_private->b_rptr; |
| 2407 | mode = id->mode; |
| 2408 | |
| 2409 | /* check arguments */ |
| 2410 | if ((mode < ECPP_CENTRONICS) || (mode > ECPP_ECP_MODE)) { |
| 2411 | ecpp_error(pp->dip, "ecpp_srvioc_devid: mode=%x, len=%x\n", |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2412 | mode, id->len); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2413 | ecpp_nack_ioctl(q, mp, EINVAL); |
| 2414 | return; |
| 2415 | } |
| 2416 | |
| 2417 | /* Currently only Nibble mode is supported */ |
| 2418 | if (mode != ECPP_NIBBLE_MODE) { |
| 2419 | ecpp_nack_ioctl(q, mp, EPROTONOSUPPORT); |
| 2420 | return; |
| 2421 | } |
| 2422 | |
| 2423 | if ((id->addr == NULL) && (id->len != 0)) { |
| 2424 | ecpp_nack_ioctl(q, mp, EFAULT); |
| 2425 | return; |
| 2426 | } |
| 2427 | |
| 2428 | /* read device ID length */ |
| 2429 | if (error = ecpp_getdevid(pp, NULL, &len, mode)) { |
| 2430 | ecpp_nack_ioctl(q, mp, error); |
| 2431 | goto breakout; |
| 2432 | } |
| 2433 | |
| 2434 | /* don't take into account two length bytes */ |
| 2435 | len -= 2; |
| 2436 | *rlen = len; |
| 2437 | |
| 2438 | /* limit transfer to user buffer length */ |
| 2439 | if (id->len < len) { |
| 2440 | len = id->len; |
| 2441 | } |
| 2442 | |
| 2443 | if (len == 0) { |
| 2444 | /* just return rlen */ |
| 2445 | stp->state = ECPP_ADDROUT; |
| 2446 | ecpp_wput_iocdata_devid(q, mp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2447 | (uintptr_t)rlen - (uintptr_t)&stp->un); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2448 | goto breakout; |
| 2449 | } |
| 2450 | |
| 2451 | if ((datamp = allocb(len, BPRI_MED)) == NULL) { |
| 2452 | ecpp_nack_ioctl(q, mp, ENOSR); |
| 2453 | goto breakout; |
| 2454 | } |
| 2455 | |
| 2456 | /* read ID string */ |
| 2457 | error = ecpp_getdevid(pp, datamp->b_rptr, &len, mode); |
| 2458 | if (error) { |
| 2459 | freemsg(datamp); |
| 2460 | ecpp_nack_ioctl(q, mp, error); |
| 2461 | goto breakout; |
| 2462 | } else { |
| 2463 | datamp->b_wptr += len; |
| 2464 | |
| 2465 | stp->state = ECPP_ADDROUT; |
| 2466 | mcopyout(mp, csp->cp_private, len, id->addr, datamp); |
| 2467 | qreply(q, mp); |
| 2468 | } |
| 2469 | |
| 2470 | return; |
| 2471 | |
| 2472 | breakout: |
| 2473 | (void) ecpp_1284_termination(pp); |
| 2474 | } |
| 2475 | |
| 2476 | /* |
| 2477 | * PRNIOC_GET_IFINFO: return prnio interface info string |
| 2478 | */ |
| 2479 | static void |
| 2480 | ecpp_srvioc_prnif(queue_t *q, mblk_t *mp) |
| 2481 | { |
| 2482 | struct copyresp *csp; |
| 2483 | struct ecpp_copystate *stp; |
| 2484 | uint_t len; |
| 2485 | struct prn_interface_info *ip; |
| 2486 | struct prn_interface_info info; |
| 2487 | mblk_t *datamp; |
| 2488 | #ifdef _MULTI_DATAMODEL |
| 2489 | struct iocblk *iocbp = (struct iocblk *)mp->b_rptr; |
| 2490 | #endif |
| 2491 | |
| 2492 | csp = (struct copyresp *)mp->b_rptr; |
| 2493 | stp = (struct ecpp_copystate *)csp->cp_private->b_rptr; |
| 2494 | ip = (struct prn_interface_info *)mp->b_cont->b_rptr; |
| 2495 | |
| 2496 | #ifdef _MULTI_DATAMODEL |
| 2497 | if (IOC_CONVERT_FROM(iocbp) == IOC_ILP32) { |
| 2498 | struct prn_interface_info32 *ip32; |
| 2499 | |
| 2500 | ip32 = (struct prn_interface_info32 *)ip; |
| 2501 | info.if_len = ip32->if_len; |
| 2502 | info.if_data = (char *)(uintptr_t)ip32->if_data; |
| 2503 | } else { |
| 2504 | #endif /* _MULTI_DATAMODEL */ |
| 2505 | info = *ip; |
| 2506 | #ifdef _MULTI_DATAMODEL |
| 2507 | } |
| 2508 | #endif /* _MULTI_DATAMODEL */ |
| 2509 | |
| 2510 | len = strlen(prn_ifinfo); |
| 2511 | stp->un.prn_if.if_rlen = len; |
| 2512 | stp->state = ECPP_ADDROUT; |
| 2513 | |
| 2514 | /* check arguments */ |
| 2515 | if ((info.if_data == NULL) && (info.if_len != 0)) { |
| 2516 | ecpp_nack_ioctl(q, mp, EFAULT); |
| 2517 | return; |
| 2518 | } |
| 2519 | |
| 2520 | if (info.if_len == 0) { |
| 2521 | /* just copyout rlen */ |
| 2522 | ecpp_wput_iocdata_devid(q, mp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2523 | offsetof(struct prn_interface_info, if_rlen)); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2524 | return; |
| 2525 | } |
| 2526 | |
| 2527 | /* if needed, trim to the buffer size */ |
| 2528 | if (len > info.if_len) { |
| 2529 | len = info.if_len; |
| 2530 | } |
| 2531 | |
| 2532 | if ((datamp = allocb(len, BPRI_MED)) == NULL) { |
| 2533 | ecpp_nack_ioctl(q, mp, ENOSR); |
| 2534 | return; |
| 2535 | } |
| 2536 | |
| 2537 | bcopy(&prn_ifinfo[0], datamp->b_wptr, len); |
| 2538 | datamp->b_wptr += len; |
| 2539 | |
| 2540 | mcopyout(mp, csp->cp_private, len, info.if_data, datamp); |
| 2541 | qreply(q, mp); |
| 2542 | } |
| 2543 | |
| 2544 | static void |
| 2545 | ecpp_flush(struct ecppunit *pp, int cmd) |
| 2546 | { |
| 2547 | queue_t *q; |
| 2548 | uint8_t ecr, dcr; |
| 2549 | timeout_id_t timeout_id, fifo_timer_id, wsrv_timer_id; |
| 2550 | |
| 2551 | ASSERT(mutex_owned(&pp->umutex)); |
| 2552 | |
| 2553 | if (!(cmd & FWRITE)) { |
| 2554 | return; |
| 2555 | } |
| 2556 | |
| 2557 | q = pp->writeq; |
| 2558 | timeout_id = fifo_timer_id = wsrv_timer_id = 0; |
| 2559 | |
| 2560 | ecpp_error(pp->dip, "ecpp_flush e_busy=%x\n", pp->e_busy); |
| 2561 | |
| 2562 | /* if there is an ongoing DMA, it needs to be turned off. */ |
| 2563 | switch (pp->e_busy) { |
| 2564 | case ECPP_BUSY: |
| 2565 | /* |
| 2566 | * Change the port status to ECPP_FLUSH to |
| 2567 | * indicate to ecpp_wsrv that the wq is being flushed. |
| 2568 | */ |
| 2569 | pp->e_busy = ECPP_FLUSH; |
| 2570 | |
| 2571 | /* |
| 2572 | * dma_cancelled indicates to ecpp_isr() that we have |
| 2573 | * turned off the DMA. Since the mutex is held, ecpp_isr() |
| 2574 | * may be blocked. Once ecpp_flush() finishes and ecpp_isr() |
| 2575 | * gains the mutex, ecpp_isr() will have a _reset_ DMAC. Most |
| 2576 | * significantly, the DMAC will be reset after ecpp_isr() was |
| 2577 | * invoked. Therefore we need to have a flag "dma_cancelled" |
| 2578 | * to signify when the described condition has occured. If |
| 2579 | * ecpp_isr() notes a dma_cancelled, it will ignore the DMAC csr |
| 2580 | * and simply claim the interupt. |
| 2581 | */ |
| 2582 | |
| 2583 | pp->dma_cancelled = TRUE; |
| 2584 | |
| 2585 | /* either DMA or PIO transfer */ |
| 2586 | if (COMPAT_DMA(pp) || |
| 2587 | (pp->current_mode == ECPP_ECP_MODE) || |
| 2588 | (pp->current_mode == ECPP_DIAG_MODE)) { |
| 2589 | /* |
| 2590 | * if the bcr is zero, then DMA is complete and |
| 2591 | * we are waiting for the fifo to drain. Therefore, |
| 2592 | * turn off dma. |
| 2593 | */ |
| 2594 | if (ECPP_DMA_STOP(pp, NULL) == FAILURE) { |
| 2595 | ecpp_error(pp->dip, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2596 | "ecpp_flush: dma_stop failed.\n"); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2597 | } |
| 2598 | |
| 2599 | /* |
| 2600 | * If the status of the port is ECPP_BUSY, |
| 2601 | * the DMA is stopped by either explicitly above, or by |
| 2602 | * ecpp_isr() but the FIFO hasn't drained yet. In either |
| 2603 | * case, we need to unbind the dma mappings. |
| 2604 | */ |
| 2605 | if (ddi_dma_unbind_handle( |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2606 | pp->dma_handle) != DDI_SUCCESS) |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2607 | ecpp_error(pp->dip, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2608 | "ecpp_flush: unbind failed.\n"); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2609 | |
| 2610 | if (pp->msg != NULL) { |
| 2611 | freemsg(pp->msg); |
| 2612 | pp->msg = NULL; |
| 2613 | } |
| 2614 | } else { |
| 2615 | /* |
| 2616 | * PIO transfer: disable nAck interrups |
| 2617 | */ |
| 2618 | dcr = DCR_READ(pp); |
| 2619 | dcr &= ~(ECPP_REV_DIR | ECPP_INTR_EN); |
| 2620 | DCR_WRITE(pp, dcr); |
| 2621 | ECPP_MASK_INTR(pp); |
| 2622 | } |
| 2623 | |
| 2624 | /* |
| 2625 | * The transfer is cleaned up. There may or may not be data |
| 2626 | * in the fifo. We don't care at this point. Ie. SuperIO may |
| 2627 | * transfer the remaining bytes in the fifo or not. it doesn't |
| 2628 | * matter. All that is important at this stage is that no more |
| 2629 | * fifo timers are started. |
| 2630 | */ |
| 2631 | |
| 2632 | timeout_id = pp->timeout_id; |
| 2633 | fifo_timer_id = pp->fifo_timer_id; |
| 2634 | pp->timeout_id = pp->fifo_timer_id = 0; |
| 2635 | pp->softintr_pending = 0; |
| 2636 | |
| 2637 | break; |
| 2638 | |
| 2639 | case ECPP_ERR: |
| 2640 | /* |
| 2641 | * Change the port status to ECPP_FLUSH to |
| 2642 | * indicate to ecpp_wsrv that the wq is being flushed. |
| 2643 | */ |
| 2644 | pp->e_busy = ECPP_FLUSH; |
| 2645 | |
| 2646 | /* |
| 2647 | * Most likely there are mblks in the queue, |
| 2648 | * but the driver can not transmit because |
| 2649 | * of the bad port status. In this case, |
| 2650 | * ecpp_flush() should make sure ecpp_wsrv_timer() |
| 2651 | * is turned off. |
| 2652 | */ |
| 2653 | wsrv_timer_id = pp->wsrv_timer_id; |
| 2654 | pp->wsrv_timer_id = 0; |
| 2655 | |
| 2656 | break; |
| 2657 | |
| 2658 | case ECPP_IDLE: |
| 2659 | /* No work to do. Ready to flush */ |
| 2660 | break; |
| 2661 | |
| 2662 | default: |
| 2663 | ecpp_error(pp->dip, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2664 | "ecpp_flush: illegal state %x\n", pp->e_busy); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2665 | } |
| 2666 | |
| 2667 | /* in DIAG mode clear TFIFO if needed */ |
| 2668 | if (pp->current_mode == ECPP_DIAG_MODE) { |
| 2669 | ecr = ECR_READ(pp); |
| 2670 | if (!(ecr & ECPP_FIFO_EMPTY)) { |
| 2671 | ECR_WRITE(pp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2672 | ECPP_INTR_SRV | ECPP_INTR_MASK | ECR_mode_001); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2673 | ECR_WRITE(pp, ecr); |
| 2674 | } |
| 2675 | } |
| 2676 | |
| 2677 | /* Discard all messages on the output queue. */ |
| 2678 | flushq(q, FLUSHDATA); |
| 2679 | |
| 2680 | /* The port is no longer flushing or dma'ing for that matter. */ |
| 2681 | pp->e_busy = ECPP_IDLE; |
| 2682 | |
| 2683 | /* Set the right phase */ |
| 2684 | if (pp->current_mode == ECPP_ECP_MODE) { |
| 2685 | if (pp->current_phase == ECPP_PHASE_ECP_REV_XFER) { |
| 2686 | pp->current_phase = ECPP_PHASE_ECP_REV_IDLE; |
| 2687 | } else { |
| 2688 | pp->current_phase = ECPP_PHASE_ECP_FWD_IDLE; |
| 2689 | } |
| 2690 | } |
| 2691 | |
| 2692 | /* cancel timeouts if any */ |
| 2693 | mutex_exit(&pp->umutex); |
| 2694 | |
| 2695 | if (timeout_id) { |
| 2696 | (void) untimeout(timeout_id); |
| 2697 | } |
| 2698 | if (fifo_timer_id) { |
| 2699 | (void) untimeout(fifo_timer_id); |
| 2700 | } |
| 2701 | if (wsrv_timer_id) { |
| 2702 | (void) untimeout(wsrv_timer_id); |
| 2703 | } |
| 2704 | |
| 2705 | mutex_enter(&pp->umutex); |
| 2706 | |
| 2707 | cv_signal(&pp->pport_cv); /* wake up ecpp_close() */ |
| 2708 | } |
| 2709 | |
| 2710 | static void |
| 2711 | ecpp_start(struct ecppunit *pp, caddr_t addr, size_t len) |
| 2712 | { |
| 2713 | ASSERT(mutex_owned(&pp->umutex)); |
| 2714 | ASSERT(pp->e_busy == ECPP_BUSY); |
| 2715 | |
| 2716 | ecpp_error(pp->dip, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2717 | "ecpp_start:current_mode=%x,current_phase=%x,ecr=%x,len=%d\n", |
| 2718 | pp->current_mode, pp->current_phase, ECR_READ(pp), len); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2719 | |
| 2720 | pp->dma_dir = DDI_DMA_WRITE; /* this is a forward transfer */ |
| 2721 | |
| 2722 | switch (pp->current_mode) { |
| 2723 | case ECPP_NIBBLE_MODE: |
| 2724 | (void) ecpp_1284_termination(pp); |
| 2725 | |
| 2726 | /* After termination we are either Compatible or Centronics */ |
| 2727 | |
| 2728 | /* FALLTHRU */ |
| 2729 | |
| 2730 | case ECPP_CENTRONICS: |
| 2731 | case ECPP_COMPAT_MODE: |
| 2732 | if (pp->io_mode == ECPP_DMA) { |
| 2733 | if (ecpp_init_dma_xfer(pp, addr, len) == FAILURE) { |
| 2734 | return; |
| 2735 | } |
| 2736 | } else { |
| 2737 | /* PIO mode */ |
| 2738 | if (ecpp_prep_pio_xfer(pp, addr, len) == FAILURE) { |
| 2739 | return; |
| 2740 | } |
| 2741 | (void) ecpp_pio_writeb(pp); |
| 2742 | } |
| 2743 | break; |
| 2744 | |
| 2745 | case ECPP_DIAG_MODE: { |
| 2746 | int oldlen; |
| 2747 | |
| 2748 | /* put superio into TFIFO mode, if not already */ |
| 2749 | ECR_WRITE(pp, ECPP_INTR_SRV | ECPP_INTR_MASK | ECR_mode_110); |
| 2750 | /* |
| 2751 | * DMA would block if the TFIFO is not empty |
| 2752 | * if by this moment nobody read these bytes, they`re gone |
| 2753 | */ |
| 2754 | drv_usecwait(1); |
| 2755 | if (!(ECR_READ(pp) & ECPP_FIFO_EMPTY)) { |
| 2756 | ecpp_error(pp->dip, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2757 | "ecpp_start: TFIFO not empty, clearing\n"); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2758 | ECR_WRITE(pp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2759 | ECPP_INTR_SRV | ECPP_INTR_MASK | ECR_mode_001); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2760 | ECR_WRITE(pp, |
Sherry Moore | 1939740 | 2008-09-22 16:30:26 -0700 | [diff] [blame] | 2761 | ECPP_INTR_SRV | ECPP_INTR_MASK | ECR_mode_110); |
stevel@tonic-gate | 7c478bd | 2005-06-14 00:00:00 -0700 | [diff] [blame] | 2762 | } |
| 2763 | |
| 2764 | /* we can DMA at most 16 bytes into TFIFO */ |
| 2765 | oldlen = len; |
| 2766 | if (len > ECPP_FIFO_SZ) { |
| 2767 | len = ECPP_FIFO_SZ; |
| 2768 | } |
| 2769 | |
| 2770 | if (ecpp_init_dma_xfer(pp, addr, len) == FAILURE) { |
| 2771 | |