1*7c478bd9Sstevel@tonic-gate /* 2*7c478bd9Sstevel@tonic-gate * CDDL HEADER START 3*7c478bd9Sstevel@tonic-gate * 4*7c478bd9Sstevel@tonic-gate * The contents of this file are subject to the terms of the 5*7c478bd9Sstevel@tonic-gate * Common Development and Distribution License, Version 1.0 only 6*7c478bd9Sstevel@tonic-gate * (the "License"). You may not use this file except in compliance 7*7c478bd9Sstevel@tonic-gate * with the License. 8*7c478bd9Sstevel@tonic-gate * 9*7c478bd9Sstevel@tonic-gate * You can obtain a copy of the license at usr/src/OPENSOLARIS.LICENSE 10*7c478bd9Sstevel@tonic-gate * or http://www.opensolaris.org/os/licensing. 11*7c478bd9Sstevel@tonic-gate * See the License for the specific language governing permissions 12*7c478bd9Sstevel@tonic-gate * and limitations under the License. 13*7c478bd9Sstevel@tonic-gate * 14*7c478bd9Sstevel@tonic-gate * When distributing Covered Code, include this CDDL HEADER in each 15*7c478bd9Sstevel@tonic-gate * file and include the License file at usr/src/OPENSOLARIS.LICENSE. 16*7c478bd9Sstevel@tonic-gate * If applicable, add the following below this CDDL HEADER, with the 17*7c478bd9Sstevel@tonic-gate * fields enclosed by brackets "[]" replaced with your own identifying 18*7c478bd9Sstevel@tonic-gate * information: Portions Copyright [yyyy] [name of copyright owner] 19*7c478bd9Sstevel@tonic-gate * 20*7c478bd9Sstevel@tonic-gate * CDDL HEADER END 21*7c478bd9Sstevel@tonic-gate */ 22*7c478bd9Sstevel@tonic-gate /* 23*7c478bd9Sstevel@tonic-gate * Copyright 1992-2002 Sun Microsystems, Inc. All rights reserved. 24*7c478bd9Sstevel@tonic-gate * Use is subject to license terms. 25*7c478bd9Sstevel@tonic-gate */ 26*7c478bd9Sstevel@tonic-gate 27*7c478bd9Sstevel@tonic-gate #ifndef _SYS_ECPPREG_H 28*7c478bd9Sstevel@tonic-gate #define _SYS_ECPPREG_H 29*7c478bd9Sstevel@tonic-gate 30*7c478bd9Sstevel@tonic-gate #pragma ident "%Z%%M% %I% %E% SMI" 31*7c478bd9Sstevel@tonic-gate 32*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 33*7c478bd9Sstevel@tonic-gate extern "C" { 34*7c478bd9Sstevel@tonic-gate #endif 35*7c478bd9Sstevel@tonic-gate 36*7c478bd9Sstevel@tonic-gate /* 37*7c478bd9Sstevel@tonic-gate * Register definitions for the National Semiconductor PC87332VLJ 38*7c478bd9Sstevel@tonic-gate * SuperI/O chip. 39*7c478bd9Sstevel@tonic-gate */ 40*7c478bd9Sstevel@tonic-gate 41*7c478bd9Sstevel@tonic-gate /* 42*7c478bd9Sstevel@tonic-gate * configuration registers 43*7c478bd9Sstevel@tonic-gate */ 44*7c478bd9Sstevel@tonic-gate struct config_reg { 45*7c478bd9Sstevel@tonic-gate uint8_t index; 46*7c478bd9Sstevel@tonic-gate uint8_t data; 47*7c478bd9Sstevel@tonic-gate }; 48*7c478bd9Sstevel@tonic-gate 49*7c478bd9Sstevel@tonic-gate /* index values for the configuration registers */ 50*7c478bd9Sstevel@tonic-gate #define FER 0x0 /* Function Enable Register */ 51*7c478bd9Sstevel@tonic-gate #define FAR 0x1 /* Function Address Register */ 52*7c478bd9Sstevel@tonic-gate #define PTR 0x2 /* Power and Test Register */ 53*7c478bd9Sstevel@tonic-gate #define FCR 0x3 /* Function Control Register */ 54*7c478bd9Sstevel@tonic-gate #define PCR 0x4 /* Printer Control Register */ 55*7c478bd9Sstevel@tonic-gate #define KRR 0x5 /* Keyboard and RTC control Register */ 56*7c478bd9Sstevel@tonic-gate #define PMC 0x6 /* Power Management Control register */ 57*7c478bd9Sstevel@tonic-gate #define TUP 0x7 /* Tape, UART, and Parallel port register */ 58*7c478bd9Sstevel@tonic-gate #define SID 0x8 /* Super I/O Identification register */ 59*7c478bd9Sstevel@tonic-gate 60*7c478bd9Sstevel@tonic-gate #define SIO_LITE 0x40 61*7c478bd9Sstevel@tonic-gate #define SIO_LITE_B 0x90 62*7c478bd9Sstevel@tonic-gate #define SIO_REVA 0x1a 63*7c478bd9Sstevel@tonic-gate #define SIO_REVB 0x1b 64*7c478bd9Sstevel@tonic-gate 65*7c478bd9Sstevel@tonic-gate /* bit definitions for the FCR register */ 66*7c478bd9Sstevel@tonic-gate #define PC87332_FCR_MSD_SEL 0x01 67*7c478bd9Sstevel@tonic-gate #define PC87332_FCR_RESERVED 0x02 68*7c478bd9Sstevel@tonic-gate #define PC87332_FCR_PPM_EN 0x04 69*7c478bd9Sstevel@tonic-gate #define PC87332_FCR_PPM_FLOAT_CTL 0x08 70*7c478bd9Sstevel@tonic-gate #define PC87332_FCR_LDX 0x10 71*7c478bd9Sstevel@tonic-gate #define PC87332_FCR_ZWS_EN 0x20 72*7c478bd9Sstevel@tonic-gate #define PC87332_FCR_ZWS_SEL 0x40 73*7c478bd9Sstevel@tonic-gate #define PC87332_FCR_IOCHRDY_SEL 0x80 74*7c478bd9Sstevel@tonic-gate 75*7c478bd9Sstevel@tonic-gate /* bit definitions for the PCR register */ 76*7c478bd9Sstevel@tonic-gate #define PC87332_PCR_EPP_EN 0x01 77*7c478bd9Sstevel@tonic-gate #define PC87332_PCR_EPP_VER 0x02 78*7c478bd9Sstevel@tonic-gate #define PC87332_PCR_ECP_EN 0x04 79*7c478bd9Sstevel@tonic-gate #define PC87332_PCR_ECP_CLK_FZ 0x08 80*7c478bd9Sstevel@tonic-gate #define PC87332_PCR_INTR_LEVL 0x10 81*7c478bd9Sstevel@tonic-gate #define PC87332_PCR_INTR_POL 0x20 82*7c478bd9Sstevel@tonic-gate #define PC87332_PCR_INTR_DRAIN 0x40 83*7c478bd9Sstevel@tonic-gate #define PC87332_PCR_RESERVED 0x80 84*7c478bd9Sstevel@tonic-gate 85*7c478bd9Sstevel@tonic-gate /* bit definitions for the PMC register */ 86*7c478bd9Sstevel@tonic-gate #define PC87332_PMC_IDE_TRISTATE 0x01 87*7c478bd9Sstevel@tonic-gate #define PC87332_PMC_FDC_TRISTATE 0x02 88*7c478bd9Sstevel@tonic-gate #define PC87332_PMC_UART_TRISTATE 0x04 89*7c478bd9Sstevel@tonic-gate #define PC87332_PMC_ECP_DMA_CONFIG 0x08 90*7c478bd9Sstevel@tonic-gate #define PC87332_PMC_FDC_PD 0x10 91*7c478bd9Sstevel@tonic-gate #define PC87332_PMC_SLB 0x20 92*7c478bd9Sstevel@tonic-gate #define PC87332_PMC_PP_TRISTATE 0x40 93*7c478bd9Sstevel@tonic-gate #define PC87332_PMC_RESERVED 0x80 94*7c478bd9Sstevel@tonic-gate 95*7c478bd9Sstevel@tonic-gate /* 96*7c478bd9Sstevel@tonic-gate * National 97317 superio registers 97*7c478bd9Sstevel@tonic-gate */ 98*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG_DEV_NO 0x07 99*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG_ACTIVATE 0x30 100*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG_IO_RANGE 0x31 101*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG_BASE_ADDR_MSB 0x60 102*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG_BASE_ADDR_LSB 0x61 103*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG_INTR_SEL 0x70 104*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG_INTR_TYPE 0x71 105*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG_DMA0_CHAN 0x74 106*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG_DMA1_CHAN 0x75 107*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG_PP_CONFIG 0xF0 108*7c478bd9Sstevel@tonic-gate 109*7c478bd9Sstevel@tonic-gate /* 110*7c478bd9Sstevel@tonic-gate * Plug N Play configuration superio registers 111*7c478bd9Sstevel@tonic-gate * used in PC97317 & M1553 112*7c478bd9Sstevel@tonic-gate */ 113*7c478bd9Sstevel@tonic-gate #define PnP_CONFIG_DEV_NO 0x07 114*7c478bd9Sstevel@tonic-gate #define PnP_CONFIG_ACTIVATE 0x30 115*7c478bd9Sstevel@tonic-gate #define PnP_CONFIG_IO_RANGE 0x31 116*7c478bd9Sstevel@tonic-gate #define PnP_CONFIG_BASE_ADDR_MSB 0x60 117*7c478bd9Sstevel@tonic-gate #define PnP_CONFIG_BASE_ADDR_LSB 0x61 118*7c478bd9Sstevel@tonic-gate #define PnP_CONFIG_INTR_SEL 0x70 119*7c478bd9Sstevel@tonic-gate #define PnP_CONFIG_INTR_TYPE 0x71 120*7c478bd9Sstevel@tonic-gate #define PnP_CONFIG_DMA0_CHAN 0x74 121*7c478bd9Sstevel@tonic-gate #define PnP_CONFIG_DMA1_CHAN 0x75 122*7c478bd9Sstevel@tonic-gate #define PnP_CONFIG_PP_CONFIG0 0xF0 123*7c478bd9Sstevel@tonic-gate #define PnP_CONFIG_PP_CONFIG1 0xF1 124*7c478bd9Sstevel@tonic-gate 125*7c478bd9Sstevel@tonic-gate 126*7c478bd9Sstevel@tonic-gate /* 127*7c478bd9Sstevel@tonic-gate * parallel port interface registers - same for all 1284 modes. 128*7c478bd9Sstevel@tonic-gate */ 129*7c478bd9Sstevel@tonic-gate struct info_reg { 130*7c478bd9Sstevel@tonic-gate union { 131*7c478bd9Sstevel@tonic-gate uint8_t datar; 132*7c478bd9Sstevel@tonic-gate uint8_t afifo; 133*7c478bd9Sstevel@tonic-gate } ir; 134*7c478bd9Sstevel@tonic-gate uint8_t dsr; 135*7c478bd9Sstevel@tonic-gate uint8_t dcr; 136*7c478bd9Sstevel@tonic-gate uint8_t epp_addr; 137*7c478bd9Sstevel@tonic-gate uint8_t epp_data; 138*7c478bd9Sstevel@tonic-gate uint8_t epp_data32[3]; 139*7c478bd9Sstevel@tonic-gate }; 140*7c478bd9Sstevel@tonic-gate 141*7c478bd9Sstevel@tonic-gate /* 142*7c478bd9Sstevel@tonic-gate * additional ECP mode registers. 143*7c478bd9Sstevel@tonic-gate */ 144*7c478bd9Sstevel@tonic-gate struct fifo_reg { 145*7c478bd9Sstevel@tonic-gate union { 146*7c478bd9Sstevel@tonic-gate uint8_t cfifo; 147*7c478bd9Sstevel@tonic-gate uint8_t dfifo; 148*7c478bd9Sstevel@tonic-gate uint8_t tfifo; 149*7c478bd9Sstevel@tonic-gate uint8_t config_a; 150*7c478bd9Sstevel@tonic-gate } fr; 151*7c478bd9Sstevel@tonic-gate uint8_t config_b; 152*7c478bd9Sstevel@tonic-gate uint8_t ecr; 153*7c478bd9Sstevel@tonic-gate }; 154*7c478bd9Sstevel@tonic-gate 155*7c478bd9Sstevel@tonic-gate /* 156*7c478bd9Sstevel@tonic-gate * Values for the ECR field 157*7c478bd9Sstevel@tonic-gate * 158*7c478bd9Sstevel@tonic-gate * The ECR has 3 read-only bits - bits 0,1,2. Bits 3,4,5,6,7 are read/write. 159*7c478bd9Sstevel@tonic-gate * While writing to this register (ECPPIOC_SETREGS), bits 0,1,2 must be 0. 160*7c478bd9Sstevel@tonic-gate * If not, ECPPIOC_SETREGS will return EINVAL. 161*7c478bd9Sstevel@tonic-gate */ 162*7c478bd9Sstevel@tonic-gate 163*7c478bd9Sstevel@tonic-gate #define ECPP_FIFO_EMPTY 0x01 /* 1 when FIFO empty */ 164*7c478bd9Sstevel@tonic-gate #define ECPP_FIFO_FULL 0x02 /* 1 when FIFO full */ 165*7c478bd9Sstevel@tonic-gate #define ECPP_INTR_SRV 0x04 166*7c478bd9Sstevel@tonic-gate 167*7c478bd9Sstevel@tonic-gate /* 168*7c478bd9Sstevel@tonic-gate * When bit is 0, bit will be set to 1 169*7c478bd9Sstevel@tonic-gate * and interrupt will be generated if 170*7c478bd9Sstevel@tonic-gate * any of the three events occur: 171*7c478bd9Sstevel@tonic-gate * (a) TC is reached while DMA enabled 172*7c478bd9Sstevel@tonic-gate * (b) If DMA disabled & DCR5 = 0, 8 or more bytes free in FIFO, 173*7c478bd9Sstevel@tonic-gate * (c) IF DMA disable & DCR5 = 1, 8 or more bytes to be read in FIFO. 174*7c478bd9Sstevel@tonic-gate * 175*7c478bd9Sstevel@tonic-gate * When this bit is 1, DMA & (a), (b), (c) 176*7c478bd9Sstevel@tonic-gate * interrupts are disabled. 177*7c478bd9Sstevel@tonic-gate */ 178*7c478bd9Sstevel@tonic-gate 179*7c478bd9Sstevel@tonic-gate #define ECPP_DMA_ENABLE 0x08 /* DMA enable =1 */ 180*7c478bd9Sstevel@tonic-gate #define ECPP_INTR_MASK 0x10 /* intr-enable nErr mask=1 */ 181*7c478bd9Sstevel@tonic-gate #define ECR_mode_000 0x00 /* PIO CENTRONICS */ 182*7c478bd9Sstevel@tonic-gate #define ECR_mode_001 0x20 /* PIO NIBBLE */ 183*7c478bd9Sstevel@tonic-gate #define ECR_mode_010 0x40 /* DMA CENTRONICS */ 184*7c478bd9Sstevel@tonic-gate #define ECR_mode_011 0x60 /* DMA ECP */ 185*7c478bd9Sstevel@tonic-gate #define ECR_mode_100 0x80 /* PIO EPP */ 186*7c478bd9Sstevel@tonic-gate #define ECR_mode_110 0xc0 /* TDMA (TFIFO) */ 187*7c478bd9Sstevel@tonic-gate #define ECR_mode_111 0xe0 /* Config Mode */ 188*7c478bd9Sstevel@tonic-gate 189*7c478bd9Sstevel@tonic-gate /* 190*7c478bd9Sstevel@tonic-gate * 97317 second level configuration registers 191*7c478bd9Sstevel@tonic-gate */ 192*7c478bd9Sstevel@tonic-gate struct config2_reg { 193*7c478bd9Sstevel@tonic-gate uint8_t eir; /* Extended Index Register */ 194*7c478bd9Sstevel@tonic-gate uint8_t edr; /* Extended Data Register */ 195*7c478bd9Sstevel@tonic-gate }; 196*7c478bd9Sstevel@tonic-gate 197*7c478bd9Sstevel@tonic-gate /* 198*7c478bd9Sstevel@tonic-gate * Second level offset 199*7c478bd9Sstevel@tonic-gate */ 200*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG2_CONTROL0 0x00 201*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG2_CONTROL2 0x02 202*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG2_CONTROL4 0x04 203*7c478bd9Sstevel@tonic-gate #define PC97317_CONFIG2_PPCONFG0 0x05 204*7c478bd9Sstevel@tonic-gate 205*7c478bd9Sstevel@tonic-gate /* Cheerio Ebus DMAC */ 206*7c478bd9Sstevel@tonic-gate 207*7c478bd9Sstevel@tonic-gate struct cheerio_dma_reg { 208*7c478bd9Sstevel@tonic-gate uint32_t csr; /* Data Control Status Register */ 209*7c478bd9Sstevel@tonic-gate uint32_t acr; /* DMA Address Count Registers */ 210*7c478bd9Sstevel@tonic-gate uint32_t bcr; /* DMA Byte Count Register */ 211*7c478bd9Sstevel@tonic-gate }; 212*7c478bd9Sstevel@tonic-gate 213*7c478bd9Sstevel@tonic-gate /* 214*7c478bd9Sstevel@tonic-gate * DMA Control and Status Register(DCSR) definitions. See Cheerio spec 215*7c478bd9Sstevel@tonic-gate * for more details 216*7c478bd9Sstevel@tonic-gate */ 217*7c478bd9Sstevel@tonic-gate #define DCSR_INT_PEND 0x00000001 /* 1= pport or dma interrupts */ 218*7c478bd9Sstevel@tonic-gate #define DCSR_ERR_PEND 0x00000002 /* 1= host bus error detected */ 219*7c478bd9Sstevel@tonic-gate #define DCSR_INT_EN 0x00000010 /* 1= enable sidewinder/ebus intr */ 220*7c478bd9Sstevel@tonic-gate #define DCSR_RESET 0x00000080 /* 1= resets the DCSR */ 221*7c478bd9Sstevel@tonic-gate #define DCSR_WRITE 0x00000100 /* DMA direction; 1 = memory */ 222*7c478bd9Sstevel@tonic-gate #define DCSR_EN_DMA 0x00000200 /* 1= enable DMA */ 223*7c478bd9Sstevel@tonic-gate #define DCSR_CYC_PEND 0x00000400 /* 1 = DMA pending */ 224*7c478bd9Sstevel@tonic-gate #define DCSR_EN_CNT 0x00002000 /* 1= enables byte counter */ 225*7c478bd9Sstevel@tonic-gate #define DCSR_TC 0x00004000 /* 1= Terminal Count occurred */ 226*7c478bd9Sstevel@tonic-gate #define DCSR_CSR_DRAIN 0x00000000 /* 1= disable draining */ 227*7c478bd9Sstevel@tonic-gate #define DCSR_BURST_0 0x00040000 /* Burst Size bit 0 */ 228*7c478bd9Sstevel@tonic-gate #define DCSR_BURST_1 0x00080000 /* Burst Size bit 1 */ 229*7c478bd9Sstevel@tonic-gate #define DCSR_DIAG 0x00000000 /* 1= diag enable */ 230*7c478bd9Sstevel@tonic-gate #define DCSR_TCI_DIS 0x00800000 /* 1= TC won't cause interrupt */ 231*7c478bd9Sstevel@tonic-gate 232*7c478bd9Sstevel@tonic-gate 233*7c478bd9Sstevel@tonic-gate /* Southbridge support */ 234*7c478bd9Sstevel@tonic-gate struct isaspace { 235*7c478bd9Sstevel@tonic-gate uchar_t isa_reg[0x500]; /* 0x500 regs from isa config space */ 236*7c478bd9Sstevel@tonic-gate }; 237*7c478bd9Sstevel@tonic-gate 238*7c478bd9Sstevel@tonic-gate 239*7c478bd9Sstevel@tonic-gate #ifdef __cplusplus 240*7c478bd9Sstevel@tonic-gate } 241*7c478bd9Sstevel@tonic-gate #endif 242*7c478bd9Sstevel@tonic-gate 243*7c478bd9Sstevel@tonic-gate #endif /* _SYS_ECPPREG_H */ 244