167646539SMike Smith /*- 2*4d846d26SWarner Losh * SPDX-License-Identifier: BSD-2-Clause 3718cf2ccSPedro F. Giffuni * 4c264e80fSNicolas Souchu * Copyright (c) 2001 Alcove - Nicolas Souchu 567646539SMike Smith * All rights reserved. 667646539SMike Smith * 767646539SMike Smith * Redistribution and use in source and binary forms, with or without 867646539SMike Smith * modification, are permitted provided that the following conditions 967646539SMike Smith * are met: 1067646539SMike Smith * 1. Redistributions of source code must retain the above copyright 1167646539SMike Smith * notice, this list of conditions and the following disclaimer. 1267646539SMike Smith * 2. Redistributions in binary form must reproduce the above copyright 1367646539SMike Smith * notice, this list of conditions and the following disclaimer in the 1467646539SMike Smith * documentation and/or other materials provided with the distribution. 1567646539SMike Smith * 1667646539SMike Smith * THIS SOFTWARE IS PROVIDED BY THE AUTHOR AND CONTRIBUTORS ``AS IS'' AND 1767646539SMike Smith * ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE 1867646539SMike Smith * IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE 1967646539SMike Smith * ARE DISCLAIMED. IN NO EVENT SHALL THE AUTHOR OR CONTRIBUTORS BE LIABLE 2067646539SMike Smith * FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL 2167646539SMike Smith * DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS 2267646539SMike Smith * OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) 2367646539SMike Smith * HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 2467646539SMike Smith * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY 2567646539SMike Smith * OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF 2667646539SMike Smith * SUCH DAMAGE. 2767646539SMike Smith * 2867646539SMike Smith */ 2946f3ff79SMike Smith #ifndef __PPCREG_H 3046f3ff79SMike Smith #define __PPCREG_H 3167646539SMike Smith 322067d312SJohn Baldwin #include <sys/_lock.h> 332067d312SJohn Baldwin #include <sys/_mutex.h> 342067d312SJohn Baldwin 3567646539SMike Smith /* 3667646539SMike Smith * Parallel Port Chipset type. 3767646539SMike Smith */ 38af548787SNicolas Souchu #define SMC_LIKE 0 39af548787SNicolas Souchu #define SMC_37C665GT 1 40af548787SNicolas Souchu #define SMC_37C666GT 2 41af548787SNicolas Souchu #define NS_PC87332 3 42af548787SNicolas Souchu #define NS_PC87306 4 43af548787SNicolas Souchu #define INTEL_820191AA 5 /* XXX not implemented */ 44af548787SNicolas Souchu #define GENERIC 6 45af548787SNicolas Souchu #define WINB_W83877F 7 46af548787SNicolas Souchu #define WINB_W83877AF 8 47af548787SNicolas Souchu #define WINB_UNKNOWN 9 48af548787SNicolas Souchu #define NS_PC87334 10 496a5be862SDoug Rabson #define SMC_37C935 11 50ac7ba926SDoug Rabson #define NS_PC87303 12 5167646539SMike Smith 5267646539SMike Smith /* 530f210c92SNicolas Souchu * Parallel Port Chipset Type. SMC versus GENERIC (others) 540f210c92SNicolas Souchu */ 550f210c92SNicolas Souchu #define PPC_TYPE_SMCLIKE 0 560f210c92SNicolas Souchu #define PPC_TYPE_GENERIC 1 570f210c92SNicolas Souchu 580f210c92SNicolas Souchu /* 5967646539SMike Smith * Generic structure to hold parallel port chipset info. 6067646539SMike Smith */ 6167646539SMike Smith struct ppc_data { 62ae6b868aSJohn Baldwin device_t ppc_dev; 630f210c92SNicolas Souchu int ppc_model; /* chipset model if detected */ 640f210c92SNicolas Souchu int ppc_type; /* generic or smclike chipset type */ 6567646539SMike Smith 6646f3ff79SMike Smith int ppc_mode; /* chipset current mode */ 6746f3ff79SMike Smith int ppc_avm; /* chipset available modes */ 68c264e80fSNicolas Souchu int ppc_dtm; /* chipset detected modes */ 6946f3ff79SMike Smith 70bc35c174SNicolas Souchu #define PPC_IRQ_NONE 0x0 71bc35c174SNicolas Souchu #define PPC_IRQ_nACK 0x1 72bc35c174SNicolas Souchu #define PPC_IRQ_DMA 0x2 73bc35c174SNicolas Souchu #define PPC_IRQ_FIFO 0x4 74bc35c174SNicolas Souchu #define PPC_IRQ_nFAULT 0x8 75bc35c174SNicolas Souchu int ppc_irqstat; /* remind irq settings */ 76bc35c174SNicolas Souchu 77bc35c174SNicolas Souchu #define PPC_DMA_INIT 0x01 78bc35c174SNicolas Souchu #define PPC_DMA_STARTED 0x02 79bc35c174SNicolas Souchu #define PPC_DMA_COMPLETE 0x03 80bc35c174SNicolas Souchu #define PPC_DMA_INTERRUPTED 0x04 81bc35c174SNicolas Souchu #define PPC_DMA_ERROR 0x05 82bc35c174SNicolas Souchu int ppc_dmastat; /* dma state */ 83bc35c174SNicolas Souchu int ppc_dmachan; /* dma channel */ 84bc35c174SNicolas Souchu int ppc_dmaflags; /* dma transfer flags */ 85bc35c174SNicolas Souchu caddr_t ppc_dmaddr; /* buffer address */ 86bc35c174SNicolas Souchu u_int ppc_dmacnt; /* count of bytes sent with dma */ 87cea4d875SMarcel Moolenaar void (*ppc_dmadone)(struct ppc_data*); 88bc35c174SNicolas Souchu 89bc35c174SNicolas Souchu #define PPC_PWORD_MASK 0x30 90bc35c174SNicolas Souchu #define PPC_PWORD_16 0x00 91bc35c174SNicolas Souchu #define PPC_PWORD_8 0x10 92bc35c174SNicolas Souchu #define PPC_PWORD_32 0x20 93bc35c174SNicolas Souchu char ppc_pword; /* PWord size */ 94bc35c174SNicolas Souchu short ppc_fifo; /* FIFO threshold */ 95bc35c174SNicolas Souchu 96bc35c174SNicolas Souchu short ppc_wthr; /* writeIntrThresold */ 97bc35c174SNicolas Souchu short ppc_rthr; /* readIntrThresold */ 98bc35c174SNicolas Souchu 990f210c92SNicolas Souchu char *ppc_ptr; /* microseq current pointer */ 1000f210c92SNicolas Souchu int ppc_accum; /* microseq accumulator */ 1010f210c92SNicolas Souchu int ppc_base; /* parallel port base address */ 1020f210c92SNicolas Souchu int ppc_epp; /* EPP mode (1.7 or 1.9) */ 1030f210c92SNicolas Souchu int ppc_irq; 10467646539SMike Smith 10567646539SMike Smith unsigned char ppc_flags; 10667646539SMike Smith 1070f210c92SNicolas Souchu device_t ppbus; /* parallel port chipset corresponding ppbus */ 1080f210c92SNicolas Souchu 1096a5be862SDoug Rabson int rid_irq, rid_drq, rid_ioport; 1106a5be862SDoug Rabson struct resource *res_irq, *res_drq, *res_ioport; 1110f210c92SNicolas Souchu 1120f210c92SNicolas Souchu void *intr_cookie; 1130f210c92SNicolas Souchu 1142067d312SJohn Baldwin ppc_intr_handler ppc_intr_hook; 1152067d312SJohn Baldwin void *ppc_intr_arg; 1162067d312SJohn Baldwin 1172067d312SJohn Baldwin struct mtx ppc_lock; 11867646539SMike Smith }; 11967646539SMike Smith 1202067d312SJohn Baldwin #define PPC_LOCK(data) mtx_lock(&(data)->ppc_lock) 1212067d312SJohn Baldwin #define PPC_UNLOCK(data) mtx_unlock(&(data)->ppc_lock) 1222067d312SJohn Baldwin #define PPC_ASSERT_LOCKED(data) mtx_assert(&(data)->ppc_lock, MA_OWNED) 1232067d312SJohn Baldwin 12467646539SMike Smith /* 12567646539SMike Smith * Parallel Port Chipset registers. 12667646539SMike Smith */ 12767646539SMike Smith #define PPC_SPP_DTR 0 /* SPP data register */ 128bc35c174SNicolas Souchu #define PPC_ECP_A_FIFO 0 /* ECP Address fifo register */ 12967646539SMike Smith #define PPC_SPP_STR 1 /* SPP status register */ 13067646539SMike Smith #define PPC_SPP_CTR 2 /* SPP control register */ 13120240fa3SNicolas Souchu #define PPC_EPP_ADDR 3 /* EPP address register (8 bit) */ 13267646539SMike Smith #define PPC_EPP_DATA 4 /* EPP data register (8, 16 or 32 bit) */ 133bc35c174SNicolas Souchu #define PPC_ECP_D_FIFO 0x400 /* ECP Data fifo register */ 134bc35c174SNicolas Souchu #define PPC_ECP_CNFGA 0x400 /* Configuration register A */ 135bc35c174SNicolas Souchu #define PPC_ECP_CNFGB 0x401 /* Configuration register B */ 13667646539SMike Smith #define PPC_ECP_ECR 0x402 /* ECP extended control register */ 13767646539SMike Smith 138bc35c174SNicolas Souchu #define PPC_FIFO_EMPTY 0x1 /* ecr register - bit 0 */ 139bc35c174SNicolas Souchu #define PPC_FIFO_FULL 0x2 /* ecr register - bit 1 */ 140bc35c174SNicolas Souchu #define PPC_SERVICE_INTR 0x4 /* ecr register - bit 2 */ 141bc35c174SNicolas Souchu #define PPC_ENABLE_DMA 0x8 /* ecr register - bit 3 */ 142bc35c174SNicolas Souchu #define PPC_nFAULT_INTR 0x10 /* ecr register - bit 4 */ 143bc35c174SNicolas Souchu #define PPC_ECR_STD 0x0 144bc35c174SNicolas Souchu #define PPC_ECR_PS2 0x20 145bc35c174SNicolas Souchu #define PPC_ECR_FIFO 0x40 146bc35c174SNicolas Souchu #define PPC_ECR_ECP 0x60 147bc35c174SNicolas Souchu #define PPC_ECR_EPP 0x80 148bc35c174SNicolas Souchu 149bc35c174SNicolas Souchu #define PPC_DISABLE_INTR (PPC_SERVICE_INTR | PPC_nFAULT_INTR) 150bc35c174SNicolas Souchu #define PPC_ECR_RESET (PPC_ECR_PS2 | PPC_DISABLE_INTR) 151bc35c174SNicolas Souchu 1528fd40d8aSJohn Baldwin #define r_dtr(ppc) (bus_read_1((ppc)->res_ioport, PPC_SPP_DTR)) 1538fd40d8aSJohn Baldwin #define r_str(ppc) (bus_read_1((ppc)->res_ioport, PPC_SPP_STR)) 1548fd40d8aSJohn Baldwin #define r_ctr(ppc) (bus_read_1((ppc)->res_ioport, PPC_SPP_CTR)) 15567646539SMike Smith 1568fd40d8aSJohn Baldwin #define r_epp_A(ppc) (bus_read_1((ppc)->res_ioport, PPC_EPP_ADDR)) 1578fd40d8aSJohn Baldwin #define r_epp_D(ppc) (bus_read_1((ppc)->res_ioport, PPC_EPP_DATA)) 1588fd40d8aSJohn Baldwin #define r_cnfgA(ppc) (bus_read_1((ppc)->res_ioport, PPC_ECP_CNFGA)) 1598fd40d8aSJohn Baldwin #define r_cnfgB(ppc) (bus_read_1((ppc)->res_ioport, PPC_ECP_CNFGB)) 1608fd40d8aSJohn Baldwin #define r_ecr(ppc) (bus_read_1((ppc)->res_ioport, PPC_ECP_ECR)) 1618fd40d8aSJohn Baldwin #define r_fifo(ppc) (bus_read_1((ppc)->res_ioport, PPC_ECP_D_FIFO)) 1623ae3f8b0SNicolas Souchu 1638fd40d8aSJohn Baldwin #define w_dtr(ppc, byte) (bus_write_1((ppc)->res_ioport, PPC_SPP_DTR, byte)) 1648fd40d8aSJohn Baldwin #define w_str(ppc, byte) (bus_write_1((ppc)->res_ioport, PPC_SPP_STR, byte)) 1658fd40d8aSJohn Baldwin #define w_ctr(ppc, byte) (bus_write_1((ppc)->res_ioport, PPC_SPP_CTR, byte)) 1663ae3f8b0SNicolas Souchu 1678fd40d8aSJohn Baldwin #define w_epp_A(ppc, byte) (bus_write_1((ppc)->res_ioport, PPC_EPP_ADDR, byte)) 1688fd40d8aSJohn Baldwin #define w_epp_D(ppc, byte) (bus_write_1((ppc)->res_ioport, PPC_EPP_DATA, byte)) 1698fd40d8aSJohn Baldwin #define w_ecr(ppc, byte) (bus_write_1((ppc)->res_ioport, PPC_ECP_ECR, byte)) 1708fd40d8aSJohn Baldwin #define w_fifo(ppc, byte) (bus_write_1((ppc)->res_ioport, PPC_ECP_D_FIFO, byte)) 17167646539SMike Smith 17267646539SMike Smith /* 17367646539SMike Smith * Register defines for the PC873xx parts 17467646539SMike Smith */ 17567646539SMike Smith 17667646539SMike Smith #define PC873_FER 0x00 17767646539SMike Smith #define PC873_PPENABLE (1<<0) 17867646539SMike Smith #define PC873_FAR 0x01 17967646539SMike Smith #define PC873_PTR 0x02 18067646539SMike Smith #define PC873_CFGLOCK (1<<6) 18167646539SMike Smith #define PC873_EPPRDIR (1<<7) 182af548787SNicolas Souchu #define PC873_EXTENDED (1<<7) 183af548787SNicolas Souchu #define PC873_LPTBIRQ7 (1<<3) 18467646539SMike Smith #define PC873_FCR 0x03 18567646539SMike Smith #define PC873_ZWS (1<<5) 18667646539SMike Smith #define PC873_ZWSPWDN (1<<6) 18767646539SMike Smith #define PC873_PCR 0x04 18867646539SMike Smith #define PC873_EPPEN (1<<0) 18967646539SMike Smith #define PC873_EPP19 (1<<1) 19067646539SMike Smith #define PC873_ECPEN (1<<2) 19167646539SMike Smith #define PC873_ECPCLK (1<<3) 19267646539SMike Smith #define PC873_PMC 0x06 19367646539SMike Smith #define PC873_TUP 0x07 19467646539SMike Smith #define PC873_SID 0x08 195af548787SNicolas Souchu #define PC873_PNP0 0x1b 196af548787SNicolas Souchu #define PC873_PNP1 0x1c 197af548787SNicolas Souchu #define PC873_LPTBA 0x19 19867646539SMike Smith 19967646539SMike Smith /* 20046f3ff79SMike Smith * Register defines for the SMC FDC37C66xGT parts 20167646539SMike Smith */ 20267646539SMike Smith 20367646539SMike Smith /* Init codes */ 20467646539SMike Smith #define SMC665_iCODE 0x55 20567646539SMike Smith #define SMC666_iCODE 0x44 20667646539SMike Smith 20767646539SMike Smith /* Base configuration ports */ 20867646539SMike Smith #define SMC66x_CSR 0x3F0 20967646539SMike Smith #define SMC666_CSR 0x370 /* hard-configured value for 666 */ 21067646539SMike Smith 21167646539SMike Smith /* Bits */ 21267646539SMike Smith #define SMC_CR1_ADDR 0x3 /* bit 0 and 1 */ 21346f3ff79SMike Smith #define SMC_CR1_MODE (1<<3) /* bit 3 */ 21467646539SMike Smith #define SMC_CR4_EMODE 0x3 /* bits 0 and 1 */ 21546f3ff79SMike Smith #define SMC_CR4_EPPTYPE (1<<6) /* bit 6 */ 21667646539SMike Smith 21767646539SMike Smith /* Extended modes */ 21867646539SMike Smith #define SMC_SPP 0x0 /* SPP */ 21967646539SMike Smith #define SMC_EPPSPP 0x1 /* EPP and SPP */ 22067646539SMike Smith #define SMC_ECP 0x2 /* ECP */ 22167646539SMike Smith #define SMC_ECPEPP 0x3 /* ECP and EPP */ 22267646539SMike Smith 22346f3ff79SMike Smith /* 2246a5be862SDoug Rabson * Register defines for the SMC FDC37C935 parts 2256a5be862SDoug Rabson */ 2266a5be862SDoug Rabson 2276a5be862SDoug Rabson /* Configuration ports */ 2286a5be862SDoug Rabson #define SMC935_CFG 0x370 2296a5be862SDoug Rabson #define SMC935_IND 0x370 2306a5be862SDoug Rabson #define SMC935_DAT 0x371 2316a5be862SDoug Rabson 2326a5be862SDoug Rabson /* Registers */ 2336a5be862SDoug Rabson #define SMC935_LOGDEV 0x7 2346a5be862SDoug Rabson #define SMC935_ID 0x20 2356a5be862SDoug Rabson #define SMC935_PORTHI 0x60 2366a5be862SDoug Rabson #define SMC935_PORTLO 0x61 2376a5be862SDoug Rabson #define SMC935_PPMODE 0xf0 2386a5be862SDoug Rabson 2396a5be862SDoug Rabson /* Parallel port modes */ 2406a5be862SDoug Rabson #define SMC935_SPP 0x38 + 0 2416a5be862SDoug Rabson #define SMC935_EPP19SPP 0x38 + 1 2426a5be862SDoug Rabson #define SMC935_ECP 0x38 + 2 2436a5be862SDoug Rabson #define SMC935_ECPEPP19 0x38 + 3 2446a5be862SDoug Rabson #define SMC935_CENT 0x38 + 4 2456a5be862SDoug Rabson #define SMC935_EPP17SPP 0x38 + 5 2466a5be862SDoug Rabson #define SMC935_UNUSED 0x38 + 6 2476a5be862SDoug Rabson #define SMC935_ECPEPP17 0x38 + 7 2486a5be862SDoug Rabson 2496a5be862SDoug Rabson /* 25046f3ff79SMike Smith * Register defines for the Winbond W83877F parts 25146f3ff79SMike Smith */ 25267646539SMike Smith 25346f3ff79SMike Smith #define WINB_W83877F_ID 0xa 25446f3ff79SMike Smith #define WINB_W83877AF_ID 0xb 25546f3ff79SMike Smith 25646f3ff79SMike Smith /* Configuration bits */ 25746f3ff79SMike Smith #define WINB_HEFERE (1<<5) /* CROC bit 5 */ 25846f3ff79SMike Smith #define WINB_HEFRAS (1<<0) /* CR16 bit 0 */ 25946f3ff79SMike Smith 26046f3ff79SMike Smith #define WINB_PNPCVS (1<<2) /* CR16 bit 2 */ 26146f3ff79SMike Smith #define WINB_CHIPID 0xf /* CR9 bits 0-3 */ 26246f3ff79SMike Smith 26346f3ff79SMike Smith #define WINB_PRTMODS0 (1<<2) /* CR0 bit 2 */ 26446f3ff79SMike Smith #define WINB_PRTMODS1 (1<<3) /* CR0 bit 3 */ 26546f3ff79SMike Smith #define WINB_PRTMODS2 (1<<7) /* CR9 bit 7 */ 26646f3ff79SMike Smith 26746f3ff79SMike Smith /* W83877F modes: CR9/bit7 | CR0/bit3 | CR0/bit2 */ 26846f3ff79SMike Smith #define WINB_W83757 0x0 26946f3ff79SMike Smith #define WINB_EXTFDC 0x4 27046f3ff79SMike Smith #define WINB_EXTADP 0x8 27146f3ff79SMike Smith #define WINB_EXT2FDD 0xc 27246f3ff79SMike Smith #define WINB_JOYSTICK 0x80 27346f3ff79SMike Smith 27446f3ff79SMike Smith #define WINB_PARALLEL 0x80 27546f3ff79SMike Smith #define WINB_EPP_SPP 0x4 27646f3ff79SMike Smith #define WINB_ECP 0x8 27746f3ff79SMike Smith #define WINB_ECP_EPP 0xc 27846f3ff79SMike Smith 27946f3ff79SMike Smith #endif 280