root/dev/pci/cs4281reg.h

/* [<][>][^][v][top][bottom][index][help] */

INCLUDED FROM


    1 /*      $OpenBSD: cs4281reg.h,v 1.2 2001/02/09 21:15:23 aaron Exp $ */
    2 /*      $Tera: cs4281reg.h,v 1.9 2000/12/31 10:52:25 tacha Exp $        */
    3 
    4 /*
    5  * Copyright (c) 2000 Tatoku Ogaito.  All rights reserved.
    6  *
    7  * Redistribution and use in source and binary forms, with or without
    8  * modification, are permitted provided that the following conditions
    9  * are met:
   10  * 1. Redistributions of source code must retain the above copyright
   11  *    notice, this list of conditions and the following disclaimer.
   12  * 2. Redistributions in binary form must reproduce the above copyright
   13  *    notice, this list of conditions and the following disclaimer in the
   14  *    documentation and/or other materials provided with the distribution.
   15  * 3. All advertising materials mentioning features or use of this software
   16  *    must display the following acknowledgement:
   17  *      This product includes software developed by Tatoku Ogaito
   18  *      for the NetBSD Project.
   19  * 4. The name of the author may not be used to endorse or promote products
   20  *    derived from this software without specific prior written permission
   21  *
   22  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
   23  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
   24  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
   25  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
   26  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
   27  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
   28  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
   29  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
   30  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
   31  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
   32  */
   33 
   34 
   35 #define CS4281_BA0_SIZE         
   36 #define CS4281_BA1_SIZE         0x10000
   37 #define CS4281_BUFFER_SIZE      0x10000
   38 
   39 /* Base Address 0 */
   40 
   41 /* Interrupt Reporting Registers */
   42 #define CS4281_HISR    0x000 /* Host Interrupt Status Register*/
   43 #define  HISR_INTENA       0x80000000
   44 #define  HISR_MIDI         0x00400000
   45 #define  HISR_FIFOI        0x00100000
   46 #define  HISR_DMAI         0x00040000
   47 #define  HISR_FIFO3        0x00008000
   48 #define  HISR_FIFO2        0x00004000
   49 #define  HISR_FIFO1        0x00002000
   50 #define  HISR_FIFO0        0x00001000
   51 #define  HISR_DMA3         0x00000800
   52 #define  HISR_DMA2         0x00000400
   53 #define  HISR_DMA1         0x00000200
   54 #define  HISR_DMA0         0x00000100
   55 #define  HISR_GPPI         0x00000020
   56 #define  HISR_GPSI         0x00000010
   57 #define  HISR_GP3I         0x00000008
   58 #define  HISR_GP1I         0x00000004
   59 #define  HISR_VUPI         0x00000002
   60 #define  HISR_VDNI         0x00000001
   61 
   62 #define CS4281_HICR    0x008 /* Host Interrupt Control Register */
   63 #define  HICR_CHGM         0x00000002
   64 #define  HICR_IEV          0x00000001
   65 
   66 #define CS4281_HIMR    0x00C /* Host Interrupt Mask Register */
   67 #define  HIMR_MIDIM        0x00400000
   68 #define  HIMR_FIFOIM       0x00100000
   69 #define  HIMR_DMAIM        0x00040000
   70 #define  HIMR_F3IM         0x00008000
   71 #define  HIMR_F2IM         0x00004000
   72 #define  HIMR_F1IM         0x00002000
   73 #define  HIMR_F0IM         0x00001000
   74 #define  HIMR_D3IM         0x00000800
   75 #define  HIMR_D2IM         0x00000400
   76 #define  HIMR_D1IM         0x00000200
   77 #define  HIMR_D0IM         0x00000100
   78 #define  HIMR_GPPIM        0x00000020
   79 #define  HIMR_GPSIM        0x00000010
   80 #define  HIMR_GP3IM        0x00000008
   81 #define  HIMR_GP1IM        0x00000004
   82 #define  HIMR_VUPIM        0x00000002
   83 #define  HIMR_VDNIM        0x00000001
   84 
   85 #define CS4281_IIER    0x010 /* ISA Interrupt Enable Register */
   86 
   87 #define CS4281_HDSR0   0x0F0 /* Host DMA Engine 0 Status Register */
   88 #define CS4281_HDSR1   0x0F4 /* Host DMA Engine 1 Status Register */
   89 #define CS4281_HDSR2   0x0F8 /* Host DMA Engine 2 Status Register */
   90 #define CS4281_HDSR3   0x0FC /* Host DMA Engine 3 Status Register */
   91 #define CS4281_DCA0    0x110 /* DMA Engine 0 Current Address Register */
   92 #define CS4281_DCC0    0x114 /* DMA Engine 0 Current Count Register */
   93 #define CS4281_DBA0    0x118 /* DMA Engine 0 Base Address Register */
   94 #define CS4281_DBC0    0x11C /* DMA Engine 0 Base Count Register */
   95 #define CS4281_DCA1    0x120 /* DMA Engine 1 Current Address Register */
   96 #define CS4281_DCC1    0x124 /* DMA Engine 1 Current Count Register */
   97 #define CS4281_DBA1    0x128 /* DMA Engine 1 Base Address Register */
   98 #define CS4281_DBC1    0x12C /* DMA Engine 1 Base Count Register */
   99 #define CS4281_DCA2    0x130 /* DMA Engine 2 Current Address Register */
  100 #define CS4281_DCC2    0x134 /* DMA Engine 2 Current Count Register */
  101 #define CS4281_DBA2    0x138 /* DMA Engine 2 Base Address Register */
  102 #define CS4281_DBC2    0x13C /* DMA Engine 2 Base Count Register */
  103 #define CS4281_DCA3    0x140 /* DMA Engine 3 Current Address Register */
  104 #define CS4281_DCC3    0x144 /* DMA Engine 3 Current Count Register */
  105 #define CS4281_DBA3    0x148 /* DMA Engine 3 Base Address Register */
  106 #define CS4281_DBC3    0x14C /* DMA Engine 3 Base Count Register */
  107 #define CS4281_DMR0    0x150 /* DMA Engine 0 Mode Register */
  108 #define CS4281_DCR0    0x154 /* DMA Engine 0 Command Register */
  109 #define CS4281_DMR1    0x158 /* DMA Engine 1 Mode Register */
  110 #define CS4281_DCR1    0x15C /* DMA Engine 1 Command Register */
  111 #define CS4281_DMR2    0x160 /* DMA Engine 2 Mode Register */
  112 #define CS4281_DCR2    0x164 /* DMA Engine 2 Command Register */
  113 #define CS4281_DMR3    0x168 /* DMA Engine 3 Mode Register */
  114 #define CS4281_DCR3    0x16C /* DMA Engine 3 Command Register */
  115 /* DMRn common bit description*/
  116 #define  DMRn_DMA      0x20000000
  117 #define  DMRn_POLL     0x10000000
  118 #define  DMRn_TBC      0x02000000
  119 #define  DMRn_CBC      0x01000000
  120 #define  DMRn_SWAPC    0x00400000
  121 #define  DMRn_SIZE20   0x00100000
  122 #define  DMRn_USIGN    0x00080000
  123 #define  DMRn_BEND     0x00040000
  124 #define  DMRn_MONO     0x00020000
  125 #define  DMRn_SIZE8    0x00010000
  126 #define  DMRn_FMTMSK   ( DMRn_SWAPC | DMRn_SIZE20 | DMRn_USIGN | DMRn_BEND | DMRn_MONO | DMRn_SIZE8 )
  127 #define  DMRn_TYPE1    0x00000080
  128 #define  DMRn_TYPE0    0x00000040
  129 #define  DMRn_DEC      0x00000020
  130 #define  DMRn_AUTO     0x00000010
  131 #define  DMRn_TR_MASK  0x0000000c
  132 #define  DMRn_TR_READ  0x00000008
  133 #define  DMRn_TR_WRITE 0x00000004
  134 /* DCRn common bit description*/
  135 #define  DCRn_HTCIE    0x00020000 /* Half Terminal Count Interrupt Enable */
  136 #define  DCRn_TCIE     0x00010000 /* Terminal Count Interrupt Enable */
  137 #define  DCRn_MSK      0x00000001
  138 
  139 #define CS4281_FCR0    0x180 /* FIFO Control Register 0 */
  140 #define CS4281_FCR1    0x184 /* FIFO Control Register 1 */
  141 #define CS4281_FCR2    0x188 /* FIFO Control Register 2 */
  142 #define CS4281_FCR3    0x18C /* FIFO Control Register 3 */
  143 #define  FCRn_FEN      0x80000000
  144 #define  FCRn_DACZ     0x40000000
  145 #define  FCRn_PSH      0x20000000
  146 
  147 #define CS4281_FPDR0   0x190 /* FIFO Polled Data Register 0 */
  148 #define CS4281_FPDR1   0x194 /* FIFO Polled Data Register 1 */
  149 #define CS4281_FPDR2   0x198 /* FIFO Polled Data Register 2 */
  150 #define CS4281_FPDR3   0x19C /* FIFO Polled Data Register 3 */
  151 #define CS4281_FCHS    0x20C /* FIFO Channel Status */
  152 #define CS4281_FSIC0   0x210 /* FIFO Status and Interrupt Control Register 0 */
  153 #define CS4281_FSIC1   0x214 /* FIFO Status and Interrupt Control Register 1 */
  154 #define CS4281_FSIC2   0x218 /* FIFO Status and Interrupt Control Register 2 */
  155 #define CS4281_FSIC3   0x21C /* FIFO Status and Interrupt Control Register 3 */
  156 
  157 #if 0
  158 300h - 340h /*    PCI Configuration Space Echo, offsets 00h - 42h, RO */
  159 #endif
  160 
  161 #define CS4281_PMCS    0x344 /* Power Management Control/Status */
  162 #define CS4281_CWPR    0x3E0 /* Configuration Write Protect Register */
  163 #define CS4281_EPPMC   0x3E4 /* Extended PCI Power Management Control */
  164 #define EPPMC_FPDN     (0x1 << 14)
  165 #define CS4281_GPIOR   0x3E8 /* GPIO Pin Interface Register */
  166 #define CS4281_SPMC    0x3EC /* Serial Port Power Management Control (& ASDIN2 enable) */
  167 #define  SPMC_RSTN     0x00000001
  168 #define  SPMC_ASYN     0x00000002
  169 #define  SPMC_WUP1     0x00000004
  170 #define  SPMC_WUP2     0x00000008
  171 #define  SPMC_ASDO     0x00000080
  172 #define  SPMC_ASDI2E   0x00000100
  173 #define  SPMC_EESPD    0x00000200
  174 #define  SPMC_GISPEN   0x00000400
  175 #define  SPMC_GIPPEN   0x00008000
  176 #define CS4281_CFLR    0x3F0 /* Configuration Load Register (EEPROM or BIOS) */
  177 #define CS4281_IISR    0x3F4 /* ISA Interrupt Select Register */
  178 #define CS4281_TMS     0x3F8 /* Test Register - Reserved */
  179 
  180 #define CS4281_SSVID   0x3FC /* Subsystem ID register (read-only version at 32Ch) */
  181 
  182 #define CS4281_CLKCR1  0x400 /* Clock Control Register 1 */
  183 #define  CLKCR1_DLLSS0 0x00000004
  184 #define  CLKCR1_DLLSS1 0x00000008
  185 #define  CLKCR1_DLLP   0x00000010
  186 #define  CLKCR1_SWCE   0x00000020
  187 #define  CLKCR1_DLLOS  0x00000040
  188 #define  CLKCR1_CKRA   0x00010000
  189 #define  CLKCR1_CKRN   0x00020000
  190 #define  CLKCR1_DLLRDY 0x01000000
  191 #define  CLKCR1_CLKON  0x02000000
  192 
  193 #define CS4281_FRR     0x410 /* Feature Reporting Register */
  194 #define CS4281_SLT12O  0x41C /* Slot 12 GPIO Output Register for AC Link */
  195 
  196 #define CS4281_SERMC   0x420 /* Serial Port Master Control Register */
  197 #define  SERMC_MSPE    0x00000001
  198 #define  SERMC_PTCMASK 0x0000000E
  199 #define  SERMC_PTCAC97 0x00000002
  200 #define  SERMC_PLB     0x00000100
  201 #define  SERMC_PXLB    0x00000200
  202 #define  SERMC_TCID0   0x00010000
  203 #define  SERMC_TICD1   0x00020000
  204 #define  SERMC_LOVF    0x00080000
  205 #define  SERMC_SLB     0x00100000
  206 #define  SERMC_SXLB    0x00200000
  207 #define  SERMC_ODSEN1  0x01000000
  208 #define  SERMC_ODSEN2  0x02000000
  209 #define  SERMC_FCRN    0x08000000
  210 #define CS4281_SERC1   0x428 /* Serial Port Configuration Register 1 - RO */
  211 #define CS4281_SERC2   0x42C /* Serial Port Configuration Register 2 - RO */
  212 
  213 #define CS4281_SLT12M  0x45C /* Slot 12 Monitor Register for Primary AC Link */
  214 
  215 /*
  216  * AC97 Registers are moved to cs428xreg.h since
  217  * they are common for CS4280 and CS4281
  218  */
  219 
  220 #define CS4281_JSPT    0x480 /* Joystick Poll/Trigger Register */
  221 #define CS4281_JSCTL   0x484 /* Joystick Control Register */
  222 #define CS4281_MIDCR   0x490 /* MIDI Control Register */
  223 #define CS4281_MIDCMD  0x494 /* MIDI Command Register - WO */
  224 #define CS4281_MIDSR   0x494 /* MIDI Status Register - RO */
  225 #define CS4281_MIDWP   0x498 /* MIDI Write Port */
  226 #define CS4281_MIDRP   0x49C /* MIDI Read Port - RO */
  227 #define CS4281_AODSD1  0x4A8 /* AC `97 On-Demand Slot Disable for primary link - RO */
  228 #define CS4281_AODSD2  0x4AC /* AC `97 On-Demand Slot Disable for secondary link - RO */
  229 #define CS4281_CFGI    0x4B0 /* Configuration Interface Register (EEPROM interface) */
  230 #define CS4281_SLT12M2 0x4DC /* Slot 12 Monitor Register 2 for Secondary AC Link */
  231 #define CS4281_ACSTS2  0x4E4 /* AC 97 Status Register 2 */
  232 #define  ACSTS2_CRDY2  0x00000001
  233 #define  ACSTS2_BSYS2  0x00000002
  234 #define CS4281_ACISV2  0x4F4 /* AC 97 Input Slot Valid Register 2 */
  235 #define CS4281_ACSAD2  0x4F8 /* AC 97 Status Address Register 2 */
  236 #define CS4281_ACSDA2  0x4FC /* AC 97 Status Data Register 2 */
  237 #define CS4281_FMSR    0x730 /* FM Synthesis Status Register - RO */
  238 #define CS4281_B0AP    0x730 /* FM Bank 0 Address Port - WO */
  239 #define CS4281_FMDP    0x734 /* FM Data Port */
  240 #define CS4281_B1AP    0x738 /* FM Bank 1 Address Port */
  241 #define CS4281_B1DP    0x73C /* FM Bank 1 Data Port */
  242 #define CS4281_SSPM    0x740 /* Sound System Power Management */
  243 #define  SSPM_ALL      0x0000007E
  244 #define  SSPM_MIXEN    0x00000040   /* p167 */
  245 #define  SSPM_CSRCEN   0x00000020
  246 #define  SSPM_PSRCEN   0x00000010
  247 #define  SSPM_JSEN     0x00000008
  248 #define  SSPM_ACLEN    0x00000004
  249 #define  SSPM_FMEN     0x00000002
  250 
  251 #define CS4281_DACSR   0x744 /* DAC Sample Rate - Playback SRC */
  252 #define CS4281_ADCSR   0x748 /* ADC Sample Rate - Capture SRC */
  253 #define CS4281_SSCR    0x74C /* Sound System Control Register */
  254 #define  SSCR_HVS1     0x00800000  /* Hardware Volume step by 1 */
  255 #define  SSCR_MVCS     0x00080000  /* Master Volume Codec Select */
  256 #define  SSCR_MVLD     0x00040000  /* Master Volume Line Out Disable */
  257 #define  SSCR_MVAD     0x00020000  /* Master Volume Alternate Out Disable */
  258 #define  SSCR_MVMD     0x00010000  /* Master Volume Mono Out Disable */
  259 #define  SSCR_XLPSRC   0x00000100  /* External SRC loopback mode */
  260 #define  SSCR_LPSRC    0x00000080  /* SRC loopback mode */
  261 #define  SSCR_CDTX     0x00000020  /* CD Transfer Data */
  262 #define  SSCR_HVC      0x00000008  /* Hardware Volume Control Enable */
  263 #define CS4281_FMLVC   0x754 /* FM Synthesis Left Volume Control */
  264 #define CS4281_FMRVC   0x758 /* FM Synthesis Right Volume Control */
  265 #define CS4281_SRCSA   0x75C /* SRC Slot Assignments */
  266 #define CS4281_PPLVC   0x760 /* PCM Playback Left Volume Control */
  267 #define CS4281_PPRVC   0x764 /* PCM Playback Right Volume Control */
  268 
  269 /* Base Address 1 Direct Memory Map */
  270 
  271 #if 0
  272 0000h - 03FFh    FIFO RAM    Audio Sample RAM Memory Block - FIFOs
  273                              Logical Size: 256 x 32 bits (1 kbytes stereo double words)
  274 0400h - D51Fh    Reserved    Reserved internal memory
  275 D600h - FFFFh    Reserved    Reserved for future use
  276 #endif
  277 
  278 #define CS4281_ACCTL   0x460    /* AC97 Control Register */
  279 #define  ACCTL_RSTN        0x00000001 /* Only for CS4280 */
  280 #define  ACCTL_ESYN        0x00000002
  281 #define  ACCTL_VFRM        0x00000004
  282 #define  ACCTL_DCV         0x00000008
  283 #define  ACCTL_CRW         0x00000010
  284 #define  ACCTL_ASYN        0x00000020 /* Only for CS4280 */
  285 #define  ACCTL_TC          0x00000040
  286 
  287 #define CS4281_ACSTS   0x464    /* AC97 Status Register */
  288 #define  ACSTS_CRDY        0x00000001
  289 #define  ACSTS_VSTS        0x00000002
  290 
  291 #define CS4281_ACOSV   0x468    /* AC97 Output Slot Valid Register */
  292 #define  ACOSV_SLV3        0x00000001
  293 #define  ACOSV_SLV4        0x00000002
  294 #define  ACOSV_SLV5        0x00000004
  295 #define  ACOSV_SLV6        0x00000008
  296 #define  ACOSV_SLV7        0x00000010
  297 #define  ACOSV_SLV8        0x00000020
  298 #define  ACOSV_SLV9        0x00000040
  299 #define  ACOSV_SLV10       0x00000080
  300 #define  ACOSV_SLV11       0x00000100
  301 #define  ACOSV_SLV12       0x00000200
  302 
  303 #define CS4281_ACCAD   0x46c    /* AC97 Command Address Register */
  304 #define CS4281_ACCDA   0x470    /* AC97 Command Data Register */
  305 
  306 #define CS4281_ACISV   0x474    /* AC97 Input Slot Valid Register */
  307 #define  ACISV_ISV3        0x00000001
  308 #define  ACISV_ISV4        0x00000002
  309 #define  ACISV_ISV5        0x00000004
  310 #define  ACISV_ISV6        0x00000008
  311 #define  ACISV_ISV7        0x00000010
  312 #define  ACISV_ISV8        0x00000020
  313 #define  ACISV_ISV9        0x00000040
  314 #define  ACISV_ISV10       0x00000080
  315 #define  ACISV_ISV11       0x00000100
  316 #define  ACISV_ISV12       0x00000200
  317 #define CS4281_ACSAD   0x478    /* AC97 Status Address Register */
  318 #define CS4281_ACSDA   0x47c    /* AC97 Status Data Register */
  319 
  320 /* AC97 Registers */
  321 #define CS4281_SAVE_REG_MAX     0x10
  322 
  323 /* for AC97_REG_POWER */
  324 #define CS4281_POWER_DOWN_ALL   0x7f0f

/* [<][>][^][v][top][bottom][index][help] */