1*4882a593Smuzhiyun /* 2*4882a593Smuzhiyun * This file is subject to the terms and conditions of the GNU General Public 3*4882a593Smuzhiyun * License. See the file "COPYING" in the main directory of this archive 4*4882a593Smuzhiyun * for more details. 5*4882a593Smuzhiyun * 6*4882a593Smuzhiyun * hpc3.h: Definitions for SGI HPC3 controller 7*4882a593Smuzhiyun * 8*4882a593Smuzhiyun * Copyright (C) 1996 David S. Miller 9*4882a593Smuzhiyun * Copyright (C) 1998 Ralf Baechle 10*4882a593Smuzhiyun */ 11*4882a593Smuzhiyun 12*4882a593Smuzhiyun #ifndef _SGI_HPC3_H 13*4882a593Smuzhiyun #define _SGI_HPC3_H 14*4882a593Smuzhiyun 15*4882a593Smuzhiyun #include <linux/types.h> 16*4882a593Smuzhiyun #include <asm/page.h> 17*4882a593Smuzhiyun 18*4882a593Smuzhiyun /* An HPC DMA descriptor. */ 19*4882a593Smuzhiyun struct hpc_dma_desc { 20*4882a593Smuzhiyun u32 pbuf; /* physical address of data buffer */ 21*4882a593Smuzhiyun u32 cntinfo; /* counter and info bits */ 22*4882a593Smuzhiyun #define HPCDMA_EOX 0x80000000 /* last desc in chain for tx */ 23*4882a593Smuzhiyun #define HPCDMA_EOR 0x80000000 /* last desc in chain for rx */ 24*4882a593Smuzhiyun #define HPCDMA_EOXP 0x40000000 /* end of packet for tx */ 25*4882a593Smuzhiyun #define HPCDMA_EORP 0x40000000 /* end of packet for rx */ 26*4882a593Smuzhiyun #define HPCDMA_XIE 0x20000000 /* irq generated when at end of this desc */ 27*4882a593Smuzhiyun #define HPCDMA_XIU 0x01000000 /* Tx buffer in use by CPU. */ 28*4882a593Smuzhiyun #define HPCDMA_EIPC 0x00ff0000 /* SEEQ ethernet special xternal bytecount */ 29*4882a593Smuzhiyun #define HPCDMA_ETXD 0x00008000 /* set to one by HPC when packet tx'd */ 30*4882a593Smuzhiyun #define HPCDMA_OWN 0x00004000 /* Denotes ring buffer ownership on rx */ 31*4882a593Smuzhiyun #define HPCDMA_BCNT 0x00003fff /* size in bytes of this dma buffer */ 32*4882a593Smuzhiyun 33*4882a593Smuzhiyun u32 pnext; /* paddr of next hpc_dma_desc if any */ 34*4882a593Smuzhiyun }; 35*4882a593Smuzhiyun 36*4882a593Smuzhiyun /* The set of regs for each HPC3 PBUS DMA channel. */ 37*4882a593Smuzhiyun struct hpc3_pbus_dmacregs { 38*4882a593Smuzhiyun volatile u32 pbdma_bptr; /* pbus dma channel buffer ptr */ 39*4882a593Smuzhiyun volatile u32 pbdma_dptr; /* pbus dma channel desc ptr */ 40*4882a593Smuzhiyun u32 _unused0[0x1000/4 - 2]; /* padding */ 41*4882a593Smuzhiyun volatile u32 pbdma_ctrl; /* pbus dma channel control register has 42*4882a593Smuzhiyun * completely different meaning for read 43*4882a593Smuzhiyun * compared with write */ 44*4882a593Smuzhiyun /* read */ 45*4882a593Smuzhiyun #define HPC3_PDMACTRL_INT 0x00000001 /* interrupt (cleared after read) */ 46*4882a593Smuzhiyun #define HPC3_PDMACTRL_ISACT 0x00000002 /* channel active */ 47*4882a593Smuzhiyun /* write */ 48*4882a593Smuzhiyun #define HPC3_PDMACTRL_SEL 0x00000002 /* little endian transfer */ 49*4882a593Smuzhiyun #define HPC3_PDMACTRL_RCV 0x00000004 /* direction is receive */ 50*4882a593Smuzhiyun #define HPC3_PDMACTRL_FLSH 0x00000008 /* enable flush for receive DMA */ 51*4882a593Smuzhiyun #define HPC3_PDMACTRL_ACT 0x00000010 /* start dma transfer */ 52*4882a593Smuzhiyun #define HPC3_PDMACTRL_LD 0x00000020 /* load enable for ACT */ 53*4882a593Smuzhiyun #define HPC3_PDMACTRL_RT 0x00000040 /* Use realtime GIO bus servicing */ 54*4882a593Smuzhiyun #define HPC3_PDMACTRL_HW 0x0000ff00 /* DMA High-water mark */ 55*4882a593Smuzhiyun #define HPC3_PDMACTRL_FB 0x003f0000 /* Ptr to beginning of fifo */ 56*4882a593Smuzhiyun #define HPC3_PDMACTRL_FE 0x3f000000 /* Ptr to end of fifo */ 57*4882a593Smuzhiyun 58*4882a593Smuzhiyun u32 _unused1[0x1000/4 - 1]; /* padding */ 59*4882a593Smuzhiyun }; 60*4882a593Smuzhiyun 61*4882a593Smuzhiyun /* The HPC3 SCSI registers, this does not include external ones. */ 62*4882a593Smuzhiyun struct hpc3_scsiregs { 63*4882a593Smuzhiyun volatile u32 cbptr; /* current dma buffer ptr, diagnostic use only */ 64*4882a593Smuzhiyun volatile u32 ndptr; /* next dma descriptor ptr */ 65*4882a593Smuzhiyun u32 _unused0[0x1000/4 - 2]; /* padding */ 66*4882a593Smuzhiyun volatile u32 bcd; /* byte count info */ 67*4882a593Smuzhiyun #define HPC3_SBCD_BCNTMSK 0x00003fff /* bytes to transfer from/to memory */ 68*4882a593Smuzhiyun #define HPC3_SBCD_XIE 0x00004000 /* Send IRQ when done with cur buf */ 69*4882a593Smuzhiyun #define HPC3_SBCD_EOX 0x00008000 /* Indicates this is last buf in chain */ 70*4882a593Smuzhiyun 71*4882a593Smuzhiyun volatile u32 ctrl; /* control register */ 72*4882a593Smuzhiyun #define HPC3_SCTRL_IRQ 0x01 /* IRQ asserted, either dma done or parity */ 73*4882a593Smuzhiyun #define HPC3_SCTRL_ENDIAN 0x02 /* DMA endian mode, 0=big 1=little */ 74*4882a593Smuzhiyun #define HPC3_SCTRL_DIR 0x04 /* DMA direction, 1=dev2mem 0=mem2dev */ 75*4882a593Smuzhiyun #define HPC3_SCTRL_FLUSH 0x08 /* Tells HPC3 to flush scsi fifos */ 76*4882a593Smuzhiyun #define HPC3_SCTRL_ACTIVE 0x10 /* SCSI DMA channel is active */ 77*4882a593Smuzhiyun #define HPC3_SCTRL_AMASK 0x20 /* DMA active inhibits PIO */ 78*4882a593Smuzhiyun #define HPC3_SCTRL_CRESET 0x40 /* Resets dma channel and external controller */ 79*4882a593Smuzhiyun #define HPC3_SCTRL_PERR 0x80 /* Bad parity on HPC3 iface to scsi controller */ 80*4882a593Smuzhiyun 81*4882a593Smuzhiyun volatile u32 gfptr; /* current GIO fifo ptr */ 82*4882a593Smuzhiyun volatile u32 dfptr; /* current device fifo ptr */ 83*4882a593Smuzhiyun volatile u32 dconfig; /* DMA configuration register */ 84*4882a593Smuzhiyun #define HPC3_SDCFG_HCLK 0x00001 /* Enable DMA half clock mode */ 85*4882a593Smuzhiyun #define HPC3_SDCFG_D1 0x00006 /* Cycles to spend in D1 state */ 86*4882a593Smuzhiyun #define HPC3_SDCFG_D2 0x00038 /* Cycles to spend in D2 state */ 87*4882a593Smuzhiyun #define HPC3_SDCFG_D3 0x001c0 /* Cycles to spend in D3 state */ 88*4882a593Smuzhiyun #define HPC3_SDCFG_HWAT 0x00e00 /* DMA high water mark */ 89*4882a593Smuzhiyun #define HPC3_SDCFG_HW 0x01000 /* Enable 16-bit halfword DMA accesses to scsi */ 90*4882a593Smuzhiyun #define HPC3_SDCFG_SWAP 0x02000 /* Byte swap all DMA accesses */ 91*4882a593Smuzhiyun #define HPC3_SDCFG_EPAR 0x04000 /* Enable parity checking for DMA */ 92*4882a593Smuzhiyun #define HPC3_SDCFG_POLL 0x08000 /* hd_dreq polarity control */ 93*4882a593Smuzhiyun #define HPC3_SDCFG_ERLY 0x30000 /* hd_dreq behavior control bits */ 94*4882a593Smuzhiyun 95*4882a593Smuzhiyun volatile u32 pconfig; /* PIO configuration register */ 96*4882a593Smuzhiyun #define HPC3_SPCFG_P3 0x0003 /* Cycles to spend in P3 state */ 97*4882a593Smuzhiyun #define HPC3_SPCFG_P2W 0x001c /* Cycles to spend in P2 state for writes */ 98*4882a593Smuzhiyun #define HPC3_SPCFG_P2R 0x01e0 /* Cycles to spend in P2 state for reads */ 99*4882a593Smuzhiyun #define HPC3_SPCFG_P1 0x0e00 /* Cycles to spend in P1 state */ 100*4882a593Smuzhiyun #define HPC3_SPCFG_HW 0x1000 /* Enable 16-bit halfword PIO accesses to scsi */ 101*4882a593Smuzhiyun #define HPC3_SPCFG_SWAP 0x2000 /* Byte swap all PIO accesses */ 102*4882a593Smuzhiyun #define HPC3_SPCFG_EPAR 0x4000 /* Enable parity checking for PIO */ 103*4882a593Smuzhiyun #define HPC3_SPCFG_FUJI 0x8000 /* Fujitsu scsi controller mode for faster dma/pio */ 104*4882a593Smuzhiyun 105*4882a593Smuzhiyun u32 _unused1[0x1000/4 - 6]; /* padding */ 106*4882a593Smuzhiyun }; 107*4882a593Smuzhiyun 108*4882a593Smuzhiyun /* SEEQ ethernet HPC3 registers, only one seeq per HPC3. */ 109*4882a593Smuzhiyun struct hpc3_ethregs { 110*4882a593Smuzhiyun /* Receiver registers. */ 111*4882a593Smuzhiyun volatile u32 rx_cbptr; /* current dma buffer ptr, diagnostic use only */ 112*4882a593Smuzhiyun volatile u32 rx_ndptr; /* next dma descriptor ptr */ 113*4882a593Smuzhiyun u32 _unused0[0x1000/4 - 2]; /* padding */ 114*4882a593Smuzhiyun volatile u32 rx_bcd; /* byte count info */ 115*4882a593Smuzhiyun #define HPC3_ERXBCD_BCNTMSK 0x00003fff /* bytes to be sent to memory */ 116*4882a593Smuzhiyun #define HPC3_ERXBCD_XIE 0x20000000 /* HPC3 interrupts cpu at end of this buf */ 117*4882a593Smuzhiyun #define HPC3_ERXBCD_EOX 0x80000000 /* flags this as end of descriptor chain */ 118*4882a593Smuzhiyun 119*4882a593Smuzhiyun volatile u32 rx_ctrl; /* control register */ 120*4882a593Smuzhiyun #define HPC3_ERXCTRL_STAT50 0x0000003f /* Receive status reg bits of Seeq8003 */ 121*4882a593Smuzhiyun #define HPC3_ERXCTRL_STAT6 0x00000040 /* Rdonly irq status */ 122*4882a593Smuzhiyun #define HPC3_ERXCTRL_STAT7 0x00000080 /* Rdonlt old/new status bit from Seeq */ 123*4882a593Smuzhiyun #define HPC3_ERXCTRL_ENDIAN 0x00000100 /* Endian for dma channel, little=1 big=0 */ 124*4882a593Smuzhiyun #define HPC3_ERXCTRL_ACTIVE 0x00000200 /* Tells if DMA transfer is in progress */ 125*4882a593Smuzhiyun #define HPC3_ERXCTRL_AMASK 0x00000400 /* Tells if ACTIVE inhibits PIO's to hpc3 */ 126*4882a593Smuzhiyun #define HPC3_ERXCTRL_RBO 0x00000800 /* Receive buffer overflow if set to 1 */ 127*4882a593Smuzhiyun 128*4882a593Smuzhiyun volatile u32 rx_gfptr; /* current GIO fifo ptr */ 129*4882a593Smuzhiyun volatile u32 rx_dfptr; /* current device fifo ptr */ 130*4882a593Smuzhiyun u32 _unused1; /* padding */ 131*4882a593Smuzhiyun volatile u32 reset; /* reset register */ 132*4882a593Smuzhiyun #define HPC3_ERST_CRESET 0x1 /* Reset dma channel and external controller */ 133*4882a593Smuzhiyun #define HPC3_ERST_CLRIRQ 0x2 /* Clear channel interrupt */ 134*4882a593Smuzhiyun #define HPC3_ERST_LBACK 0x4 /* Enable diagnostic loopback mode of Seeq8003 */ 135*4882a593Smuzhiyun 136*4882a593Smuzhiyun volatile u32 dconfig; /* DMA configuration register */ 137*4882a593Smuzhiyun #define HPC3_EDCFG_D1 0x0000f /* Cycles to spend in D1 state for PIO */ 138*4882a593Smuzhiyun #define HPC3_EDCFG_D2 0x000f0 /* Cycles to spend in D2 state for PIO */ 139*4882a593Smuzhiyun #define HPC3_EDCFG_D3 0x00f00 /* Cycles to spend in D3 state for PIO */ 140*4882a593Smuzhiyun #define HPC3_EDCFG_WCTRL 0x01000 /* Enable writes of desc into ex ctrl port */ 141*4882a593Smuzhiyun #define HPC3_EDCFG_FRXDC 0x02000 /* Clear eop stat bits upon rxdc, hw seeq fix */ 142*4882a593Smuzhiyun #define HPC3_EDCFG_FEOP 0x04000 /* Bad packet marker timeout enable */ 143*4882a593Smuzhiyun #define HPC3_EDCFG_FIRQ 0x08000 /* Another bad packet timeout enable */ 144*4882a593Smuzhiyun #define HPC3_EDCFG_PTO 0x30000 /* Programmed timeout value for above two */ 145*4882a593Smuzhiyun 146*4882a593Smuzhiyun volatile u32 pconfig; /* PIO configuration register */ 147*4882a593Smuzhiyun #define HPC3_EPCFG_P1 0x000f /* Cycles to spend in P1 state for PIO */ 148*4882a593Smuzhiyun #define HPC3_EPCFG_P2 0x00f0 /* Cycles to spend in P2 state for PIO */ 149*4882a593Smuzhiyun #define HPC3_EPCFG_P3 0x0f00 /* Cycles to spend in P3 state for PIO */ 150*4882a593Smuzhiyun #define HPC3_EPCFG_TST 0x1000 /* Diagnostic ram test feature bit */ 151*4882a593Smuzhiyun 152*4882a593Smuzhiyun u32 _unused2[0x1000/4 - 8]; /* padding */ 153*4882a593Smuzhiyun 154*4882a593Smuzhiyun /* Transmitter registers. */ 155*4882a593Smuzhiyun volatile u32 tx_cbptr; /* current dma buffer ptr, diagnostic use only */ 156*4882a593Smuzhiyun volatile u32 tx_ndptr; /* next dma descriptor ptr */ 157*4882a593Smuzhiyun u32 _unused3[0x1000/4 - 2]; /* padding */ 158*4882a593Smuzhiyun volatile u32 tx_bcd; /* byte count info */ 159*4882a593Smuzhiyun #define HPC3_ETXBCD_BCNTMSK 0x00003fff /* bytes to be read from memory */ 160*4882a593Smuzhiyun #define HPC3_ETXBCD_ESAMP 0x10000000 /* if set, too late to add descriptor */ 161*4882a593Smuzhiyun #define HPC3_ETXBCD_XIE 0x20000000 /* Interrupt cpu at end of cur desc */ 162*4882a593Smuzhiyun #define HPC3_ETXBCD_EOP 0x40000000 /* Last byte of cur buf is end of packet */ 163*4882a593Smuzhiyun #define HPC3_ETXBCD_EOX 0x80000000 /* This buf is the end of desc chain */ 164*4882a593Smuzhiyun 165*4882a593Smuzhiyun volatile u32 tx_ctrl; /* control register */ 166*4882a593Smuzhiyun #define HPC3_ETXCTRL_STAT30 0x0000000f /* Rdonly copy of seeq tx stat reg */ 167*4882a593Smuzhiyun #define HPC3_ETXCTRL_STAT4 0x00000010 /* Indicate late collision occurred */ 168*4882a593Smuzhiyun #define HPC3_ETXCTRL_STAT75 0x000000e0 /* Rdonly irq status from seeq */ 169*4882a593Smuzhiyun #define HPC3_ETXCTRL_ENDIAN 0x00000100 /* DMA channel endian mode, 1=little 0=big */ 170*4882a593Smuzhiyun #define HPC3_ETXCTRL_ACTIVE 0x00000200 /* DMA tx channel is active */ 171*4882a593Smuzhiyun #define HPC3_ETXCTRL_AMASK 0x00000400 /* Indicates ACTIVE inhibits PIO's */ 172*4882a593Smuzhiyun 173*4882a593Smuzhiyun volatile u32 tx_gfptr; /* current GIO fifo ptr */ 174*4882a593Smuzhiyun volatile u32 tx_dfptr; /* current device fifo ptr */ 175*4882a593Smuzhiyun u32 _unused4[0x1000/4 - 4]; /* padding */ 176*4882a593Smuzhiyun }; 177*4882a593Smuzhiyun 178*4882a593Smuzhiyun struct hpc3_regs { 179*4882a593Smuzhiyun /* First regs for the PBUS 8 dma channels. */ 180*4882a593Smuzhiyun struct hpc3_pbus_dmacregs pbdma[8]; 181*4882a593Smuzhiyun 182*4882a593Smuzhiyun /* Now the HPC scsi registers, we get two scsi reg sets. */ 183*4882a593Smuzhiyun struct hpc3_scsiregs scsi_chan0, scsi_chan1; 184*4882a593Smuzhiyun 185*4882a593Smuzhiyun /* The SEEQ hpc3 ethernet dma/control registers. */ 186*4882a593Smuzhiyun struct hpc3_ethregs ethregs; 187*4882a593Smuzhiyun 188*4882a593Smuzhiyun /* Here are where the hpc3 fifo's can be directly accessed 189*4882a593Smuzhiyun * via PIO accesses. Under normal operation we never stick 190*4882a593Smuzhiyun * our grubby paws in here so it's just padding. */ 191*4882a593Smuzhiyun u32 _unused0[0x18000/4]; 192*4882a593Smuzhiyun 193*4882a593Smuzhiyun /* HPC3 irq status regs. Due to a peculiar bug you need to 194*4882a593Smuzhiyun * look at two different register addresses to get at all of 195*4882a593Smuzhiyun * the status bits. The first reg can only reliably report 196*4882a593Smuzhiyun * bits 4:0 of the status, and the second reg can only 197*4882a593Smuzhiyun * reliably report bits 9:5 of the hpc3 irq status. I told 198*4882a593Smuzhiyun * you it was a peculiar bug. ;-) 199*4882a593Smuzhiyun */ 200*4882a593Smuzhiyun volatile u32 istat0; /* Irq status, only bits <4:0> reliable. */ 201*4882a593Smuzhiyun #define HPC3_ISTAT_PBIMASK 0x0ff /* irq bits for pbus devs 0 --> 7 */ 202*4882a593Smuzhiyun #define HPC3_ISTAT_SC0MASK 0x100 /* irq bit for scsi channel 0 */ 203*4882a593Smuzhiyun #define HPC3_ISTAT_SC1MASK 0x200 /* irq bit for scsi channel 1 */ 204*4882a593Smuzhiyun 205*4882a593Smuzhiyun volatile u32 gio_misc; /* GIO misc control bits. */ 206*4882a593Smuzhiyun #define HPC3_GIOMISC_ERTIME 0x1 /* Enable external timer real time. */ 207*4882a593Smuzhiyun #define HPC3_GIOMISC_DENDIAN 0x2 /* dma descriptor endian, 1=lit 0=big */ 208*4882a593Smuzhiyun 209*4882a593Smuzhiyun u32 eeprom; /* EEPROM data reg. */ 210*4882a593Smuzhiyun #define HPC3_EEPROM_EPROT 0x01 /* Protect register enable */ 211*4882a593Smuzhiyun #define HPC3_EEPROM_CSEL 0x02 /* Chip select */ 212*4882a593Smuzhiyun #define HPC3_EEPROM_ECLK 0x04 /* EEPROM clock */ 213*4882a593Smuzhiyun #define HPC3_EEPROM_DATO 0x08 /* Data out */ 214*4882a593Smuzhiyun #define HPC3_EEPROM_DATI 0x10 /* Data in */ 215*4882a593Smuzhiyun 216*4882a593Smuzhiyun volatile u32 istat1; /* Irq status, only bits <9:5> reliable. */ 217*4882a593Smuzhiyun volatile u32 bestat; /* Bus error interrupt status reg. */ 218*4882a593Smuzhiyun #define HPC3_BESTAT_BLMASK 0x000ff /* Bus lane where bad parity occurred */ 219*4882a593Smuzhiyun #define HPC3_BESTAT_CTYPE 0x00100 /* Bus cycle type, 0=PIO 1=DMA */ 220*4882a593Smuzhiyun #define HPC3_BESTAT_PIDSHIFT 9 221*4882a593Smuzhiyun #define HPC3_BESTAT_PIDMASK 0x3f700 /* DMA channel parity identifier */ 222*4882a593Smuzhiyun 223*4882a593Smuzhiyun u32 _unused1[0x14000/4 - 5]; /* padding */ 224*4882a593Smuzhiyun 225*4882a593Smuzhiyun /* Now direct PIO per-HPC3 peripheral access to external regs. */ 226*4882a593Smuzhiyun volatile u32 scsi0_ext[256]; /* SCSI channel 0 external regs */ 227*4882a593Smuzhiyun u32 _unused2[0x7c00/4]; 228*4882a593Smuzhiyun volatile u32 scsi1_ext[256]; /* SCSI channel 1 external regs */ 229*4882a593Smuzhiyun u32 _unused3[0x7c00/4]; 230*4882a593Smuzhiyun volatile u32 eth_ext[320]; /* Ethernet external registers */ 231*4882a593Smuzhiyun u32 _unused4[0x3b00/4]; 232*4882a593Smuzhiyun 233*4882a593Smuzhiyun /* Per-peripheral device external registers and DMA/PIO control. */ 234*4882a593Smuzhiyun volatile u32 pbus_extregs[16][256]; 235*4882a593Smuzhiyun volatile u32 pbus_dmacfg[8][128]; 236*4882a593Smuzhiyun /* Cycles to spend in D3 for reads */ 237*4882a593Smuzhiyun #define HPC3_DMACFG_D3R_MASK 0x00000001 238*4882a593Smuzhiyun #define HPC3_DMACFG_D3R_SHIFT 0 239*4882a593Smuzhiyun /* Cycles to spend in D4 for reads */ 240*4882a593Smuzhiyun #define HPC3_DMACFG_D4R_MASK 0x0000001e 241*4882a593Smuzhiyun #define HPC3_DMACFG_D4R_SHIFT 1 242*4882a593Smuzhiyun /* Cycles to spend in D5 for reads */ 243*4882a593Smuzhiyun #define HPC3_DMACFG_D5R_MASK 0x000001e0 244*4882a593Smuzhiyun #define HPC3_DMACFG_D5R_SHIFT 5 245*4882a593Smuzhiyun /* Cycles to spend in D3 for writes */ 246*4882a593Smuzhiyun #define HPC3_DMACFG_D3W_MASK 0x00000200 247*4882a593Smuzhiyun #define HPC3_DMACFG_D3W_SHIFT 9 248*4882a593Smuzhiyun /* Cycles to spend in D4 for writes */ 249*4882a593Smuzhiyun #define HPC3_DMACFG_D4W_MASK 0x00003c00 250*4882a593Smuzhiyun #define HPC3_DMACFG_D4W_SHIFT 10 251*4882a593Smuzhiyun /* Cycles to spend in D5 for writes */ 252*4882a593Smuzhiyun #define HPC3_DMACFG_D5W_MASK 0x0003c000 253*4882a593Smuzhiyun #define HPC3_DMACFG_D5W_SHIFT 14 254*4882a593Smuzhiyun /* Enable 16-bit DMA access mode */ 255*4882a593Smuzhiyun #define HPC3_DMACFG_DS16 0x00040000 256*4882a593Smuzhiyun /* Places halfwords on high 16 bits of bus */ 257*4882a593Smuzhiyun #define HPC3_DMACFG_EVENHI 0x00080000 258*4882a593Smuzhiyun /* Make this device real time */ 259*4882a593Smuzhiyun #define HPC3_DMACFG_RTIME 0x00200000 260*4882a593Smuzhiyun /* 5 bit burst count for DMA device */ 261*4882a593Smuzhiyun #define HPC3_DMACFG_BURST_MASK 0x07c00000 262*4882a593Smuzhiyun #define HPC3_DMACFG_BURST_SHIFT 22 263*4882a593Smuzhiyun /* Use live pbus_dreq unsynchronized signal */ 264*4882a593Smuzhiyun #define HPC3_DMACFG_DRQLIVE 0x08000000 265*4882a593Smuzhiyun volatile u32 pbus_piocfg[16][64]; 266*4882a593Smuzhiyun /* Cycles to spend in P2 state for reads */ 267*4882a593Smuzhiyun #define HPC3_PIOCFG_P2R_MASK 0x00001 268*4882a593Smuzhiyun #define HPC3_PIOCFG_P2R_SHIFT 0 269*4882a593Smuzhiyun /* Cycles to spend in P3 state for reads */ 270*4882a593Smuzhiyun #define HPC3_PIOCFG_P3R_MASK 0x0001e 271*4882a593Smuzhiyun #define HPC3_PIOCFG_P3R_SHIFT 1 272*4882a593Smuzhiyun /* Cycles to spend in P4 state for reads */ 273*4882a593Smuzhiyun #define HPC3_PIOCFG_P4R_MASK 0x001e0 274*4882a593Smuzhiyun #define HPC3_PIOCFG_P4R_SHIFT 5 275*4882a593Smuzhiyun /* Cycles to spend in P2 state for writes */ 276*4882a593Smuzhiyun #define HPC3_PIOCFG_P2W_MASK 0x00200 277*4882a593Smuzhiyun #define HPC3_PIOCFG_P2W_SHIFT 9 278*4882a593Smuzhiyun /* Cycles to spend in P3 state for writes */ 279*4882a593Smuzhiyun #define HPC3_PIOCFG_P3W_MASK 0x03c00 280*4882a593Smuzhiyun #define HPC3_PIOCFG_P3W_SHIFT 10 281*4882a593Smuzhiyun /* Cycles to spend in P4 state for writes */ 282*4882a593Smuzhiyun #define HPC3_PIOCFG_P4W_MASK 0x3c000 283*4882a593Smuzhiyun #define HPC3_PIOCFG_P4W_SHIFT 14 284*4882a593Smuzhiyun /* Enable 16-bit PIO accesses */ 285*4882a593Smuzhiyun #define HPC3_PIOCFG_DS16 0x40000 286*4882a593Smuzhiyun /* Place even address bits in bits <15:8> */ 287*4882a593Smuzhiyun #define HPC3_PIOCFG_EVENHI 0x80000 288*4882a593Smuzhiyun 289*4882a593Smuzhiyun /* PBUS PROM control regs. */ 290*4882a593Smuzhiyun volatile u32 pbus_promwe; /* PROM write enable register */ 291*4882a593Smuzhiyun #define HPC3_PROM_WENAB 0x1 /* Enable writes to the PROM */ 292*4882a593Smuzhiyun 293*4882a593Smuzhiyun u32 _unused5[0x0800/4 - 1]; 294*4882a593Smuzhiyun volatile u32 pbus_promswap; /* Chip select swap reg */ 295*4882a593Smuzhiyun #define HPC3_PROM_SWAP 0x1 /* invert GIO addr bit to select prom0 or prom1 */ 296*4882a593Smuzhiyun 297*4882a593Smuzhiyun u32 _unused6[0x0800/4 - 1]; 298*4882a593Smuzhiyun volatile u32 pbus_gout; /* PROM general purpose output reg */ 299*4882a593Smuzhiyun #define HPC3_PROM_STAT 0x1 /* General purpose status bit in gout */ 300*4882a593Smuzhiyun 301*4882a593Smuzhiyun u32 _unused7[0x1000/4 - 1]; 302*4882a593Smuzhiyun volatile u32 rtcregs[14]; /* Dallas clock registers */ 303*4882a593Smuzhiyun u32 _unused8[50]; 304*4882a593Smuzhiyun volatile u32 bbram[8192-50-14]; /* Battery backed ram */ 305*4882a593Smuzhiyun }; 306*4882a593Smuzhiyun 307*4882a593Smuzhiyun /* 308*4882a593Smuzhiyun * It is possible to have two HPC3's within the address space on 309*4882a593Smuzhiyun * one machine, though only having one is more likely on an Indy. 310*4882a593Smuzhiyun */ 311*4882a593Smuzhiyun extern struct hpc3_regs *hpc3c0, *hpc3c1; 312*4882a593Smuzhiyun #define HPC3_CHIP0_BASE 0x1fb80000 /* physical */ 313*4882a593Smuzhiyun #define HPC3_CHIP1_BASE 0x1fb00000 /* physical */ 314*4882a593Smuzhiyun 315*4882a593Smuzhiyun extern void sgihpc_init(void); 316*4882a593Smuzhiyun 317*4882a593Smuzhiyun #endif /* _SGI_HPC3_H */ 318