0001
0002
0003
0004
0005
0006
0007
0008
0009
0010
0011
0012
0013
0014
0015 #include <linux/io.h>
0016 #include <linux/delay.h>
0017 #include <linux/interrupt.h>
0018 #include <linux/init.h>
0019 #include <linux/pci.h>
0020 #include <linux/slab.h>
0021 #include <linux/gameport.h>
0022 #include <linux/module.h>
0023 #include <linux/mutex.h>
0024
0025 #include <sound/core.h>
0026 #include <sound/control.h>
0027 #include <sound/pcm.h>
0028 #include <sound/rawmidi.h>
0029 #ifdef CHIP1371
0030 #include <sound/ac97_codec.h>
0031 #else
0032 #include <sound/ak4531_codec.h>
0033 #endif
0034 #include <sound/initval.h>
0035 #include <sound/asoundef.h>
0036
0037 #ifndef CHIP1371
0038 #undef CHIP1370
0039 #define CHIP1370
0040 #endif
0041
0042 #ifdef CHIP1370
0043 #define DRIVER_NAME "ENS1370"
0044 #define CHIP_NAME "ES1370"
0045 #else
0046 #define DRIVER_NAME "ENS1371"
0047 #define CHIP_NAME "ES1371"
0048 #endif
0049
0050
0051 MODULE_AUTHOR("Jaroslav Kysela <perex@perex.cz>, Thomas Sailer <sailer@ife.ee.ethz.ch>");
0052 MODULE_LICENSE("GPL");
0053 #ifdef CHIP1370
0054 MODULE_DESCRIPTION("Ensoniq AudioPCI ES1370");
0055 #endif
0056 #ifdef CHIP1371
0057 MODULE_DESCRIPTION("Ensoniq/Creative AudioPCI ES1371+");
0058 #endif
0059
0060 #if IS_REACHABLE(CONFIG_GAMEPORT)
0061 #define SUPPORT_JOYSTICK
0062 #endif
0063
0064 static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX;
0065 static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR;
0066 static bool enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP;
0067 #ifdef SUPPORT_JOYSTICK
0068 #ifdef CHIP1371
0069 static int joystick_port[SNDRV_CARDS];
0070 #else
0071 static bool joystick[SNDRV_CARDS];
0072 #endif
0073 #endif
0074 #ifdef CHIP1371
0075 static int spdif[SNDRV_CARDS];
0076 static int lineio[SNDRV_CARDS];
0077 #endif
0078
0079 module_param_array(index, int, NULL, 0444);
0080 MODULE_PARM_DESC(index, "Index value for Ensoniq AudioPCI soundcard.");
0081 module_param_array(id, charp, NULL, 0444);
0082 MODULE_PARM_DESC(id, "ID string for Ensoniq AudioPCI soundcard.");
0083 module_param_array(enable, bool, NULL, 0444);
0084 MODULE_PARM_DESC(enable, "Enable Ensoniq AudioPCI soundcard.");
0085 #ifdef SUPPORT_JOYSTICK
0086 #ifdef CHIP1371
0087 module_param_hw_array(joystick_port, int, ioport, NULL, 0444);
0088 MODULE_PARM_DESC(joystick_port, "Joystick port address.");
0089 #else
0090 module_param_array(joystick, bool, NULL, 0444);
0091 MODULE_PARM_DESC(joystick, "Enable joystick.");
0092 #endif
0093 #endif
0094 #ifdef CHIP1371
0095 module_param_array(spdif, int, NULL, 0444);
0096 MODULE_PARM_DESC(spdif, "S/PDIF output (-1 = none, 0 = auto, 1 = force).");
0097 module_param_array(lineio, int, NULL, 0444);
0098 MODULE_PARM_DESC(lineio, "Line In to Rear Out (0 = auto, 1 = force).");
0099 #endif
0100
0101
0102
0103
0104
0105
0106
0107 #define ES1371REV_ES1373_A 0x04
0108 #define ES1371REV_ES1373_B 0x06
0109 #define ES1371REV_CT5880_A 0x07
0110 #define CT5880REV_CT5880_C 0x02
0111 #define CT5880REV_CT5880_D 0x03
0112 #define CT5880REV_CT5880_E 0x04
0113 #define ES1371REV_ES1371_B 0x09
0114 #define EV1938REV_EV1938_A 0x00
0115 #define ES1371REV_ES1373_8 0x08
0116
0117
0118
0119
0120
0121 #define ES_REG(ensoniq, x) ((ensoniq)->port + ES_REG_##x)
0122
0123 #define ES_REG_CONTROL 0x00
0124 #define ES_1370_ADC_STOP (1<<31)
0125 #define ES_1370_XCTL1 (1<<30)
0126 #define ES_1373_BYPASS_P1 (1<<31)
0127 #define ES_1373_BYPASS_P2 (1<<30)
0128 #define ES_1373_BYPASS_R (1<<29)
0129 #define ES_1373_TEST_BIT (1<<28)
0130 #define ES_1373_RECEN_B (1<<27)
0131 #define ES_1373_SPDIF_THRU (1<<26)
0132 #define ES_1371_JOY_ASEL(o) (((o)&0x03)<<24)
0133 #define ES_1371_JOY_ASELM (0x03<<24)
0134 #define ES_1371_JOY_ASELI(i) (((i)>>24)&0x03)
0135 #define ES_1371_GPIO_IN(i) (((i)>>20)&0x0f)
0136 #define ES_1370_PCLKDIVO(o) (((o)&0x1fff)<<16)
0137 #define ES_1370_PCLKDIVM ((0x1fff)<<16)
0138 #define ES_1370_PCLKDIVI(i) (((i)>>16)&0x1fff)
0139 #define ES_1371_GPIO_OUT(o) (((o)&0x0f)<<16)
0140 #define ES_1371_GPIO_OUTM (0x0f<<16)
0141 #define ES_MSFMTSEL (1<<15)
0142 #define ES_1370_M_SBB (1<<14)
0143 #define ES_1371_SYNC_RES (1<<14)
0144 #define ES_1370_WTSRSEL(o) (((o)&0x03)<<12)
0145 #define ES_1370_WTSRSELM (0x03<<12)
0146 #define ES_1371_ADC_STOP (1<<13)
0147 #define ES_1371_PWR_INTRM (1<<12)
0148 #define ES_1370_DAC_SYNC (1<<11)
0149 #define ES_1371_M_CB (1<<11)
0150 #define ES_CCB_INTRM (1<<10)
0151 #define ES_1370_M_CB (1<<9)
0152 #define ES_1370_XCTL0 (1<<8)
0153 #define ES_1371_PDLEV(o) (((o)&0x03)<<8)
0154 #define ES_1371_PDLEVM (0x03<<8)
0155 #define ES_BREQ (1<<7)
0156 #define ES_DAC1_EN (1<<6)
0157 #define ES_DAC2_EN (1<<5)
0158 #define ES_ADC_EN (1<<4)
0159 #define ES_UART_EN (1<<3)
0160 #define ES_JYSTK_EN (1<<2)
0161 #define ES_1370_CDC_EN (1<<1)
0162 #define ES_1371_XTALCKDIS (1<<1)
0163 #define ES_1370_SERR_DISABLE (1<<0)
0164 #define ES_1371_PCICLKDIS (1<<0)
0165 #define ES_REG_STATUS 0x04
0166 #define ES_INTR (1<<31)
0167 #define ES_1371_ST_AC97_RST (1<<29)
0168 #define ES_1373_REAR_BIT27 (1<<27)
0169 #define ES_1373_REAR_BIT26 (1<<26)
0170 #define ES_1373_REAR_BIT24 (1<<24)
0171 #define ES_1373_GPIO_INT_EN(o)(((o)&0x0f)<<20)
0172 #define ES_1373_SPDIF_EN (1<<18)
0173 #define ES_1373_SPDIF_TEST (1<<17)
0174 #define ES_1371_TEST (1<<16)
0175 #define ES_1373_GPIO_INT(i) (((i)&0x0f)>>12)
0176 #define ES_1370_CSTAT (1<<10)
0177 #define ES_1370_CBUSY (1<<9)
0178 #define ES_1370_CWRIP (1<<8)
0179 #define ES_1371_SYNC_ERR (1<<8)
0180 #define ES_1371_VC(i) (((i)>>6)&0x03)
0181 #define ES_1370_VC(i) (((i)>>5)&0x03)
0182 #define ES_1371_MPWR (1<<5)
0183 #define ES_MCCB (1<<4)
0184 #define ES_UART (1<<3)
0185 #define ES_DAC1 (1<<2)
0186 #define ES_DAC2 (1<<1)
0187 #define ES_ADC (1<<0)
0188 #define ES_REG_UART_DATA 0x08
0189 #define ES_REG_UART_STATUS 0x09
0190 #define ES_RXINT (1<<7)
0191 #define ES_TXINT (1<<2)
0192 #define ES_TXRDY (1<<1)
0193 #define ES_RXRDY (1<<0)
0194 #define ES_REG_UART_CONTROL 0x09
0195 #define ES_RXINTEN (1<<7)
0196 #define ES_TXINTENO(o) (((o)&0x03)<<5)
0197 #define ES_TXINTENM (0x03<<5)
0198 #define ES_TXINTENI(i) (((i)>>5)&0x03)
0199 #define ES_CNTRL(o) (((o)&0x03)<<0)
0200 #define ES_CNTRLM (0x03<<0)
0201 #define ES_REG_UART_RES 0x0a
0202 #define ES_TEST_MODE (1<<0)
0203 #define ES_REG_MEM_PAGE 0x0c
0204 #define ES_MEM_PAGEO(o) (((o)&0x0f)<<0)
0205 #define ES_MEM_PAGEM (0x0f<<0)
0206 #define ES_MEM_PAGEI(i) (((i)>>0)&0x0f)
0207 #define ES_REG_1370_CODEC 0x10
0208 #define ES_1370_CODEC_WRITE(a,d) ((((a)&0xff)<<8)|(((d)&0xff)<<0))
0209 #define ES_REG_1371_CODEC 0x14
0210 #define ES_1371_CODEC_RDY (1<<31)
0211 #define ES_1371_CODEC_WIP (1<<30)
0212 #define EV_1938_CODEC_MAGIC (1<<26)
0213 #define ES_1371_CODEC_PIRD (1<<23)
0214 #define ES_1371_CODEC_WRITE(a,d) ((((a)&0x7f)<<16)|(((d)&0xffff)<<0))
0215 #define ES_1371_CODEC_READS(a) ((((a)&0x7f)<<16)|ES_1371_CODEC_PIRD)
0216 #define ES_1371_CODEC_READ(i) (((i)>>0)&0xffff)
0217
0218 #define ES_REG_1371_SMPRATE 0x10
0219 #define ES_1371_SRC_RAM_ADDRO(o) (((o)&0x7f)<<25)
0220 #define ES_1371_SRC_RAM_ADDRM (0x7f<<25)
0221 #define ES_1371_SRC_RAM_ADDRI(i) (((i)>>25)&0x7f)
0222 #define ES_1371_SRC_RAM_WE (1<<24)
0223 #define ES_1371_SRC_RAM_BUSY (1<<23)
0224 #define ES_1371_SRC_DISABLE (1<<22)
0225 #define ES_1371_DIS_P1 (1<<21)
0226 #define ES_1371_DIS_P2 (1<<20)
0227 #define ES_1371_DIS_R1 (1<<19)
0228 #define ES_1371_SRC_RAM_DATAO(o) (((o)&0xffff)<<0)
0229 #define ES_1371_SRC_RAM_DATAM (0xffff<<0)
0230 #define ES_1371_SRC_RAM_DATAI(i) (((i)>>0)&0xffff)
0231
0232 #define ES_REG_1371_LEGACY 0x18
0233 #define ES_1371_JFAST (1<<31)
0234 #define ES_1371_HIB (1<<30)
0235 #define ES_1371_VSB (1<<29)
0236 #define ES_1371_VMPUO(o) (((o)&0x03)<<27)
0237 #define ES_1371_VMPUM (0x03<<27)
0238 #define ES_1371_VMPUI(i) (((i)>>27)&0x03)
0239 #define ES_1371_VCDCO(o) (((o)&0x03)<<25)
0240 #define ES_1371_VCDCM (0x03<<25)
0241 #define ES_1371_VCDCI(i) (((i)>>25)&0x03)
0242 #define ES_1371_FIRQ (1<<24)
0243 #define ES_1371_SDMACAP (1<<23)
0244 #define ES_1371_SPICAP (1<<22)
0245 #define ES_1371_MDMACAP (1<<21)
0246 #define ES_1371_MPICAP (1<<20)
0247 #define ES_1371_ADCAP (1<<19)
0248 #define ES_1371_SVCAP (1<<18)
0249 #define ES_1371_CDCCAP (1<<17)
0250 #define ES_1371_BACAP (1<<16)
0251 #define ES_1371_EXI(i) (((i)>>8)&0x07)
0252 #define ES_1371_AI(i) (((i)>>3)&0x1f)
0253 #define ES_1371_WR (1<<2)
0254 #define ES_1371_LEGINT (1<<0)
0255
0256 #define ES_REG_CHANNEL_STATUS 0x1c
0257
0258 #define ES_REG_SERIAL 0x20
0259 #define ES_1371_DAC_TEST (1<<22)
0260 #define ES_P2_END_INCO(o) (((o)&0x07)<<19)
0261 #define ES_P2_END_INCM (0x07<<19)
0262 #define ES_P2_END_INCI(i) (((i)>>16)&0x07)
0263 #define ES_P2_ST_INCO(o) (((o)&0x07)<<16)
0264 #define ES_P2_ST_INCM (0x07<<16)
0265 #define ES_P2_ST_INCI(i) (((i)<<16)&0x07)
0266 #define ES_R1_LOOP_SEL (1<<15)
0267 #define ES_P2_LOOP_SEL (1<<14)
0268 #define ES_P1_LOOP_SEL (1<<13)
0269 #define ES_P2_PAUSE (1<<12)
0270 #define ES_P1_PAUSE (1<<11)
0271 #define ES_R1_INT_EN (1<<10)
0272 #define ES_P2_INT_EN (1<<9)
0273 #define ES_P1_INT_EN (1<<8)
0274 #define ES_P1_SCT_RLD (1<<7)
0275 #define ES_P2_DAC_SEN (1<<6)
0276 #define ES_R1_MODEO(o) (((o)&0x03)<<4)
0277 #define ES_R1_MODEM (0x03<<4)
0278 #define ES_R1_MODEI(i) (((i)>>4)&0x03)
0279 #define ES_P2_MODEO(o) (((o)&0x03)<<2)
0280 #define ES_P2_MODEM (0x03<<2)
0281 #define ES_P2_MODEI(i) (((i)>>2)&0x03)
0282 #define ES_P1_MODEO(o) (((o)&0x03)<<0)
0283 #define ES_P1_MODEM (0x03<<0)
0284 #define ES_P1_MODEI(i) (((i)>>0)&0x03)
0285
0286 #define ES_REG_DAC1_COUNT 0x24
0287 #define ES_REG_DAC2_COUNT 0x28
0288 #define ES_REG_ADC_COUNT 0x2c
0289 #define ES_REG_CURR_COUNT(i) (((i)>>16)&0xffff)
0290 #define ES_REG_COUNTO(o) (((o)&0xffff)<<0)
0291 #define ES_REG_COUNTM (0xffff<<0)
0292 #define ES_REG_COUNTI(i) (((i)>>0)&0xffff)
0293
0294 #define ES_REG_DAC1_FRAME 0x30
0295 #define ES_REG_DAC1_SIZE 0x34
0296 #define ES_REG_DAC2_FRAME 0x38
0297 #define ES_REG_DAC2_SIZE 0x3c
0298 #define ES_REG_ADC_FRAME 0x30
0299 #define ES_REG_ADC_SIZE 0x34
0300 #define ES_REG_FCURR_COUNTO(o) (((o)&0xffff)<<16)
0301 #define ES_REG_FCURR_COUNTM (0xffff<<16)
0302 #define ES_REG_FCURR_COUNTI(i) (((i)>>14)&0x3fffc)
0303 #define ES_REG_FSIZEO(o) (((o)&0xffff)<<0)
0304 #define ES_REG_FSIZEM (0xffff<<0)
0305 #define ES_REG_FSIZEI(i) (((i)>>0)&0xffff)
0306 #define ES_REG_PHANTOM_FRAME 0x38
0307 #define ES_REG_PHANTOM_COUNT 0x3c
0308
0309 #define ES_REG_UART_FIFO 0x30
0310 #define ES_REG_UF_VALID (1<<8)
0311 #define ES_REG_UF_BYTEO(o) (((o)&0xff)<<0)
0312 #define ES_REG_UF_BYTEM (0xff<<0)
0313 #define ES_REG_UF_BYTEI(i) (((i)>>0)&0xff)
0314
0315
0316
0317
0318
0319
0320 #define ES_PAGE_DAC 0x0c
0321 #define ES_PAGE_ADC 0x0d
0322 #define ES_PAGE_UART 0x0e
0323 #define ES_PAGE_UART1 0x0f
0324
0325
0326
0327
0328
0329 #define ES_SMPREG_DAC1 0x70
0330 #define ES_SMPREG_DAC2 0x74
0331 #define ES_SMPREG_ADC 0x78
0332 #define ES_SMPREG_VOL_ADC 0x6c
0333 #define ES_SMPREG_VOL_DAC1 0x7c
0334 #define ES_SMPREG_VOL_DAC2 0x7e
0335 #define ES_SMPREG_TRUNC_N 0x00
0336 #define ES_SMPREG_INT_REGS 0x01
0337 #define ES_SMPREG_ACCUM_FRAC 0x02
0338 #define ES_SMPREG_VFREQ_FRAC 0x03
0339
0340
0341
0342
0343
0344 #define ES_1370_SRCLOCK 1411200
0345 #define ES_1370_SRTODIV(x) (ES_1370_SRCLOCK/(x)-2)
0346
0347
0348
0349
0350
0351 #define ES_MODE_PLAY1 0x0001
0352 #define ES_MODE_PLAY2 0x0002
0353 #define ES_MODE_CAPTURE 0x0004
0354
0355 #define ES_MODE_OUTPUT 0x0001
0356 #define ES_MODE_INPUT 0x0002
0357
0358
0359
0360
0361
0362 struct ensoniq {
0363 spinlock_t reg_lock;
0364 struct mutex src_mutex;
0365
0366 int irq;
0367
0368 unsigned long playback1size;
0369 unsigned long playback2size;
0370 unsigned long capture3size;
0371
0372 unsigned long port;
0373 unsigned int mode;
0374 unsigned int uartm;
0375
0376 unsigned int ctrl;
0377 unsigned int sctrl;
0378 unsigned int cssr;
0379 unsigned int uartc;
0380 unsigned int rev;
0381
0382 union {
0383 #ifdef CHIP1371
0384 struct {
0385 struct snd_ac97 *ac97;
0386 } es1371;
0387 #else
0388 struct {
0389 int pclkdiv_lock;
0390 struct snd_ak4531 *ak4531;
0391 } es1370;
0392 #endif
0393 } u;
0394
0395 struct pci_dev *pci;
0396 struct snd_card *card;
0397 struct snd_pcm *pcm1;
0398 struct snd_pcm *pcm2;
0399 struct snd_pcm_substream *playback1_substream;
0400 struct snd_pcm_substream *playback2_substream;
0401 struct snd_pcm_substream *capture_substream;
0402 unsigned int p1_dma_size;
0403 unsigned int p2_dma_size;
0404 unsigned int c_dma_size;
0405 unsigned int p1_period_size;
0406 unsigned int p2_period_size;
0407 unsigned int c_period_size;
0408 struct snd_rawmidi *rmidi;
0409 struct snd_rawmidi_substream *midi_input;
0410 struct snd_rawmidi_substream *midi_output;
0411
0412 unsigned int spdif;
0413 unsigned int spdif_default;
0414 unsigned int spdif_stream;
0415
0416 #ifdef CHIP1370
0417 struct snd_dma_buffer *dma_bug;
0418 #endif
0419
0420 #ifdef SUPPORT_JOYSTICK
0421 struct gameport *gameport;
0422 #endif
0423 };
0424
0425 static irqreturn_t snd_audiopci_interrupt(int irq, void *dev_id);
0426
0427 static const struct pci_device_id snd_audiopci_ids[] = {
0428 #ifdef CHIP1370
0429 { PCI_VDEVICE(ENSONIQ, 0x5000), 0, },
0430 #endif
0431 #ifdef CHIP1371
0432 { PCI_VDEVICE(ENSONIQ, 0x1371), 0, },
0433 { PCI_VDEVICE(ENSONIQ, 0x5880), 0, },
0434 { PCI_VDEVICE(ECTIVA, 0x8938), 0, },
0435 #endif
0436 { 0, }
0437 };
0438
0439 MODULE_DEVICE_TABLE(pci, snd_audiopci_ids);
0440
0441
0442
0443
0444
0445 #define POLL_COUNT 0xa000
0446
0447 #ifdef CHIP1370
0448 static const unsigned int snd_es1370_fixed_rates[] =
0449 {5512, 11025, 22050, 44100};
0450 static const struct snd_pcm_hw_constraint_list snd_es1370_hw_constraints_rates = {
0451 .count = 4,
0452 .list = snd_es1370_fixed_rates,
0453 .mask = 0,
0454 };
0455 static const struct snd_ratnum es1370_clock = {
0456 .num = ES_1370_SRCLOCK,
0457 .den_min = 29,
0458 .den_max = 353,
0459 .den_step = 1,
0460 };
0461 static const struct snd_pcm_hw_constraint_ratnums snd_es1370_hw_constraints_clock = {
0462 .nrats = 1,
0463 .rats = &es1370_clock,
0464 };
0465 #else
0466 static const struct snd_ratden es1371_dac_clock = {
0467 .num_min = 3000 * (1 << 15),
0468 .num_max = 48000 * (1 << 15),
0469 .num_step = 3000,
0470 .den = 1 << 15,
0471 };
0472 static const struct snd_pcm_hw_constraint_ratdens snd_es1371_hw_constraints_dac_clock = {
0473 .nrats = 1,
0474 .rats = &es1371_dac_clock,
0475 };
0476 static const struct snd_ratnum es1371_adc_clock = {
0477 .num = 48000 << 15,
0478 .den_min = 32768,
0479 .den_max = 393216,
0480 .den_step = 1,
0481 };
0482 static const struct snd_pcm_hw_constraint_ratnums snd_es1371_hw_constraints_adc_clock = {
0483 .nrats = 1,
0484 .rats = &es1371_adc_clock,
0485 };
0486 #endif
0487 static const unsigned int snd_ensoniq_sample_shift[] =
0488 {0, 1, 1, 2};
0489
0490
0491
0492
0493
0494 #ifdef CHIP1371
0495
0496 static unsigned int snd_es1371_wait_src_ready(struct ensoniq * ensoniq)
0497 {
0498 unsigned int t, r = 0;
0499
0500 for (t = 0; t < POLL_COUNT; t++) {
0501 r = inl(ES_REG(ensoniq, 1371_SMPRATE));
0502 if ((r & ES_1371_SRC_RAM_BUSY) == 0)
0503 return r;
0504 cond_resched();
0505 }
0506 dev_err(ensoniq->card->dev, "wait src ready timeout 0x%lx [0x%x]\n",
0507 ES_REG(ensoniq, 1371_SMPRATE), r);
0508 return 0;
0509 }
0510
0511 static unsigned int snd_es1371_src_read(struct ensoniq * ensoniq, unsigned short reg)
0512 {
0513 unsigned int temp, i, orig, r;
0514
0515
0516 temp = orig = snd_es1371_wait_src_ready(ensoniq);
0517
0518
0519 r = temp & (ES_1371_SRC_DISABLE | ES_1371_DIS_P1 |
0520 ES_1371_DIS_P2 | ES_1371_DIS_R1);
0521 r |= ES_1371_SRC_RAM_ADDRO(reg) | 0x10000;
0522 outl(r, ES_REG(ensoniq, 1371_SMPRATE));
0523
0524
0525 temp = snd_es1371_wait_src_ready(ensoniq);
0526
0527 if ((temp & 0x00870000) != 0x00010000) {
0528
0529 for (i = 0; i < POLL_COUNT; i++) {
0530 temp = inl(ES_REG(ensoniq, 1371_SMPRATE));
0531 if ((temp & 0x00870000) == 0x00010000)
0532 break;
0533 }
0534 }
0535
0536
0537 r = orig & (ES_1371_SRC_DISABLE | ES_1371_DIS_P1 |
0538 ES_1371_DIS_P2 | ES_1371_DIS_R1);
0539 r |= ES_1371_SRC_RAM_ADDRO(reg);
0540 outl(r, ES_REG(ensoniq, 1371_SMPRATE));
0541
0542 return temp;
0543 }
0544
0545 static void snd_es1371_src_write(struct ensoniq * ensoniq,
0546 unsigned short reg, unsigned short data)
0547 {
0548 unsigned int r;
0549
0550 r = snd_es1371_wait_src_ready(ensoniq) &
0551 (ES_1371_SRC_DISABLE | ES_1371_DIS_P1 |
0552 ES_1371_DIS_P2 | ES_1371_DIS_R1);
0553 r |= ES_1371_SRC_RAM_ADDRO(reg) | ES_1371_SRC_RAM_DATAO(data);
0554 outl(r | ES_1371_SRC_RAM_WE, ES_REG(ensoniq, 1371_SMPRATE));
0555 }
0556
0557 #endif
0558
0559 #ifdef CHIP1370
0560
0561 static void snd_es1370_codec_write(struct snd_ak4531 *ak4531,
0562 unsigned short reg, unsigned short val)
0563 {
0564 struct ensoniq *ensoniq = ak4531->private_data;
0565 unsigned long end_time = jiffies + HZ / 10;
0566
0567 #if 0
0568 dev_dbg(ensoniq->card->dev,
0569 "CODEC WRITE: reg = 0x%x, val = 0x%x (0x%x), creg = 0x%x\n",
0570 reg, val, ES_1370_CODEC_WRITE(reg, val), ES_REG(ensoniq, 1370_CODEC));
0571 #endif
0572 do {
0573 if (!(inl(ES_REG(ensoniq, STATUS)) & ES_1370_CSTAT)) {
0574 outw(ES_1370_CODEC_WRITE(reg, val), ES_REG(ensoniq, 1370_CODEC));
0575 return;
0576 }
0577 schedule_timeout_uninterruptible(1);
0578 } while (time_after(end_time, jiffies));
0579 dev_err(ensoniq->card->dev, "codec write timeout, status = 0x%x\n",
0580 inl(ES_REG(ensoniq, STATUS)));
0581 }
0582
0583 #endif
0584
0585 #ifdef CHIP1371
0586
0587 static inline bool is_ev1938(struct ensoniq *ensoniq)
0588 {
0589 return ensoniq->pci->device == 0x8938;
0590 }
0591
0592 static void snd_es1371_codec_write(struct snd_ac97 *ac97,
0593 unsigned short reg, unsigned short val)
0594 {
0595 struct ensoniq *ensoniq = ac97->private_data;
0596 unsigned int t, x, flag;
0597
0598 flag = is_ev1938(ensoniq) ? EV_1938_CODEC_MAGIC : 0;
0599 mutex_lock(&ensoniq->src_mutex);
0600 for (t = 0; t < POLL_COUNT; t++) {
0601 if (!(inl(ES_REG(ensoniq, 1371_CODEC)) & ES_1371_CODEC_WIP)) {
0602
0603 x = snd_es1371_wait_src_ready(ensoniq);
0604 outl((x & (ES_1371_SRC_DISABLE | ES_1371_DIS_P1 |
0605 ES_1371_DIS_P2 | ES_1371_DIS_R1)) | 0x00010000,
0606 ES_REG(ensoniq, 1371_SMPRATE));
0607
0608
0609 for (t = 0; t < POLL_COUNT; t++) {
0610 if ((inl(ES_REG(ensoniq, 1371_SMPRATE)) & 0x00870000) ==
0611 0x00000000)
0612 break;
0613 }
0614
0615 for (t = 0; t < POLL_COUNT; t++) {
0616 if ((inl(ES_REG(ensoniq, 1371_SMPRATE)) & 0x00870000) ==
0617 0x00010000)
0618 break;
0619 }
0620 outl(ES_1371_CODEC_WRITE(reg, val) | flag,
0621 ES_REG(ensoniq, 1371_CODEC));
0622
0623 snd_es1371_wait_src_ready(ensoniq);
0624 outl(x, ES_REG(ensoniq, 1371_SMPRATE));
0625 mutex_unlock(&ensoniq->src_mutex);
0626 return;
0627 }
0628 }
0629 mutex_unlock(&ensoniq->src_mutex);
0630 dev_err(ensoniq->card->dev, "codec write timeout at 0x%lx [0x%x]\n",
0631 ES_REG(ensoniq, 1371_CODEC), inl(ES_REG(ensoniq, 1371_CODEC)));
0632 }
0633
0634 static unsigned short snd_es1371_codec_read(struct snd_ac97 *ac97,
0635 unsigned short reg)
0636 {
0637 struct ensoniq *ensoniq = ac97->private_data;
0638 unsigned int t, x, flag, fail = 0;
0639
0640 flag = is_ev1938(ensoniq) ? EV_1938_CODEC_MAGIC : 0;
0641 __again:
0642 mutex_lock(&ensoniq->src_mutex);
0643 for (t = 0; t < POLL_COUNT; t++) {
0644 if (!(inl(ES_REG(ensoniq, 1371_CODEC)) & ES_1371_CODEC_WIP)) {
0645
0646 x = snd_es1371_wait_src_ready(ensoniq);
0647 outl((x & (ES_1371_SRC_DISABLE | ES_1371_DIS_P1 |
0648 ES_1371_DIS_P2 | ES_1371_DIS_R1)) | 0x00010000,
0649 ES_REG(ensoniq, 1371_SMPRATE));
0650
0651
0652 for (t = 0; t < POLL_COUNT; t++) {
0653 if ((inl(ES_REG(ensoniq, 1371_SMPRATE)) & 0x00870000) ==
0654 0x00000000)
0655 break;
0656 }
0657
0658 for (t = 0; t < POLL_COUNT; t++) {
0659 if ((inl(ES_REG(ensoniq, 1371_SMPRATE)) & 0x00870000) ==
0660 0x00010000)
0661 break;
0662 }
0663 outl(ES_1371_CODEC_READS(reg) | flag,
0664 ES_REG(ensoniq, 1371_CODEC));
0665
0666 snd_es1371_wait_src_ready(ensoniq);
0667 outl(x, ES_REG(ensoniq, 1371_SMPRATE));
0668
0669 for (t = 0; t < POLL_COUNT; t++) {
0670 if (!(inl(ES_REG(ensoniq, 1371_CODEC)) & ES_1371_CODEC_WIP))
0671 break;
0672 }
0673
0674 for (t = 0; t < POLL_COUNT; t++) {
0675 x = inl(ES_REG(ensoniq, 1371_CODEC));
0676 if (x & ES_1371_CODEC_RDY) {
0677 if (is_ev1938(ensoniq)) {
0678 for (t = 0; t < 100; t++)
0679 inl(ES_REG(ensoniq, CONTROL));
0680 x = inl(ES_REG(ensoniq, 1371_CODEC));
0681 }
0682 mutex_unlock(&ensoniq->src_mutex);
0683 return ES_1371_CODEC_READ(x);
0684 }
0685 }
0686 mutex_unlock(&ensoniq->src_mutex);
0687 if (++fail > 10) {
0688 dev_err(ensoniq->card->dev,
0689 "codec read timeout (final) at 0x%lx, reg = 0x%x [0x%x]\n",
0690 ES_REG(ensoniq, 1371_CODEC), reg,
0691 inl(ES_REG(ensoniq, 1371_CODEC)));
0692 return 0;
0693 }
0694 goto __again;
0695 }
0696 }
0697 mutex_unlock(&ensoniq->src_mutex);
0698 dev_err(ensoniq->card->dev, "codec read timeout at 0x%lx [0x%x]\n",
0699 ES_REG(ensoniq, 1371_CODEC), inl(ES_REG(ensoniq, 1371_CODEC)));
0700 return 0;
0701 }
0702
0703 static void snd_es1371_codec_wait(struct snd_ac97 *ac97)
0704 {
0705 msleep(750);
0706 snd_es1371_codec_read(ac97, AC97_RESET);
0707 snd_es1371_codec_read(ac97, AC97_VENDOR_ID1);
0708 snd_es1371_codec_read(ac97, AC97_VENDOR_ID2);
0709 msleep(50);
0710 }
0711
0712 static void snd_es1371_adc_rate(struct ensoniq * ensoniq, unsigned int rate)
0713 {
0714 unsigned int n, truncm, freq;
0715
0716 mutex_lock(&ensoniq->src_mutex);
0717 n = rate / 3000;
0718 if ((1 << n) & ((1 << 15) | (1 << 13) | (1 << 11) | (1 << 9)))
0719 n--;
0720 truncm = (21 * n - 1) | 1;
0721 freq = ((48000UL << 15) / rate) * n;
0722 if (rate >= 24000) {
0723 if (truncm > 239)
0724 truncm = 239;
0725 snd_es1371_src_write(ensoniq, ES_SMPREG_ADC + ES_SMPREG_TRUNC_N,
0726 (((239 - truncm) >> 1) << 9) | (n << 4));
0727 } else {
0728 if (truncm > 119)
0729 truncm = 119;
0730 snd_es1371_src_write(ensoniq, ES_SMPREG_ADC + ES_SMPREG_TRUNC_N,
0731 0x8000 | (((119 - truncm) >> 1) << 9) | (n << 4));
0732 }
0733 snd_es1371_src_write(ensoniq, ES_SMPREG_ADC + ES_SMPREG_INT_REGS,
0734 (snd_es1371_src_read(ensoniq, ES_SMPREG_ADC +
0735 ES_SMPREG_INT_REGS) & 0x00ff) |
0736 ((freq >> 5) & 0xfc00));
0737 snd_es1371_src_write(ensoniq, ES_SMPREG_ADC + ES_SMPREG_VFREQ_FRAC, freq & 0x7fff);
0738 snd_es1371_src_write(ensoniq, ES_SMPREG_VOL_ADC, n << 8);
0739 snd_es1371_src_write(ensoniq, ES_SMPREG_VOL_ADC + 1, n << 8);
0740 mutex_unlock(&ensoniq->src_mutex);
0741 }
0742
0743 static void snd_es1371_dac1_rate(struct ensoniq * ensoniq, unsigned int rate)
0744 {
0745 unsigned int freq, r;
0746
0747 mutex_lock(&ensoniq->src_mutex);
0748 freq = DIV_ROUND_CLOSEST(rate << 15, 3000);
0749 r = (snd_es1371_wait_src_ready(ensoniq) & (ES_1371_SRC_DISABLE |
0750 ES_1371_DIS_P2 | ES_1371_DIS_R1)) |
0751 ES_1371_DIS_P1;
0752 outl(r, ES_REG(ensoniq, 1371_SMPRATE));
0753 snd_es1371_src_write(ensoniq, ES_SMPREG_DAC1 + ES_SMPREG_INT_REGS,
0754 (snd_es1371_src_read(ensoniq, ES_SMPREG_DAC1 +
0755 ES_SMPREG_INT_REGS) & 0x00ff) |
0756 ((freq >> 5) & 0xfc00));
0757 snd_es1371_src_write(ensoniq, ES_SMPREG_DAC1 + ES_SMPREG_VFREQ_FRAC, freq & 0x7fff);
0758 r = (snd_es1371_wait_src_ready(ensoniq) & (ES_1371_SRC_DISABLE |
0759 ES_1371_DIS_P2 | ES_1371_DIS_R1));
0760 outl(r, ES_REG(ensoniq, 1371_SMPRATE));
0761 mutex_unlock(&ensoniq->src_mutex);
0762 }
0763
0764 static void snd_es1371_dac2_rate(struct ensoniq * ensoniq, unsigned int rate)
0765 {
0766 unsigned int freq, r;
0767
0768 mutex_lock(&ensoniq->src_mutex);
0769 freq = DIV_ROUND_CLOSEST(rate << 15, 3000);
0770 r = (snd_es1371_wait_src_ready(ensoniq) & (ES_1371_SRC_DISABLE |
0771 ES_1371_DIS_P1 | ES_1371_DIS_R1)) |
0772 ES_1371_DIS_P2;
0773 outl(r, ES_REG(ensoniq, 1371_SMPRATE));
0774 snd_es1371_src_write(ensoniq, ES_SMPREG_DAC2 + ES_SMPREG_INT_REGS,
0775 (snd_es1371_src_read(ensoniq, ES_SMPREG_DAC2 +
0776 ES_SMPREG_INT_REGS) & 0x00ff) |
0777 ((freq >> 5) & 0xfc00));
0778 snd_es1371_src_write(ensoniq, ES_SMPREG_DAC2 + ES_SMPREG_VFREQ_FRAC,
0779 freq & 0x7fff);
0780 r = (snd_es1371_wait_src_ready(ensoniq) & (ES_1371_SRC_DISABLE |
0781 ES_1371_DIS_P1 | ES_1371_DIS_R1));
0782 outl(r, ES_REG(ensoniq, 1371_SMPRATE));
0783 mutex_unlock(&ensoniq->src_mutex);
0784 }
0785
0786 #endif
0787
0788 static int snd_ensoniq_trigger(struct snd_pcm_substream *substream, int cmd)
0789 {
0790 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
0791 switch (cmd) {
0792 case SNDRV_PCM_TRIGGER_PAUSE_PUSH:
0793 case SNDRV_PCM_TRIGGER_PAUSE_RELEASE:
0794 {
0795 unsigned int what = 0;
0796 struct snd_pcm_substream *s;
0797 snd_pcm_group_for_each_entry(s, substream) {
0798 if (s == ensoniq->playback1_substream) {
0799 what |= ES_P1_PAUSE;
0800 snd_pcm_trigger_done(s, substream);
0801 } else if (s == ensoniq->playback2_substream) {
0802 what |= ES_P2_PAUSE;
0803 snd_pcm_trigger_done(s, substream);
0804 } else if (s == ensoniq->capture_substream)
0805 return -EINVAL;
0806 }
0807 spin_lock(&ensoniq->reg_lock);
0808 if (cmd == SNDRV_PCM_TRIGGER_PAUSE_PUSH)
0809 ensoniq->sctrl |= what;
0810 else
0811 ensoniq->sctrl &= ~what;
0812 outl(ensoniq->sctrl, ES_REG(ensoniq, SERIAL));
0813 spin_unlock(&ensoniq->reg_lock);
0814 break;
0815 }
0816 case SNDRV_PCM_TRIGGER_START:
0817 case SNDRV_PCM_TRIGGER_STOP:
0818 {
0819 unsigned int what = 0;
0820 struct snd_pcm_substream *s;
0821 snd_pcm_group_for_each_entry(s, substream) {
0822 if (s == ensoniq->playback1_substream) {
0823 what |= ES_DAC1_EN;
0824 snd_pcm_trigger_done(s, substream);
0825 } else if (s == ensoniq->playback2_substream) {
0826 what |= ES_DAC2_EN;
0827 snd_pcm_trigger_done(s, substream);
0828 } else if (s == ensoniq->capture_substream) {
0829 what |= ES_ADC_EN;
0830 snd_pcm_trigger_done(s, substream);
0831 }
0832 }
0833 spin_lock(&ensoniq->reg_lock);
0834 if (cmd == SNDRV_PCM_TRIGGER_START)
0835 ensoniq->ctrl |= what;
0836 else
0837 ensoniq->ctrl &= ~what;
0838 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
0839 spin_unlock(&ensoniq->reg_lock);
0840 break;
0841 }
0842 default:
0843 return -EINVAL;
0844 }
0845 return 0;
0846 }
0847
0848
0849
0850
0851
0852 static int snd_ensoniq_playback1_prepare(struct snd_pcm_substream *substream)
0853 {
0854 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
0855 struct snd_pcm_runtime *runtime = substream->runtime;
0856 unsigned int mode = 0;
0857
0858 ensoniq->p1_dma_size = snd_pcm_lib_buffer_bytes(substream);
0859 ensoniq->p1_period_size = snd_pcm_lib_period_bytes(substream);
0860 if (snd_pcm_format_width(runtime->format) == 16)
0861 mode |= 0x02;
0862 if (runtime->channels > 1)
0863 mode |= 0x01;
0864 spin_lock_irq(&ensoniq->reg_lock);
0865 ensoniq->ctrl &= ~ES_DAC1_EN;
0866 #ifdef CHIP1371
0867
0868 if (runtime->rate == 48000)
0869 ensoniq->ctrl |= ES_1373_BYPASS_P1;
0870 else
0871 ensoniq->ctrl &= ~ES_1373_BYPASS_P1;
0872 #endif
0873 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
0874 outl(ES_MEM_PAGEO(ES_PAGE_DAC), ES_REG(ensoniq, MEM_PAGE));
0875 outl(runtime->dma_addr, ES_REG(ensoniq, DAC1_FRAME));
0876 outl((ensoniq->p1_dma_size >> 2) - 1, ES_REG(ensoniq, DAC1_SIZE));
0877 ensoniq->sctrl &= ~(ES_P1_LOOP_SEL | ES_P1_PAUSE | ES_P1_SCT_RLD | ES_P1_MODEM);
0878 ensoniq->sctrl |= ES_P1_INT_EN | ES_P1_MODEO(mode);
0879 outl(ensoniq->sctrl, ES_REG(ensoniq, SERIAL));
0880 outl((ensoniq->p1_period_size >> snd_ensoniq_sample_shift[mode]) - 1,
0881 ES_REG(ensoniq, DAC1_COUNT));
0882 #ifdef CHIP1370
0883 ensoniq->ctrl &= ~ES_1370_WTSRSELM;
0884 switch (runtime->rate) {
0885 case 5512: ensoniq->ctrl |= ES_1370_WTSRSEL(0); break;
0886 case 11025: ensoniq->ctrl |= ES_1370_WTSRSEL(1); break;
0887 case 22050: ensoniq->ctrl |= ES_1370_WTSRSEL(2); break;
0888 case 44100: ensoniq->ctrl |= ES_1370_WTSRSEL(3); break;
0889 default: snd_BUG();
0890 }
0891 #endif
0892 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
0893 spin_unlock_irq(&ensoniq->reg_lock);
0894 #ifndef CHIP1370
0895 snd_es1371_dac1_rate(ensoniq, runtime->rate);
0896 #endif
0897 return 0;
0898 }
0899
0900 static int snd_ensoniq_playback2_prepare(struct snd_pcm_substream *substream)
0901 {
0902 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
0903 struct snd_pcm_runtime *runtime = substream->runtime;
0904 unsigned int mode = 0;
0905
0906 ensoniq->p2_dma_size = snd_pcm_lib_buffer_bytes(substream);
0907 ensoniq->p2_period_size = snd_pcm_lib_period_bytes(substream);
0908 if (snd_pcm_format_width(runtime->format) == 16)
0909 mode |= 0x02;
0910 if (runtime->channels > 1)
0911 mode |= 0x01;
0912 spin_lock_irq(&ensoniq->reg_lock);
0913 ensoniq->ctrl &= ~ES_DAC2_EN;
0914 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
0915 outl(ES_MEM_PAGEO(ES_PAGE_DAC), ES_REG(ensoniq, MEM_PAGE));
0916 outl(runtime->dma_addr, ES_REG(ensoniq, DAC2_FRAME));
0917 outl((ensoniq->p2_dma_size >> 2) - 1, ES_REG(ensoniq, DAC2_SIZE));
0918 ensoniq->sctrl &= ~(ES_P2_LOOP_SEL | ES_P2_PAUSE | ES_P2_DAC_SEN |
0919 ES_P2_END_INCM | ES_P2_ST_INCM | ES_P2_MODEM);
0920 ensoniq->sctrl |= ES_P2_INT_EN | ES_P2_MODEO(mode) |
0921 ES_P2_END_INCO(mode & 2 ? 2 : 1) | ES_P2_ST_INCO(0);
0922 outl(ensoniq->sctrl, ES_REG(ensoniq, SERIAL));
0923 outl((ensoniq->p2_period_size >> snd_ensoniq_sample_shift[mode]) - 1,
0924 ES_REG(ensoniq, DAC2_COUNT));
0925 #ifdef CHIP1370
0926 if (!(ensoniq->u.es1370.pclkdiv_lock & ES_MODE_CAPTURE)) {
0927 ensoniq->ctrl &= ~ES_1370_PCLKDIVM;
0928 ensoniq->ctrl |= ES_1370_PCLKDIVO(ES_1370_SRTODIV(runtime->rate));
0929 ensoniq->u.es1370.pclkdiv_lock |= ES_MODE_PLAY2;
0930 }
0931 #endif
0932 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
0933 spin_unlock_irq(&ensoniq->reg_lock);
0934 #ifndef CHIP1370
0935 snd_es1371_dac2_rate(ensoniq, runtime->rate);
0936 #endif
0937 return 0;
0938 }
0939
0940 static int snd_ensoniq_capture_prepare(struct snd_pcm_substream *substream)
0941 {
0942 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
0943 struct snd_pcm_runtime *runtime = substream->runtime;
0944 unsigned int mode = 0;
0945
0946 ensoniq->c_dma_size = snd_pcm_lib_buffer_bytes(substream);
0947 ensoniq->c_period_size = snd_pcm_lib_period_bytes(substream);
0948 if (snd_pcm_format_width(runtime->format) == 16)
0949 mode |= 0x02;
0950 if (runtime->channels > 1)
0951 mode |= 0x01;
0952 spin_lock_irq(&ensoniq->reg_lock);
0953 ensoniq->ctrl &= ~ES_ADC_EN;
0954 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
0955 outl(ES_MEM_PAGEO(ES_PAGE_ADC), ES_REG(ensoniq, MEM_PAGE));
0956 outl(runtime->dma_addr, ES_REG(ensoniq, ADC_FRAME));
0957 outl((ensoniq->c_dma_size >> 2) - 1, ES_REG(ensoniq, ADC_SIZE));
0958 ensoniq->sctrl &= ~(ES_R1_LOOP_SEL | ES_R1_MODEM);
0959 ensoniq->sctrl |= ES_R1_INT_EN | ES_R1_MODEO(mode);
0960 outl(ensoniq->sctrl, ES_REG(ensoniq, SERIAL));
0961 outl((ensoniq->c_period_size >> snd_ensoniq_sample_shift[mode]) - 1,
0962 ES_REG(ensoniq, ADC_COUNT));
0963 #ifdef CHIP1370
0964 if (!(ensoniq->u.es1370.pclkdiv_lock & ES_MODE_PLAY2)) {
0965 ensoniq->ctrl &= ~ES_1370_PCLKDIVM;
0966 ensoniq->ctrl |= ES_1370_PCLKDIVO(ES_1370_SRTODIV(runtime->rate));
0967 ensoniq->u.es1370.pclkdiv_lock |= ES_MODE_CAPTURE;
0968 }
0969 #endif
0970 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
0971 spin_unlock_irq(&ensoniq->reg_lock);
0972 #ifndef CHIP1370
0973 snd_es1371_adc_rate(ensoniq, runtime->rate);
0974 #endif
0975 return 0;
0976 }
0977
0978 static snd_pcm_uframes_t snd_ensoniq_playback1_pointer(struct snd_pcm_substream *substream)
0979 {
0980 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
0981 size_t ptr;
0982
0983 spin_lock(&ensoniq->reg_lock);
0984 if (inl(ES_REG(ensoniq, CONTROL)) & ES_DAC1_EN) {
0985 outl(ES_MEM_PAGEO(ES_PAGE_DAC), ES_REG(ensoniq, MEM_PAGE));
0986 ptr = ES_REG_FCURR_COUNTI(inl(ES_REG(ensoniq, DAC1_SIZE)));
0987 ptr = bytes_to_frames(substream->runtime, ptr);
0988 } else {
0989 ptr = 0;
0990 }
0991 spin_unlock(&ensoniq->reg_lock);
0992 return ptr;
0993 }
0994
0995 static snd_pcm_uframes_t snd_ensoniq_playback2_pointer(struct snd_pcm_substream *substream)
0996 {
0997 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
0998 size_t ptr;
0999
1000 spin_lock(&ensoniq->reg_lock);
1001 if (inl(ES_REG(ensoniq, CONTROL)) & ES_DAC2_EN) {
1002 outl(ES_MEM_PAGEO(ES_PAGE_DAC), ES_REG(ensoniq, MEM_PAGE));
1003 ptr = ES_REG_FCURR_COUNTI(inl(ES_REG(ensoniq, DAC2_SIZE)));
1004 ptr = bytes_to_frames(substream->runtime, ptr);
1005 } else {
1006 ptr = 0;
1007 }
1008 spin_unlock(&ensoniq->reg_lock);
1009 return ptr;
1010 }
1011
1012 static snd_pcm_uframes_t snd_ensoniq_capture_pointer(struct snd_pcm_substream *substream)
1013 {
1014 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
1015 size_t ptr;
1016
1017 spin_lock(&ensoniq->reg_lock);
1018 if (inl(ES_REG(ensoniq, CONTROL)) & ES_ADC_EN) {
1019 outl(ES_MEM_PAGEO(ES_PAGE_ADC), ES_REG(ensoniq, MEM_PAGE));
1020 ptr = ES_REG_FCURR_COUNTI(inl(ES_REG(ensoniq, ADC_SIZE)));
1021 ptr = bytes_to_frames(substream->runtime, ptr);
1022 } else {
1023 ptr = 0;
1024 }
1025 spin_unlock(&ensoniq->reg_lock);
1026 return ptr;
1027 }
1028
1029 static const struct snd_pcm_hardware snd_ensoniq_playback1 =
1030 {
1031 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1032 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1033 SNDRV_PCM_INFO_MMAP_VALID |
1034 SNDRV_PCM_INFO_PAUSE | SNDRV_PCM_INFO_SYNC_START),
1035 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1036 .rates =
1037 #ifndef CHIP1370
1038 SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
1039 #else
1040 (SNDRV_PCM_RATE_KNOT |
1041 SNDRV_PCM_RATE_11025 | SNDRV_PCM_RATE_22050 |
1042 SNDRV_PCM_RATE_44100),
1043 #endif
1044 .rate_min = 4000,
1045 .rate_max = 48000,
1046 .channels_min = 1,
1047 .channels_max = 2,
1048 .buffer_bytes_max = (128*1024),
1049 .period_bytes_min = 64,
1050 .period_bytes_max = (128*1024),
1051 .periods_min = 1,
1052 .periods_max = 1024,
1053 .fifo_size = 0,
1054 };
1055
1056 static const struct snd_pcm_hardware snd_ensoniq_playback2 =
1057 {
1058 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1059 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1060 SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_PAUSE |
1061 SNDRV_PCM_INFO_SYNC_START),
1062 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1063 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
1064 .rate_min = 4000,
1065 .rate_max = 48000,
1066 .channels_min = 1,
1067 .channels_max = 2,
1068 .buffer_bytes_max = (128*1024),
1069 .period_bytes_min = 64,
1070 .period_bytes_max = (128*1024),
1071 .periods_min = 1,
1072 .periods_max = 1024,
1073 .fifo_size = 0,
1074 };
1075
1076 static const struct snd_pcm_hardware snd_ensoniq_capture =
1077 {
1078 .info = (SNDRV_PCM_INFO_MMAP | SNDRV_PCM_INFO_INTERLEAVED |
1079 SNDRV_PCM_INFO_BLOCK_TRANSFER |
1080 SNDRV_PCM_INFO_MMAP_VALID | SNDRV_PCM_INFO_SYNC_START),
1081 .formats = SNDRV_PCM_FMTBIT_U8 | SNDRV_PCM_FMTBIT_S16_LE,
1082 .rates = SNDRV_PCM_RATE_CONTINUOUS | SNDRV_PCM_RATE_8000_48000,
1083 .rate_min = 4000,
1084 .rate_max = 48000,
1085 .channels_min = 1,
1086 .channels_max = 2,
1087 .buffer_bytes_max = (128*1024),
1088 .period_bytes_min = 64,
1089 .period_bytes_max = (128*1024),
1090 .periods_min = 1,
1091 .periods_max = 1024,
1092 .fifo_size = 0,
1093 };
1094
1095 static int snd_ensoniq_playback1_open(struct snd_pcm_substream *substream)
1096 {
1097 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
1098 struct snd_pcm_runtime *runtime = substream->runtime;
1099
1100 ensoniq->mode |= ES_MODE_PLAY1;
1101 ensoniq->playback1_substream = substream;
1102 runtime->hw = snd_ensoniq_playback1;
1103 snd_pcm_set_sync(substream);
1104 spin_lock_irq(&ensoniq->reg_lock);
1105 if (ensoniq->spdif && ensoniq->playback2_substream == NULL)
1106 ensoniq->spdif_stream = ensoniq->spdif_default;
1107 spin_unlock_irq(&ensoniq->reg_lock);
1108 #ifdef CHIP1370
1109 snd_pcm_hw_constraint_list(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1110 &snd_es1370_hw_constraints_rates);
1111 #else
1112 snd_pcm_hw_constraint_ratdens(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1113 &snd_es1371_hw_constraints_dac_clock);
1114 #endif
1115 return 0;
1116 }
1117
1118 static int snd_ensoniq_playback2_open(struct snd_pcm_substream *substream)
1119 {
1120 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
1121 struct snd_pcm_runtime *runtime = substream->runtime;
1122
1123 ensoniq->mode |= ES_MODE_PLAY2;
1124 ensoniq->playback2_substream = substream;
1125 runtime->hw = snd_ensoniq_playback2;
1126 snd_pcm_set_sync(substream);
1127 spin_lock_irq(&ensoniq->reg_lock);
1128 if (ensoniq->spdif && ensoniq->playback1_substream == NULL)
1129 ensoniq->spdif_stream = ensoniq->spdif_default;
1130 spin_unlock_irq(&ensoniq->reg_lock);
1131 #ifdef CHIP1370
1132 snd_pcm_hw_constraint_ratnums(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1133 &snd_es1370_hw_constraints_clock);
1134 #else
1135 snd_pcm_hw_constraint_ratdens(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1136 &snd_es1371_hw_constraints_dac_clock);
1137 #endif
1138 return 0;
1139 }
1140
1141 static int snd_ensoniq_capture_open(struct snd_pcm_substream *substream)
1142 {
1143 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
1144 struct snd_pcm_runtime *runtime = substream->runtime;
1145
1146 ensoniq->mode |= ES_MODE_CAPTURE;
1147 ensoniq->capture_substream = substream;
1148 runtime->hw = snd_ensoniq_capture;
1149 snd_pcm_set_sync(substream);
1150 #ifdef CHIP1370
1151 snd_pcm_hw_constraint_ratnums(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1152 &snd_es1370_hw_constraints_clock);
1153 #else
1154 snd_pcm_hw_constraint_ratnums(runtime, 0, SNDRV_PCM_HW_PARAM_RATE,
1155 &snd_es1371_hw_constraints_adc_clock);
1156 #endif
1157 return 0;
1158 }
1159
1160 static int snd_ensoniq_playback1_close(struct snd_pcm_substream *substream)
1161 {
1162 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
1163
1164 ensoniq->playback1_substream = NULL;
1165 ensoniq->mode &= ~ES_MODE_PLAY1;
1166 return 0;
1167 }
1168
1169 static int snd_ensoniq_playback2_close(struct snd_pcm_substream *substream)
1170 {
1171 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
1172
1173 ensoniq->playback2_substream = NULL;
1174 spin_lock_irq(&ensoniq->reg_lock);
1175 #ifdef CHIP1370
1176 ensoniq->u.es1370.pclkdiv_lock &= ~ES_MODE_PLAY2;
1177 #endif
1178 ensoniq->mode &= ~ES_MODE_PLAY2;
1179 spin_unlock_irq(&ensoniq->reg_lock);
1180 return 0;
1181 }
1182
1183 static int snd_ensoniq_capture_close(struct snd_pcm_substream *substream)
1184 {
1185 struct ensoniq *ensoniq = snd_pcm_substream_chip(substream);
1186
1187 ensoniq->capture_substream = NULL;
1188 spin_lock_irq(&ensoniq->reg_lock);
1189 #ifdef CHIP1370
1190 ensoniq->u.es1370.pclkdiv_lock &= ~ES_MODE_CAPTURE;
1191 #endif
1192 ensoniq->mode &= ~ES_MODE_CAPTURE;
1193 spin_unlock_irq(&ensoniq->reg_lock);
1194 return 0;
1195 }
1196
1197 static const struct snd_pcm_ops snd_ensoniq_playback1_ops = {
1198 .open = snd_ensoniq_playback1_open,
1199 .close = snd_ensoniq_playback1_close,
1200 .prepare = snd_ensoniq_playback1_prepare,
1201 .trigger = snd_ensoniq_trigger,
1202 .pointer = snd_ensoniq_playback1_pointer,
1203 };
1204
1205 static const struct snd_pcm_ops snd_ensoniq_playback2_ops = {
1206 .open = snd_ensoniq_playback2_open,
1207 .close = snd_ensoniq_playback2_close,
1208 .prepare = snd_ensoniq_playback2_prepare,
1209 .trigger = snd_ensoniq_trigger,
1210 .pointer = snd_ensoniq_playback2_pointer,
1211 };
1212
1213 static const struct snd_pcm_ops snd_ensoniq_capture_ops = {
1214 .open = snd_ensoniq_capture_open,
1215 .close = snd_ensoniq_capture_close,
1216 .prepare = snd_ensoniq_capture_prepare,
1217 .trigger = snd_ensoniq_trigger,
1218 .pointer = snd_ensoniq_capture_pointer,
1219 };
1220
1221 static const struct snd_pcm_chmap_elem surround_map[] = {
1222 { .channels = 1,
1223 .map = { SNDRV_CHMAP_MONO } },
1224 { .channels = 2,
1225 .map = { SNDRV_CHMAP_RL, SNDRV_CHMAP_RR } },
1226 { }
1227 };
1228
1229 static int snd_ensoniq_pcm(struct ensoniq *ensoniq, int device)
1230 {
1231 struct snd_pcm *pcm;
1232 int err;
1233
1234 err = snd_pcm_new(ensoniq->card, CHIP_NAME "/1", device, 1, 1, &pcm);
1235 if (err < 0)
1236 return err;
1237
1238 #ifdef CHIP1370
1239 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ensoniq_playback2_ops);
1240 #else
1241 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ensoniq_playback1_ops);
1242 #endif
1243 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, &snd_ensoniq_capture_ops);
1244
1245 pcm->private_data = ensoniq;
1246 pcm->info_flags = 0;
1247 strcpy(pcm->name, CHIP_NAME " DAC2/ADC");
1248 ensoniq->pcm1 = pcm;
1249
1250 snd_pcm_set_managed_buffer_all(pcm, SNDRV_DMA_TYPE_DEV,
1251 &ensoniq->pci->dev, 64*1024, 128*1024);
1252
1253 #ifdef CHIP1370
1254 err = snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1255 surround_map, 2, 0, NULL);
1256 #else
1257 err = snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1258 snd_pcm_std_chmaps, 2, 0, NULL);
1259 #endif
1260 return err;
1261 }
1262
1263 static int snd_ensoniq_pcm2(struct ensoniq *ensoniq, int device)
1264 {
1265 struct snd_pcm *pcm;
1266 int err;
1267
1268 err = snd_pcm_new(ensoniq->card, CHIP_NAME "/2", device, 1, 0, &pcm);
1269 if (err < 0)
1270 return err;
1271
1272 #ifdef CHIP1370
1273 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ensoniq_playback1_ops);
1274 #else
1275 snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, &snd_ensoniq_playback2_ops);
1276 #endif
1277 pcm->private_data = ensoniq;
1278 pcm->info_flags = 0;
1279 strcpy(pcm->name, CHIP_NAME " DAC1");
1280 ensoniq->pcm2 = pcm;
1281
1282 snd_pcm_set_managed_buffer_all(pcm, SNDRV_DMA_TYPE_DEV,
1283 &ensoniq->pci->dev, 64*1024, 128*1024);
1284
1285 #ifdef CHIP1370
1286 err = snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1287 snd_pcm_std_chmaps, 2, 0, NULL);
1288 #else
1289 err = snd_pcm_add_chmap_ctls(pcm, SNDRV_PCM_STREAM_PLAYBACK,
1290 surround_map, 2, 0, NULL);
1291 #endif
1292 return err;
1293 }
1294
1295
1296
1297
1298
1299
1300
1301
1302 #ifdef CHIP1371
1303 static int snd_ens1373_spdif_info(struct snd_kcontrol *kcontrol,
1304 struct snd_ctl_elem_info *uinfo)
1305 {
1306 uinfo->type = SNDRV_CTL_ELEM_TYPE_IEC958;
1307 uinfo->count = 1;
1308 return 0;
1309 }
1310
1311 static int snd_ens1373_spdif_default_get(struct snd_kcontrol *kcontrol,
1312 struct snd_ctl_elem_value *ucontrol)
1313 {
1314 struct ensoniq *ensoniq = snd_kcontrol_chip(kcontrol);
1315 spin_lock_irq(&ensoniq->reg_lock);
1316 ucontrol->value.iec958.status[0] = (ensoniq->spdif_default >> 0) & 0xff;
1317 ucontrol->value.iec958.status[1] = (ensoniq->spdif_default >> 8) & 0xff;
1318 ucontrol->value.iec958.status[2] = (ensoniq->spdif_default >> 16) & 0xff;
1319 ucontrol->value.iec958.status[3] = (ensoniq->spdif_default >> 24) & 0xff;
1320 spin_unlock_irq(&ensoniq->reg_lock);
1321 return 0;
1322 }
1323
1324 static int snd_ens1373_spdif_default_put(struct snd_kcontrol *kcontrol,
1325 struct snd_ctl_elem_value *ucontrol)
1326 {
1327 struct ensoniq *ensoniq = snd_kcontrol_chip(kcontrol);
1328 unsigned int val;
1329 int change;
1330
1331 val = ((u32)ucontrol->value.iec958.status[0] << 0) |
1332 ((u32)ucontrol->value.iec958.status[1] << 8) |
1333 ((u32)ucontrol->value.iec958.status[2] << 16) |
1334 ((u32)ucontrol->value.iec958.status[3] << 24);
1335 spin_lock_irq(&ensoniq->reg_lock);
1336 change = ensoniq->spdif_default != val;
1337 ensoniq->spdif_default = val;
1338 if (change && ensoniq->playback1_substream == NULL &&
1339 ensoniq->playback2_substream == NULL)
1340 outl(val, ES_REG(ensoniq, CHANNEL_STATUS));
1341 spin_unlock_irq(&ensoniq->reg_lock);
1342 return change;
1343 }
1344
1345 static int snd_ens1373_spdif_mask_get(struct snd_kcontrol *kcontrol,
1346 struct snd_ctl_elem_value *ucontrol)
1347 {
1348 ucontrol->value.iec958.status[0] = 0xff;
1349 ucontrol->value.iec958.status[1] = 0xff;
1350 ucontrol->value.iec958.status[2] = 0xff;
1351 ucontrol->value.iec958.status[3] = 0xff;
1352 return 0;
1353 }
1354
1355 static int snd_ens1373_spdif_stream_get(struct snd_kcontrol *kcontrol,
1356 struct snd_ctl_elem_value *ucontrol)
1357 {
1358 struct ensoniq *ensoniq = snd_kcontrol_chip(kcontrol);
1359 spin_lock_irq(&ensoniq->reg_lock);
1360 ucontrol->value.iec958.status[0] = (ensoniq->spdif_stream >> 0) & 0xff;
1361 ucontrol->value.iec958.status[1] = (ensoniq->spdif_stream >> 8) & 0xff;
1362 ucontrol->value.iec958.status[2] = (ensoniq->spdif_stream >> 16) & 0xff;
1363 ucontrol->value.iec958.status[3] = (ensoniq->spdif_stream >> 24) & 0xff;
1364 spin_unlock_irq(&ensoniq->reg_lock);
1365 return 0;
1366 }
1367
1368 static int snd_ens1373_spdif_stream_put(struct snd_kcontrol *kcontrol,
1369 struct snd_ctl_elem_value *ucontrol)
1370 {
1371 struct ensoniq *ensoniq = snd_kcontrol_chip(kcontrol);
1372 unsigned int val;
1373 int change;
1374
1375 val = ((u32)ucontrol->value.iec958.status[0] << 0) |
1376 ((u32)ucontrol->value.iec958.status[1] << 8) |
1377 ((u32)ucontrol->value.iec958.status[2] << 16) |
1378 ((u32)ucontrol->value.iec958.status[3] << 24);
1379 spin_lock_irq(&ensoniq->reg_lock);
1380 change = ensoniq->spdif_stream != val;
1381 ensoniq->spdif_stream = val;
1382 if (change && (ensoniq->playback1_substream != NULL ||
1383 ensoniq->playback2_substream != NULL))
1384 outl(val, ES_REG(ensoniq, CHANNEL_STATUS));
1385 spin_unlock_irq(&ensoniq->reg_lock);
1386 return change;
1387 }
1388
1389 #define ES1371_SPDIF(xname) \
1390 { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .info = snd_es1371_spdif_info, \
1391 .get = snd_es1371_spdif_get, .put = snd_es1371_spdif_put }
1392
1393 #define snd_es1371_spdif_info snd_ctl_boolean_mono_info
1394
1395 static int snd_es1371_spdif_get(struct snd_kcontrol *kcontrol,
1396 struct snd_ctl_elem_value *ucontrol)
1397 {
1398 struct ensoniq *ensoniq = snd_kcontrol_chip(kcontrol);
1399
1400 spin_lock_irq(&ensoniq->reg_lock);
1401 ucontrol->value.integer.value[0] = ensoniq->ctrl & ES_1373_SPDIF_THRU ? 1 : 0;
1402 spin_unlock_irq(&ensoniq->reg_lock);
1403 return 0;
1404 }
1405
1406 static int snd_es1371_spdif_put(struct snd_kcontrol *kcontrol,
1407 struct snd_ctl_elem_value *ucontrol)
1408 {
1409 struct ensoniq *ensoniq = snd_kcontrol_chip(kcontrol);
1410 unsigned int nval1, nval2;
1411 int change;
1412
1413 nval1 = ucontrol->value.integer.value[0] ? ES_1373_SPDIF_THRU : 0;
1414 nval2 = ucontrol->value.integer.value[0] ? ES_1373_SPDIF_EN : 0;
1415 spin_lock_irq(&ensoniq->reg_lock);
1416 change = (ensoniq->ctrl & ES_1373_SPDIF_THRU) != nval1;
1417 ensoniq->ctrl &= ~ES_1373_SPDIF_THRU;
1418 ensoniq->ctrl |= nval1;
1419 ensoniq->cssr &= ~ES_1373_SPDIF_EN;
1420 ensoniq->cssr |= nval2;
1421 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
1422 outl(ensoniq->cssr, ES_REG(ensoniq, STATUS));
1423 spin_unlock_irq(&ensoniq->reg_lock);
1424 return change;
1425 }
1426
1427
1428
1429 static const struct snd_kcontrol_new snd_es1371_mixer_spdif[] = {
1430 ES1371_SPDIF(SNDRV_CTL_NAME_IEC958("",PLAYBACK,SWITCH)),
1431 {
1432 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1433 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,DEFAULT),
1434 .info = snd_ens1373_spdif_info,
1435 .get = snd_ens1373_spdif_default_get,
1436 .put = snd_ens1373_spdif_default_put,
1437 },
1438 {
1439 .access = SNDRV_CTL_ELEM_ACCESS_READ,
1440 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1441 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,MASK),
1442 .info = snd_ens1373_spdif_info,
1443 .get = snd_ens1373_spdif_mask_get
1444 },
1445 {
1446 .iface = SNDRV_CTL_ELEM_IFACE_PCM,
1447 .name = SNDRV_CTL_NAME_IEC958("",PLAYBACK,PCM_STREAM),
1448 .info = snd_ens1373_spdif_info,
1449 .get = snd_ens1373_spdif_stream_get,
1450 .put = snd_ens1373_spdif_stream_put
1451 },
1452 };
1453
1454
1455 #define snd_es1373_rear_info snd_ctl_boolean_mono_info
1456
1457 static int snd_es1373_rear_get(struct snd_kcontrol *kcontrol,
1458 struct snd_ctl_elem_value *ucontrol)
1459 {
1460 struct ensoniq *ensoniq = snd_kcontrol_chip(kcontrol);
1461 int val = 0;
1462
1463 spin_lock_irq(&ensoniq->reg_lock);
1464 if ((ensoniq->cssr & (ES_1373_REAR_BIT27|ES_1373_REAR_BIT26|
1465 ES_1373_REAR_BIT24)) == ES_1373_REAR_BIT26)
1466 val = 1;
1467 ucontrol->value.integer.value[0] = val;
1468 spin_unlock_irq(&ensoniq->reg_lock);
1469 return 0;
1470 }
1471
1472 static int snd_es1373_rear_put(struct snd_kcontrol *kcontrol,
1473 struct snd_ctl_elem_value *ucontrol)
1474 {
1475 struct ensoniq *ensoniq = snd_kcontrol_chip(kcontrol);
1476 unsigned int nval1;
1477 int change;
1478
1479 nval1 = ucontrol->value.integer.value[0] ?
1480 ES_1373_REAR_BIT26 : (ES_1373_REAR_BIT27|ES_1373_REAR_BIT24);
1481 spin_lock_irq(&ensoniq->reg_lock);
1482 change = (ensoniq->cssr & (ES_1373_REAR_BIT27|
1483 ES_1373_REAR_BIT26|ES_1373_REAR_BIT24)) != nval1;
1484 ensoniq->cssr &= ~(ES_1373_REAR_BIT27|ES_1373_REAR_BIT26|ES_1373_REAR_BIT24);
1485 ensoniq->cssr |= nval1;
1486 outl(ensoniq->cssr, ES_REG(ensoniq, STATUS));
1487 spin_unlock_irq(&ensoniq->reg_lock);
1488 return change;
1489 }
1490
1491 static const struct snd_kcontrol_new snd_ens1373_rear =
1492 {
1493 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1494 .name = "AC97 2ch->4ch Copy Switch",
1495 .info = snd_es1373_rear_info,
1496 .get = snd_es1373_rear_get,
1497 .put = snd_es1373_rear_put,
1498 };
1499
1500 #define snd_es1373_line_info snd_ctl_boolean_mono_info
1501
1502 static int snd_es1373_line_get(struct snd_kcontrol *kcontrol,
1503 struct snd_ctl_elem_value *ucontrol)
1504 {
1505 struct ensoniq *ensoniq = snd_kcontrol_chip(kcontrol);
1506 int val = 0;
1507
1508 spin_lock_irq(&ensoniq->reg_lock);
1509 if (ensoniq->ctrl & ES_1371_GPIO_OUT(4))
1510 val = 1;
1511 ucontrol->value.integer.value[0] = val;
1512 spin_unlock_irq(&ensoniq->reg_lock);
1513 return 0;
1514 }
1515
1516 static int snd_es1373_line_put(struct snd_kcontrol *kcontrol,
1517 struct snd_ctl_elem_value *ucontrol)
1518 {
1519 struct ensoniq *ensoniq = snd_kcontrol_chip(kcontrol);
1520 int changed;
1521 unsigned int ctrl;
1522
1523 spin_lock_irq(&ensoniq->reg_lock);
1524 ctrl = ensoniq->ctrl;
1525 if (ucontrol->value.integer.value[0])
1526 ensoniq->ctrl |= ES_1371_GPIO_OUT(4);
1527 else
1528 ensoniq->ctrl &= ~ES_1371_GPIO_OUT(4);
1529 changed = (ctrl != ensoniq->ctrl);
1530 if (changed)
1531 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
1532 spin_unlock_irq(&ensoniq->reg_lock);
1533 return changed;
1534 }
1535
1536 static const struct snd_kcontrol_new snd_ens1373_line =
1537 {
1538 .iface = SNDRV_CTL_ELEM_IFACE_MIXER,
1539 .name = "Line In->Rear Out Switch",
1540 .info = snd_es1373_line_info,
1541 .get = snd_es1373_line_get,
1542 .put = snd_es1373_line_put,
1543 };
1544
1545 static void snd_ensoniq_mixer_free_ac97(struct snd_ac97 *ac97)
1546 {
1547 struct ensoniq *ensoniq = ac97->private_data;
1548 ensoniq->u.es1371.ac97 = NULL;
1549 }
1550
1551 struct es1371_quirk {
1552 unsigned short vid;
1553 unsigned short did;
1554 unsigned char rev;
1555 };
1556
1557 static int es1371_quirk_lookup(struct ensoniq *ensoniq,
1558 const struct es1371_quirk *list)
1559 {
1560 while (list->vid != (unsigned short)PCI_ANY_ID) {
1561 if (ensoniq->pci->vendor == list->vid &&
1562 ensoniq->pci->device == list->did &&
1563 ensoniq->rev == list->rev)
1564 return 1;
1565 list++;
1566 }
1567 return 0;
1568 }
1569
1570 static const struct es1371_quirk es1371_spdif_present[] = {
1571 { .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_CT5880, .rev = CT5880REV_CT5880_C },
1572 { .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_CT5880, .rev = CT5880REV_CT5880_D },
1573 { .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_CT5880, .rev = CT5880REV_CT5880_E },
1574 { .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_ES1371, .rev = ES1371REV_CT5880_A },
1575 { .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_ES1371, .rev = ES1371REV_ES1373_8 },
1576 { .vid = PCI_ANY_ID, .did = PCI_ANY_ID }
1577 };
1578
1579 static const struct snd_pci_quirk ens1373_line_quirk[] = {
1580 SND_PCI_QUIRK_ID(0x1274, 0x2000),
1581 SND_PCI_QUIRK_ID(0x1458, 0xa000),
1582 { }
1583 };
1584
1585 static int snd_ensoniq_1371_mixer(struct ensoniq *ensoniq,
1586 int has_spdif, int has_line)
1587 {
1588 struct snd_card *card = ensoniq->card;
1589 struct snd_ac97_bus *pbus;
1590 struct snd_ac97_template ac97;
1591 int err;
1592 static const struct snd_ac97_bus_ops ops = {
1593 .write = snd_es1371_codec_write,
1594 .read = snd_es1371_codec_read,
1595 .wait = snd_es1371_codec_wait,
1596 };
1597
1598 err = snd_ac97_bus(card, 0, &ops, NULL, &pbus);
1599 if (err < 0)
1600 return err;
1601
1602 memset(&ac97, 0, sizeof(ac97));
1603 ac97.private_data = ensoniq;
1604 ac97.private_free = snd_ensoniq_mixer_free_ac97;
1605 ac97.pci = ensoniq->pci;
1606 ac97.scaps = AC97_SCAP_AUDIO;
1607 err = snd_ac97_mixer(pbus, &ac97, &ensoniq->u.es1371.ac97);
1608 if (err < 0)
1609 return err;
1610 if (has_spdif > 0 ||
1611 (!has_spdif && es1371_quirk_lookup(ensoniq, es1371_spdif_present))) {
1612 struct snd_kcontrol *kctl;
1613 int i, is_spdif = 0;
1614
1615 ensoniq->spdif_default = ensoniq->spdif_stream =
1616 SNDRV_PCM_DEFAULT_CON_SPDIF;
1617 outl(ensoniq->spdif_default, ES_REG(ensoniq, CHANNEL_STATUS));
1618
1619 if (ensoniq->u.es1371.ac97->ext_id & AC97_EI_SPDIF)
1620 is_spdif++;
1621
1622 for (i = 0; i < ARRAY_SIZE(snd_es1371_mixer_spdif); i++) {
1623 kctl = snd_ctl_new1(&snd_es1371_mixer_spdif[i], ensoniq);
1624 if (!kctl)
1625 return -ENOMEM;
1626 kctl->id.index = is_spdif;
1627 err = snd_ctl_add(card, kctl);
1628 if (err < 0)
1629 return err;
1630 }
1631 }
1632 if (ensoniq->u.es1371.ac97->ext_id & AC97_EI_SDAC) {
1633
1634 ensoniq->cssr &= ~(ES_1373_REAR_BIT27|ES_1373_REAR_BIT24);
1635 ensoniq->cssr |= ES_1373_REAR_BIT26;
1636 err = snd_ctl_add(card, snd_ctl_new1(&snd_ens1373_rear, ensoniq));
1637 if (err < 0)
1638 return err;
1639 }
1640 if (has_line > 0 ||
1641 snd_pci_quirk_lookup(ensoniq->pci, ens1373_line_quirk)) {
1642 err = snd_ctl_add(card, snd_ctl_new1(&snd_ens1373_line,
1643 ensoniq));
1644 if (err < 0)
1645 return err;
1646 }
1647
1648 return 0;
1649 }
1650
1651 #endif
1652
1653
1654 #ifdef CHIP1370
1655 #define ENSONIQ_CONTROL(xname, mask) \
1656 { .iface = SNDRV_CTL_ELEM_IFACE_CARD, .name = xname, .info = snd_ensoniq_control_info, \
1657 .get = snd_ensoniq_control_get, .put = snd_ensoniq_control_put, \
1658 .private_value = mask }
1659
1660 #define snd_ensoniq_control_info snd_ctl_boolean_mono_info
1661
1662 static int snd_ensoniq_control_get(struct snd_kcontrol *kcontrol,
1663 struct snd_ctl_elem_value *ucontrol)
1664 {
1665 struct ensoniq *ensoniq = snd_kcontrol_chip(kcontrol);
1666 int mask = kcontrol->private_value;
1667
1668 spin_lock_irq(&ensoniq->reg_lock);
1669 ucontrol->value.integer.value[0] = ensoniq->ctrl & mask ? 1 : 0;
1670 spin_unlock_irq(&ensoniq->reg_lock);
1671 return 0;
1672 }
1673
1674 static int snd_ensoniq_control_put(struct snd_kcontrol *kcontrol,
1675 struct snd_ctl_elem_value *ucontrol)
1676 {
1677 struct ensoniq *ensoniq = snd_kcontrol_chip(kcontrol);
1678 int mask = kcontrol->private_value;
1679 unsigned int nval;
1680 int change;
1681
1682 nval = ucontrol->value.integer.value[0] ? mask : 0;
1683 spin_lock_irq(&ensoniq->reg_lock);
1684 change = (ensoniq->ctrl & mask) != nval;
1685 ensoniq->ctrl &= ~mask;
1686 ensoniq->ctrl |= nval;
1687 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
1688 spin_unlock_irq(&ensoniq->reg_lock);
1689 return change;
1690 }
1691
1692
1693
1694
1695
1696 static const struct snd_kcontrol_new snd_es1370_controls[2] = {
1697 ENSONIQ_CONTROL("PCM 0 Output also on Line-In Jack", ES_1370_XCTL0),
1698 ENSONIQ_CONTROL("Mic +5V bias", ES_1370_XCTL1)
1699 };
1700
1701 #define ES1370_CONTROLS ARRAY_SIZE(snd_es1370_controls)
1702
1703 static void snd_ensoniq_mixer_free_ak4531(struct snd_ak4531 *ak4531)
1704 {
1705 struct ensoniq *ensoniq = ak4531->private_data;
1706 ensoniq->u.es1370.ak4531 = NULL;
1707 }
1708
1709 static int snd_ensoniq_1370_mixer(struct ensoniq *ensoniq)
1710 {
1711 struct snd_card *card = ensoniq->card;
1712 struct snd_ak4531 ak4531;
1713 unsigned int idx;
1714 int err;
1715
1716
1717 outw(ES_1370_CODEC_WRITE(AK4531_RESET, 0x02), ES_REG(ensoniq, 1370_CODEC));
1718 inw(ES_REG(ensoniq, 1370_CODEC));
1719 udelay(100);
1720 outw(ES_1370_CODEC_WRITE(AK4531_RESET, 0x03), ES_REG(ensoniq, 1370_CODEC));
1721 inw(ES_REG(ensoniq, 1370_CODEC));
1722 udelay(100);
1723
1724 memset(&ak4531, 0, sizeof(ak4531));
1725 ak4531.write = snd_es1370_codec_write;
1726 ak4531.private_data = ensoniq;
1727 ak4531.private_free = snd_ensoniq_mixer_free_ak4531;
1728 err = snd_ak4531_mixer(card, &ak4531, &ensoniq->u.es1370.ak4531);
1729 if (err < 0)
1730 return err;
1731 for (idx = 0; idx < ES1370_CONTROLS; idx++) {
1732 err = snd_ctl_add(card, snd_ctl_new1(&snd_es1370_controls[idx], ensoniq));
1733 if (err < 0)
1734 return err;
1735 }
1736 return 0;
1737 }
1738
1739 #endif
1740
1741 #ifdef SUPPORT_JOYSTICK
1742
1743 #ifdef CHIP1371
1744 static int snd_ensoniq_get_joystick_port(struct ensoniq *ensoniq, int dev)
1745 {
1746 switch (joystick_port[dev]) {
1747 case 0:
1748 case 1:
1749 case 0x200:
1750 case 0x208:
1751 case 0x210:
1752 case 0x218:
1753 return joystick_port[dev];
1754
1755 default:
1756 dev_err(ensoniq->card->dev,
1757 "invalid joystick port %#x", joystick_port[dev]);
1758 return 0;
1759 }
1760 }
1761 #else
1762 static int snd_ensoniq_get_joystick_port(struct ensoniq *ensoniq, int dev)
1763 {
1764 return joystick[dev] ? 0x200 : 0;
1765 }
1766 #endif
1767
1768 static int snd_ensoniq_create_gameport(struct ensoniq *ensoniq, int dev)
1769 {
1770 struct gameport *gp;
1771 int io_port;
1772
1773 io_port = snd_ensoniq_get_joystick_port(ensoniq, dev);
1774
1775 switch (io_port) {
1776 case 0:
1777 return -ENOSYS;
1778
1779 case 1:
1780 for (io_port = 0x200; io_port <= 0x218; io_port += 8)
1781 if (request_region(io_port, 8, "ens137x: gameport"))
1782 break;
1783 if (io_port > 0x218) {
1784 dev_warn(ensoniq->card->dev,
1785 "no gameport ports available\n");
1786 return -EBUSY;
1787 }
1788 break;
1789
1790 default:
1791 if (!request_region(io_port, 8, "ens137x: gameport")) {
1792 dev_warn(ensoniq->card->dev,
1793 "gameport io port %#x in use\n",
1794 io_port);
1795 return -EBUSY;
1796 }
1797 break;
1798 }
1799
1800 ensoniq->gameport = gp = gameport_allocate_port();
1801 if (!gp) {
1802 dev_err(ensoniq->card->dev,
1803 "cannot allocate memory for gameport\n");
1804 release_region(io_port, 8);
1805 return -ENOMEM;
1806 }
1807
1808 gameport_set_name(gp, "ES137x");
1809 gameport_set_phys(gp, "pci%s/gameport0", pci_name(ensoniq->pci));
1810 gameport_set_dev_parent(gp, &ensoniq->pci->dev);
1811 gp->io = io_port;
1812
1813 ensoniq->ctrl |= ES_JYSTK_EN;
1814 #ifdef CHIP1371
1815 ensoniq->ctrl &= ~ES_1371_JOY_ASELM;
1816 ensoniq->ctrl |= ES_1371_JOY_ASEL((io_port - 0x200) / 8);
1817 #endif
1818 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
1819
1820 gameport_register_port(ensoniq->gameport);
1821
1822 return 0;
1823 }
1824
1825 static void snd_ensoniq_free_gameport(struct ensoniq *ensoniq)
1826 {
1827 if (ensoniq->gameport) {
1828 int port = ensoniq->gameport->io;
1829
1830 gameport_unregister_port(ensoniq->gameport);
1831 ensoniq->gameport = NULL;
1832 ensoniq->ctrl &= ~ES_JYSTK_EN;
1833 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
1834 release_region(port, 8);
1835 }
1836 }
1837 #else
1838 static inline int snd_ensoniq_create_gameport(struct ensoniq *ensoniq, long port) { return -ENOSYS; }
1839 static inline void snd_ensoniq_free_gameport(struct ensoniq *ensoniq) { }
1840 #endif
1841
1842
1843
1844
1845
1846 static void snd_ensoniq_proc_read(struct snd_info_entry *entry,
1847 struct snd_info_buffer *buffer)
1848 {
1849 struct ensoniq *ensoniq = entry->private_data;
1850
1851 snd_iprintf(buffer, "Ensoniq AudioPCI " CHIP_NAME "\n\n");
1852 snd_iprintf(buffer, "Joystick enable : %s\n",
1853 ensoniq->ctrl & ES_JYSTK_EN ? "on" : "off");
1854 #ifdef CHIP1370
1855 snd_iprintf(buffer, "MIC +5V bias : %s\n",
1856 ensoniq->ctrl & ES_1370_XCTL1 ? "on" : "off");
1857 snd_iprintf(buffer, "Line In to AOUT : %s\n",
1858 ensoniq->ctrl & ES_1370_XCTL0 ? "on" : "off");
1859 #else
1860 snd_iprintf(buffer, "Joystick port : 0x%x\n",
1861 (ES_1371_JOY_ASELI(ensoniq->ctrl) * 8) + 0x200);
1862 #endif
1863 }
1864
1865 static void snd_ensoniq_proc_init(struct ensoniq *ensoniq)
1866 {
1867 snd_card_ro_proc_new(ensoniq->card, "audiopci", ensoniq,
1868 snd_ensoniq_proc_read);
1869 }
1870
1871
1872
1873
1874
1875 static void snd_ensoniq_free(struct snd_card *card)
1876 {
1877 struct ensoniq *ensoniq = card->private_data;
1878
1879 snd_ensoniq_free_gameport(ensoniq);
1880 #ifdef CHIP1370
1881 outl(ES_1370_SERR_DISABLE, ES_REG(ensoniq, CONTROL));
1882 outl(0, ES_REG(ensoniq, SERIAL));
1883 #else
1884 outl(0, ES_REG(ensoniq, CONTROL));
1885 outl(0, ES_REG(ensoniq, SERIAL));
1886 #endif
1887 }
1888
1889 #ifdef CHIP1371
1890 static const struct snd_pci_quirk es1371_amplifier_hack[] = {
1891 SND_PCI_QUIRK_ID(0x107b, 0x2150),
1892 SND_PCI_QUIRK_ID(0x13bd, 0x100c),
1893 SND_PCI_QUIRK_ID(0x1102, 0x5938),
1894 SND_PCI_QUIRK_ID(0x1102, 0x8938),
1895 { }
1896 };
1897
1898 static const struct es1371_quirk es1371_ac97_reset_hack[] = {
1899 { .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_CT5880, .rev = CT5880REV_CT5880_C },
1900 { .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_CT5880, .rev = CT5880REV_CT5880_D },
1901 { .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_CT5880, .rev = CT5880REV_CT5880_E },
1902 { .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_ES1371, .rev = ES1371REV_CT5880_A },
1903 { .vid = PCI_VENDOR_ID_ENSONIQ, .did = PCI_DEVICE_ID_ENSONIQ_ES1371, .rev = ES1371REV_ES1373_8 },
1904 { .vid = PCI_ANY_ID, .did = PCI_ANY_ID }
1905 };
1906 #endif
1907
1908 static void snd_ensoniq_chip_init(struct ensoniq *ensoniq)
1909 {
1910 #ifdef CHIP1371
1911 int idx;
1912 #endif
1913
1914
1915
1916 #ifdef CHIP1370
1917 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
1918 outl(ensoniq->sctrl, ES_REG(ensoniq, SERIAL));
1919 outl(ES_MEM_PAGEO(ES_PAGE_ADC), ES_REG(ensoniq, MEM_PAGE));
1920 outl(ensoniq->dma_bug->addr, ES_REG(ensoniq, PHANTOM_FRAME));
1921 outl(0, ES_REG(ensoniq, PHANTOM_COUNT));
1922 #else
1923 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
1924 outl(ensoniq->sctrl, ES_REG(ensoniq, SERIAL));
1925 outl(0, ES_REG(ensoniq, 1371_LEGACY));
1926 if (es1371_quirk_lookup(ensoniq, es1371_ac97_reset_hack)) {
1927 outl(ensoniq->cssr, ES_REG(ensoniq, STATUS));
1928
1929
1930 msleep(20);
1931 }
1932
1933 outl(ensoniq->ctrl | ES_1371_SYNC_RES, ES_REG(ensoniq, CONTROL));
1934 inl(ES_REG(ensoniq, CONTROL));
1935 udelay(20);
1936 outl(ensoniq->ctrl, ES_REG(ensoniq, CONTROL));
1937
1938 snd_es1371_wait_src_ready(ensoniq);
1939 outl(ES_1371_SRC_DISABLE, ES_REG(ensoniq, 1371_SMPRATE));
1940 for (idx = 0; idx < 0x80; idx++)
1941 snd_es1371_src_write(ensoniq, idx, 0);
1942 snd_es1371_src_write(ensoniq, ES_SMPREG_DAC1 + ES_SMPREG_TRUNC_N, 16 << 4);
1943 snd_es1371_src_write(ensoniq, ES_SMPREG_DAC1 + ES_SMPREG_INT_REGS, 16 << 10);
1944 snd_es1371_src_write(ensoniq, ES_SMPREG_DAC2 + ES_SMPREG_TRUNC_N, 16 << 4);
1945 snd_es1371_src_write(ensoniq, ES_SMPREG_DAC2 + ES_SMPREG_INT_REGS, 16 << 10);
1946 snd_es1371_src_write(ensoniq, ES_SMPREG_VOL_ADC, 1 << 12);
1947 snd_es1371_src_write(ensoniq, ES_SMPREG_VOL_ADC + 1, 1 << 12);
1948 snd_es1371_src_write(ensoniq, ES_SMPREG_VOL_DAC1, 1 << 12);
1949 snd_es1371_src_write(ensoniq, ES_SMPREG_VOL_DAC1 + 1, 1 << 12);
1950 snd_es1371_src_write(ensoniq, ES_SMPREG_VOL_DAC2, 1 << 12);
1951 snd_es1371_src_write(ensoniq, ES_SMPREG_VOL_DAC2 + 1, 1 << 12);
1952 snd_es1371_adc_rate(ensoniq, 22050);
1953 snd_es1371_dac1_rate(ensoniq, 22050);
1954 snd_es1371_dac2_rate(ensoniq, 22050);
1955
1956
1957
1958
1959
1960
1961 snd_es1371_wait_src_ready(ensoniq);
1962 outl(0, ES_REG(ensoniq, 1371_SMPRATE));
1963
1964 outl(ES_1371_CODEC_WRITE(0, 0), ES_REG(ensoniq, 1371_CODEC));
1965 #endif
1966 outb(ensoniq->uartc = 0x00, ES_REG(ensoniq, UART_CONTROL));
1967 outb(0x00, ES_REG(ensoniq, UART_RES));
1968 outl(ensoniq->cssr, ES_REG(ensoniq, STATUS));
1969 }
1970
1971 #ifdef CONFIG_PM_SLEEP
1972 static int snd_ensoniq_suspend(struct device *dev)
1973 {
1974 struct snd_card *card = dev_get_drvdata(dev);
1975 struct ensoniq *ensoniq = card->private_data;
1976
1977 snd_power_change_state(card, SNDRV_CTL_POWER_D3hot);
1978
1979 #ifdef CHIP1371
1980 snd_ac97_suspend(ensoniq->u.es1371.ac97);
1981 #else
1982
1983 outw(ES_1370_CODEC_WRITE(AK4531_RESET, 0x02), ES_REG(ensoniq, 1370_CODEC));
1984 inw(ES_REG(ensoniq, 1370_CODEC));
1985 udelay(100);
1986 outw(ES_1370_CODEC_WRITE(AK4531_RESET, 0x03), ES_REG(ensoniq, 1370_CODEC));
1987 inw(ES_REG(ensoniq, 1370_CODEC));
1988 udelay(100);
1989 snd_ak4531_suspend(ensoniq->u.es1370.ak4531);
1990 #endif
1991 return 0;
1992 }
1993
1994 static int snd_ensoniq_resume(struct device *dev)
1995 {
1996 struct snd_card *card = dev_get_drvdata(dev);
1997 struct ensoniq *ensoniq = card->private_data;
1998
1999 snd_ensoniq_chip_init(ensoniq);
2000
2001 #ifdef CHIP1371
2002 snd_ac97_resume(ensoniq->u.es1371.ac97);
2003 #else
2004 snd_ak4531_resume(ensoniq->u.es1370.ak4531);
2005 #endif
2006 snd_power_change_state(card, SNDRV_CTL_POWER_D0);
2007 return 0;
2008 }
2009
2010 static SIMPLE_DEV_PM_OPS(snd_ensoniq_pm, snd_ensoniq_suspend, snd_ensoniq_resume);
2011 #define SND_ENSONIQ_PM_OPS &snd_ensoniq_pm
2012 #else
2013 #define SND_ENSONIQ_PM_OPS NULL
2014 #endif
2015
2016 static int snd_ensoniq_create(struct snd_card *card,
2017 struct pci_dev *pci)
2018 {
2019 struct ensoniq *ensoniq = card->private_data;
2020 int err;
2021
2022 err = pcim_enable_device(pci);
2023 if (err < 0)
2024 return err;
2025 spin_lock_init(&ensoniq->reg_lock);
2026 mutex_init(&ensoniq->src_mutex);
2027 ensoniq->card = card;
2028 ensoniq->pci = pci;
2029 ensoniq->irq = -1;
2030 err = pci_request_regions(pci, "Ensoniq AudioPCI");
2031 if (err < 0)
2032 return err;
2033 ensoniq->port = pci_resource_start(pci, 0);
2034 if (devm_request_irq(&pci->dev, pci->irq, snd_audiopci_interrupt,
2035 IRQF_SHARED, KBUILD_MODNAME, ensoniq)) {
2036 dev_err(card->dev, "unable to grab IRQ %d\n", pci->irq);
2037 return -EBUSY;
2038 }
2039 ensoniq->irq = pci->irq;
2040 card->sync_irq = ensoniq->irq;
2041 #ifdef CHIP1370
2042 ensoniq->dma_bug =
2043 snd_devm_alloc_pages(&pci->dev, SNDRV_DMA_TYPE_DEV, 16);
2044 if (!ensoniq->dma_bug)
2045 return -ENOMEM;
2046 #endif
2047 pci_set_master(pci);
2048 ensoniq->rev = pci->revision;
2049 #ifdef CHIP1370
2050 #if 0
2051 ensoniq->ctrl = ES_1370_CDC_EN | ES_1370_SERR_DISABLE |
2052 ES_1370_PCLKDIVO(ES_1370_SRTODIV(8000));
2053 #else
2054 ensoniq->ctrl = ES_1370_CDC_EN | ES_1370_PCLKDIVO(ES_1370_SRTODIV(8000));
2055 #endif
2056 ensoniq->sctrl = 0;
2057 #else
2058 ensoniq->ctrl = 0;
2059 ensoniq->sctrl = 0;
2060 ensoniq->cssr = 0;
2061 if (snd_pci_quirk_lookup(pci, es1371_amplifier_hack))
2062 ensoniq->ctrl |= ES_1371_GPIO_OUT(1);
2063
2064 if (es1371_quirk_lookup(ensoniq, es1371_ac97_reset_hack))
2065 ensoniq->cssr |= ES_1371_ST_AC97_RST;
2066 #endif
2067
2068 card->private_free = snd_ensoniq_free;
2069 snd_ensoniq_chip_init(ensoniq);
2070
2071 snd_ensoniq_proc_init(ensoniq);
2072 return 0;
2073 }
2074
2075
2076
2077
2078
2079 static void snd_ensoniq_midi_interrupt(struct ensoniq * ensoniq)
2080 {
2081 struct snd_rawmidi *rmidi = ensoniq->rmidi;
2082 unsigned char status, mask, byte;
2083
2084 if (rmidi == NULL)
2085 return;
2086
2087 spin_lock(&ensoniq->reg_lock);
2088 mask = ensoniq->uartm & ES_MODE_INPUT ? ES_RXRDY : 0;
2089 while (mask) {
2090 status = inb(ES_REG(ensoniq, UART_STATUS));
2091 if ((status & mask) == 0)
2092 break;
2093 byte = inb(ES_REG(ensoniq, UART_DATA));
2094 snd_rawmidi_receive(ensoniq->midi_input, &byte, 1);
2095 }
2096 spin_unlock(&ensoniq->reg_lock);
2097
2098
2099 spin_lock(&ensoniq->reg_lock);
2100 mask = ensoniq->uartm & ES_MODE_OUTPUT ? ES_TXRDY : 0;
2101 while (mask) {
2102 status = inb(ES_REG(ensoniq, UART_STATUS));
2103 if ((status & mask) == 0)
2104 break;
2105 if (snd_rawmidi_transmit(ensoniq->midi_output, &byte, 1) != 1) {
2106 ensoniq->uartc &= ~ES_TXINTENM;
2107 outb(ensoniq->uartc, ES_REG(ensoniq, UART_CONTROL));
2108 mask &= ~ES_TXRDY;
2109 } else {
2110 outb(byte, ES_REG(ensoniq, UART_DATA));
2111 }
2112 }
2113 spin_unlock(&ensoniq->reg_lock);
2114 }
2115
2116 static int snd_ensoniq_midi_input_open(struct snd_rawmidi_substream *substream)
2117 {
2118 struct ensoniq *ensoniq = substream->rmidi->private_data;
2119
2120 spin_lock_irq(&ensoniq->reg_lock);
2121 ensoniq->uartm |= ES_MODE_INPUT;
2122 ensoniq->midi_input = substream;
2123 if (!(ensoniq->uartm & ES_MODE_OUTPUT)) {
2124 outb(ES_CNTRL(3), ES_REG(ensoniq, UART_CONTROL));
2125 outb(ensoniq->uartc = 0, ES_REG(ensoniq, UART_CONTROL));
2126 outl(ensoniq->ctrl |= ES_UART_EN, ES_REG(ensoniq, CONTROL));
2127 }
2128 spin_unlock_irq(&ensoniq->reg_lock);
2129 return 0;
2130 }
2131
2132 static int snd_ensoniq_midi_input_close(struct snd_rawmidi_substream *substream)
2133 {
2134 struct ensoniq *ensoniq = substream->rmidi->private_data;
2135
2136 spin_lock_irq(&ensoniq->reg_lock);
2137 if (!(ensoniq->uartm & ES_MODE_OUTPUT)) {
2138 outb(ensoniq->uartc = 0, ES_REG(ensoniq, UART_CONTROL));
2139 outl(ensoniq->ctrl &= ~ES_UART_EN, ES_REG(ensoniq, CONTROL));
2140 } else {
2141 outb(ensoniq->uartc &= ~ES_RXINTEN, ES_REG(ensoniq, UART_CONTROL));
2142 }
2143 ensoniq->midi_input = NULL;
2144 ensoniq->uartm &= ~ES_MODE_INPUT;
2145 spin_unlock_irq(&ensoniq->reg_lock);
2146 return 0;
2147 }
2148
2149 static int snd_ensoniq_midi_output_open(struct snd_rawmidi_substream *substream)
2150 {
2151 struct ensoniq *ensoniq = substream->rmidi->private_data;
2152
2153 spin_lock_irq(&ensoniq->reg_lock);
2154 ensoniq->uartm |= ES_MODE_OUTPUT;
2155 ensoniq->midi_output = substream;
2156 if (!(ensoniq->uartm & ES_MODE_INPUT)) {
2157 outb(ES_CNTRL(3), ES_REG(ensoniq, UART_CONTROL));
2158 outb(ensoniq->uartc = 0, ES_REG(ensoniq, UART_CONTROL));
2159 outl(ensoniq->ctrl |= ES_UART_EN, ES_REG(ensoniq, CONTROL));
2160 }
2161 spin_unlock_irq(&ensoniq->reg_lock);
2162 return 0;
2163 }
2164
2165 static int snd_ensoniq_midi_output_close(struct snd_rawmidi_substream *substream)
2166 {
2167 struct ensoniq *ensoniq = substream->rmidi->private_data;
2168
2169 spin_lock_irq(&ensoniq->reg_lock);
2170 if (!(ensoniq->uartm & ES_MODE_INPUT)) {
2171 outb(ensoniq->uartc = 0, ES_REG(ensoniq, UART_CONTROL));
2172 outl(ensoniq->ctrl &= ~ES_UART_EN, ES_REG(ensoniq, CONTROL));
2173 } else {
2174 outb(ensoniq->uartc &= ~ES_TXINTENM, ES_REG(ensoniq, UART_CONTROL));
2175 }
2176 ensoniq->midi_output = NULL;
2177 ensoniq->uartm &= ~ES_MODE_OUTPUT;
2178 spin_unlock_irq(&ensoniq->reg_lock);
2179 return 0;
2180 }
2181
2182 static void snd_ensoniq_midi_input_trigger(struct snd_rawmidi_substream *substream, int up)
2183 {
2184 unsigned long flags;
2185 struct ensoniq *ensoniq = substream->rmidi->private_data;
2186 int idx;
2187
2188 spin_lock_irqsave(&ensoniq->reg_lock, flags);
2189 if (up) {
2190 if ((ensoniq->uartc & ES_RXINTEN) == 0) {
2191
2192 for (idx = 0; idx < 32; idx++)
2193 inb(ES_REG(ensoniq, UART_DATA));
2194 ensoniq->uartc |= ES_RXINTEN;
2195 outb(ensoniq->uartc, ES_REG(ensoniq, UART_CONTROL));
2196 }
2197 } else {
2198 if (ensoniq->uartc & ES_RXINTEN) {
2199 ensoniq->uartc &= ~ES_RXINTEN;
2200 outb(ensoniq->uartc, ES_REG(ensoniq, UART_CONTROL));
2201 }
2202 }
2203 spin_unlock_irqrestore(&ensoniq->reg_lock, flags);
2204 }
2205
2206 static void snd_ensoniq_midi_output_trigger(struct snd_rawmidi_substream *substream, int up)
2207 {
2208 unsigned long flags;
2209 struct ensoniq *ensoniq = substream->rmidi->private_data;
2210 unsigned char byte;
2211
2212 spin_lock_irqsave(&ensoniq->reg_lock, flags);
2213 if (up) {
2214 if (ES_TXINTENI(ensoniq->uartc) == 0) {
2215 ensoniq->uartc |= ES_TXINTENO(1);
2216
2217 while (ES_TXINTENI(ensoniq->uartc) == 1 &&
2218 (inb(ES_REG(ensoniq, UART_STATUS)) & ES_TXRDY)) {
2219 if (snd_rawmidi_transmit(substream, &byte, 1) != 1) {
2220 ensoniq->uartc &= ~ES_TXINTENM;
2221 } else {
2222 outb(byte, ES_REG(ensoniq, UART_DATA));
2223 }
2224 }
2225 outb(ensoniq->uartc, ES_REG(ensoniq, UART_CONTROL));
2226 }
2227 } else {
2228 if (ES_TXINTENI(ensoniq->uartc) == 1) {
2229 ensoniq->uartc &= ~ES_TXINTENM;
2230 outb(ensoniq->uartc, ES_REG(ensoniq, UART_CONTROL));
2231 }
2232 }
2233 spin_unlock_irqrestore(&ensoniq->reg_lock, flags);
2234 }
2235
2236 static const struct snd_rawmidi_ops snd_ensoniq_midi_output =
2237 {
2238 .open = snd_ensoniq_midi_output_open,
2239 .close = snd_ensoniq_midi_output_close,
2240 .trigger = snd_ensoniq_midi_output_trigger,
2241 };
2242
2243 static const struct snd_rawmidi_ops snd_ensoniq_midi_input =
2244 {
2245 .open = snd_ensoniq_midi_input_open,
2246 .close = snd_ensoniq_midi_input_close,
2247 .trigger = snd_ensoniq_midi_input_trigger,
2248 };
2249
2250 static int snd_ensoniq_midi(struct ensoniq *ensoniq, int device)
2251 {
2252 struct snd_rawmidi *rmidi;
2253 int err;
2254
2255 err = snd_rawmidi_new(ensoniq->card, "ES1370/1", device, 1, 1, &rmidi);
2256 if (err < 0)
2257 return err;
2258 strcpy(rmidi->name, CHIP_NAME);
2259 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_OUTPUT, &snd_ensoniq_midi_output);
2260 snd_rawmidi_set_ops(rmidi, SNDRV_RAWMIDI_STREAM_INPUT, &snd_ensoniq_midi_input);
2261 rmidi->info_flags |= SNDRV_RAWMIDI_INFO_OUTPUT | SNDRV_RAWMIDI_INFO_INPUT |
2262 SNDRV_RAWMIDI_INFO_DUPLEX;
2263 rmidi->private_data = ensoniq;
2264 ensoniq->rmidi = rmidi;
2265 return 0;
2266 }
2267
2268
2269
2270
2271
2272 static irqreturn_t snd_audiopci_interrupt(int irq, void *dev_id)
2273 {
2274 struct ensoniq *ensoniq = dev_id;
2275 unsigned int status, sctrl;
2276
2277 if (ensoniq == NULL)
2278 return IRQ_NONE;
2279
2280 status = inl(ES_REG(ensoniq, STATUS));
2281 if (!(status & ES_INTR))
2282 return IRQ_NONE;
2283
2284 spin_lock(&ensoniq->reg_lock);
2285 sctrl = ensoniq->sctrl;
2286 if (status & ES_DAC1)
2287 sctrl &= ~ES_P1_INT_EN;
2288 if (status & ES_DAC2)
2289 sctrl &= ~ES_P2_INT_EN;
2290 if (status & ES_ADC)
2291 sctrl &= ~ES_R1_INT_EN;
2292 outl(sctrl, ES_REG(ensoniq, SERIAL));
2293 outl(ensoniq->sctrl, ES_REG(ensoniq, SERIAL));
2294 spin_unlock(&ensoniq->reg_lock);
2295
2296 if (status & ES_UART)
2297 snd_ensoniq_midi_interrupt(ensoniq);
2298 if ((status & ES_DAC2) && ensoniq->playback2_substream)
2299 snd_pcm_period_elapsed(ensoniq->playback2_substream);
2300 if ((status & ES_ADC) && ensoniq->capture_substream)
2301 snd_pcm_period_elapsed(ensoniq->capture_substream);
2302 if ((status & ES_DAC1) && ensoniq->playback1_substream)
2303 snd_pcm_period_elapsed(ensoniq->playback1_substream);
2304 return IRQ_HANDLED;
2305 }
2306
2307 static int __snd_audiopci_probe(struct pci_dev *pci,
2308 const struct pci_device_id *pci_id)
2309 {
2310 static int dev;
2311 struct snd_card *card;
2312 struct ensoniq *ensoniq;
2313 int err;
2314
2315 if (dev >= SNDRV_CARDS)
2316 return -ENODEV;
2317 if (!enable[dev]) {
2318 dev++;
2319 return -ENOENT;
2320 }
2321
2322 err = snd_devm_card_new(&pci->dev, index[dev], id[dev], THIS_MODULE,
2323 sizeof(*ensoniq), &card);
2324 if (err < 0)
2325 return err;
2326 ensoniq = card->private_data;
2327
2328 err = snd_ensoniq_create(card, pci);
2329 if (err < 0)
2330 return err;
2331
2332 #ifdef CHIP1370
2333 err = snd_ensoniq_1370_mixer(ensoniq);
2334 if (err < 0)
2335 return err;
2336 #endif
2337 #ifdef CHIP1371
2338 err = snd_ensoniq_1371_mixer(ensoniq, spdif[dev], lineio[dev]);
2339 if (err < 0)
2340 return err;
2341 #endif
2342 err = snd_ensoniq_pcm(ensoniq, 0);
2343 if (err < 0)
2344 return err;
2345 err = snd_ensoniq_pcm2(ensoniq, 1);
2346 if (err < 0)
2347 return err;
2348 err = snd_ensoniq_midi(ensoniq, 0);
2349 if (err < 0)
2350 return err;
2351
2352 snd_ensoniq_create_gameport(ensoniq, dev);
2353
2354 strcpy(card->driver, DRIVER_NAME);
2355
2356 strcpy(card->shortname, "Ensoniq AudioPCI");
2357 sprintf(card->longname, "%s %s at 0x%lx, irq %i",
2358 card->shortname,
2359 card->driver,
2360 ensoniq->port,
2361 ensoniq->irq);
2362
2363 err = snd_card_register(card);
2364 if (err < 0)
2365 return err;
2366
2367 pci_set_drvdata(pci, card);
2368 dev++;
2369 return 0;
2370 }
2371
2372 static int snd_audiopci_probe(struct pci_dev *pci,
2373 const struct pci_device_id *pci_id)
2374 {
2375 return snd_card_free_on_error(&pci->dev, __snd_audiopci_probe(pci, pci_id));
2376 }
2377
2378 static struct pci_driver ens137x_driver = {
2379 .name = KBUILD_MODNAME,
2380 .id_table = snd_audiopci_ids,
2381 .probe = snd_audiopci_probe,
2382 .driver = {
2383 .pm = SND_ENSONIQ_PM_OPS,
2384 },
2385 };
2386
2387 module_pci_driver(ens137x_driver);