cs4231.h 7.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172
  1. #ifndef __SOUND_CS4231_H
  2. #define __SOUND_CS4231_H
  3. /*
  4. * Copyright (c) by Jaroslav Kysela <perex@perex.cz>
  5. * Definitions for CS4231 & InterWave chips & compatible chips
  6. *
  7. *
  8. * This program is free software; you can redistribute it and/or modify
  9. * it under the terms of the GNU General Public License as published by
  10. * the Free Software Foundation; either version 2 of the License, or
  11. * (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA 02111-1307 USA
  21. *
  22. */
  23. #include "control.h"
  24. #include "pcm.h"
  25. #include "timer.h"
  26. #include "cs4231-regs.h"
  27. /* defines for codec.mode */
  28. #define CS4231_MODE_NONE 0x0000
  29. #define CS4231_MODE_PLAY 0x0001
  30. #define CS4231_MODE_RECORD 0x0002
  31. #define CS4231_MODE_TIMER 0x0004
  32. #define CS4231_MODE_OPEN (CS4231_MODE_PLAY|CS4231_MODE_RECORD|CS4231_MODE_TIMER)
  33. /* defines for codec.hardware */
  34. #define CS4231_HW_DETECT 0x0000 /* let CS4231 driver detect chip */
  35. #define CS4231_HW_DETECT3 0x0001 /* allow mode 3 */
  36. #define CS4231_HW_TYPE_MASK 0xff00 /* type mask */
  37. #define CS4231_HW_CS4231_MASK 0x0100 /* CS4231 serie */
  38. #define CS4231_HW_CS4231 0x0100 /* CS4231 chip */
  39. #define CS4231_HW_CS4231A 0x0101 /* CS4231A chip */
  40. #define CS4231_HW_AD1845 0x0102 /* AD1845 chip */
  41. #define CS4231_HW_CS4232_MASK 0x0200 /* CS4232 serie (has control ports) */
  42. #define CS4231_HW_CS4232 0x0200 /* CS4232 */
  43. #define CS4231_HW_CS4232A 0x0201 /* CS4232A */
  44. #define CS4231_HW_CS4236 0x0202 /* CS4236 */
  45. #define CS4231_HW_CS4236B_MASK 0x0400 /* CS4236B serie (has extended control regs) */
  46. #define CS4231_HW_CS4235 0x0400 /* CS4235 - Crystal Clear (tm) stereo enhancement */
  47. #define CS4231_HW_CS4236B 0x0401 /* CS4236B */
  48. #define CS4231_HW_CS4237B 0x0402 /* CS4237B - SRS 3D */
  49. #define CS4231_HW_CS4238B 0x0403 /* CS4238B - QSOUND 3D */
  50. #define CS4231_HW_CS4239 0x0404 /* CS4239 - Crystal Clear (tm) stereo enhancement */
  51. /* compatible, but clones */
  52. #define CS4231_HW_INTERWAVE 0x1000 /* InterWave chip */
  53. #define CS4231_HW_OPL3SA2 0x1101 /* OPL3-SA2 chip, similar to cs4231 */
  54. /* defines for codec.hwshare */
  55. #define CS4231_HWSHARE_IRQ (1<<0)
  56. #define CS4231_HWSHARE_DMA1 (1<<1)
  57. #define CS4231_HWSHARE_DMA2 (1<<2)
  58. struct snd_cs4231 {
  59. unsigned long port; /* base i/o port */
  60. struct resource *res_port;
  61. unsigned long cport; /* control base i/o port (CS4236) */
  62. struct resource *res_cport;
  63. int irq; /* IRQ line */
  64. int dma1; /* playback DMA */
  65. int dma2; /* record DMA */
  66. unsigned short version; /* version of CODEC chip */
  67. unsigned short mode; /* see to CS4231_MODE_XXXX */
  68. unsigned short hardware; /* see to CS4231_HW_XXXX */
  69. unsigned short hwshare; /* shared resources */
  70. unsigned short single_dma:1, /* forced single DMA mode (GUS 16-bit daughter board) or dma1 == dma2 */
  71. ebus_flag:1; /* SPARC: EBUS present */
  72. struct snd_card *card;
  73. struct snd_pcm *pcm;
  74. struct snd_pcm_substream *playback_substream;
  75. struct snd_pcm_substream *capture_substream;
  76. struct snd_timer *timer;
  77. unsigned char image[32]; /* registers image */
  78. unsigned char eimage[32]; /* extended registers image */
  79. unsigned char cimage[16]; /* control registers image */
  80. int mce_bit;
  81. int calibrate_mute;
  82. int sw_3d_bit;
  83. unsigned int p_dma_size;
  84. unsigned int c_dma_size;
  85. spinlock_t reg_lock;
  86. struct mutex mce_mutex;
  87. struct mutex open_mutex;
  88. int (*rate_constraint) (struct snd_pcm_runtime *runtime);
  89. void (*set_playback_format) (struct snd_cs4231 *chip, struct snd_pcm_hw_params *hw_params, unsigned char pdfr);
  90. void (*set_capture_format) (struct snd_cs4231 *chip, struct snd_pcm_hw_params *hw_params, unsigned char cdfr);
  91. void (*trigger) (struct snd_cs4231 *chip, unsigned int what, int start);
  92. #ifdef CONFIG_PM
  93. void (*suspend) (struct snd_cs4231 *chip);
  94. void (*resume) (struct snd_cs4231 *chip);
  95. #endif
  96. void *dma_private_data;
  97. int (*claim_dma) (struct snd_cs4231 *chip, void *dma_private_data, int dma);
  98. int (*release_dma) (struct snd_cs4231 *chip, void *dma_private_data, int dma);
  99. };
  100. /* exported functions */
  101. void snd_cs4231_out(struct snd_cs4231 *chip, unsigned char reg, unsigned char val);
  102. unsigned char snd_cs4231_in(struct snd_cs4231 *chip, unsigned char reg);
  103. void snd_cs4236_ext_out(struct snd_cs4231 *chip, unsigned char reg, unsigned char val);
  104. unsigned char snd_cs4236_ext_in(struct snd_cs4231 *chip, unsigned char reg);
  105. void snd_cs4231_mce_up(struct snd_cs4231 *chip);
  106. void snd_cs4231_mce_down(struct snd_cs4231 *chip);
  107. irqreturn_t snd_cs4231_interrupt(int irq, void *dev_id);
  108. const char *snd_cs4231_chip_id(struct snd_cs4231 *chip);
  109. int snd_cs4231_create(struct snd_card *card,
  110. unsigned long port,
  111. unsigned long cport,
  112. int irq, int dma1, int dma2,
  113. unsigned short hardware,
  114. unsigned short hwshare,
  115. struct snd_cs4231 ** rchip);
  116. int snd_cs4231_pcm(struct snd_cs4231 * chip, int device, struct snd_pcm **rpcm);
  117. int snd_cs4231_timer(struct snd_cs4231 * chip, int device, struct snd_timer **rtimer);
  118. int snd_cs4231_mixer(struct snd_cs4231 * chip);
  119. int snd_cs4236_create(struct snd_card *card,
  120. unsigned long port,
  121. unsigned long cport,
  122. int irq, int dma1, int dma2,
  123. unsigned short hardware,
  124. unsigned short hwshare,
  125. struct snd_cs4231 ** rchip);
  126. int snd_cs4236_pcm(struct snd_cs4231 * chip, int device, struct snd_pcm **rpcm);
  127. int snd_cs4236_mixer(struct snd_cs4231 * chip);
  128. /*
  129. * mixer library
  130. */
  131. #define CS4231_SINGLE(xname, xindex, reg, shift, mask, invert) \
  132. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
  133. .info = snd_cs4231_info_single, \
  134. .get = snd_cs4231_get_single, .put = snd_cs4231_put_single, \
  135. .private_value = reg | (shift << 8) | (mask << 16) | (invert << 24) }
  136. int snd_cs4231_info_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo);
  137. int snd_cs4231_get_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol);
  138. int snd_cs4231_put_single(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol);
  139. #define CS4231_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, shift_right, mask, invert) \
  140. { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = xname, .index = xindex, \
  141. .info = snd_cs4231_info_double, \
  142. .get = snd_cs4231_get_double, .put = snd_cs4231_put_double, \
  143. .private_value = left_reg | (right_reg << 8) | (shift_left << 16) | (shift_right << 19) | (mask << 24) | (invert << 22) }
  144. int snd_cs4231_info_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_info *uinfo);
  145. int snd_cs4231_get_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol);
  146. int snd_cs4231_put_double(struct snd_kcontrol *kcontrol, struct snd_ctl_elem_value *ucontrol);
  147. #endif /* __SOUND_CS4231_H */