Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Driver for CS4231 sound chips found on Sparcs. |
| 3 | * Copyright (C) 2002 David S. Miller <davem@redhat.com> |
| 4 | * |
| 5 | * Based entirely upon drivers/sbus/audio/cs4231.c which is: |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 6 | * Copyright (C) 1996, 1997, 1998 Derrick J Brashear (shadow@andrew.cmu.edu) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 7 | * and also sound/isa/cs423x/cs4231_lib.c which is: |
Jaroslav Kysela | c1017a4 | 2007-10-15 09:50:19 +0200 | [diff] [blame] | 8 | * Copyright (c) by Jaroslav Kysela <perex@perex.cz> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 9 | */ |
| 10 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 11 | #include <linux/module.h> |
| 12 | #include <linux/kernel.h> |
| 13 | #include <linux/slab.h> |
| 14 | #include <linux/delay.h> |
| 15 | #include <linux/init.h> |
| 16 | #include <linux/interrupt.h> |
| 17 | #include <linux/moduleparam.h> |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 18 | #include <linux/irq.h> |
| 19 | #include <linux/io.h> |
| 20 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 21 | |
| 22 | #include <sound/driver.h> |
| 23 | #include <sound/core.h> |
| 24 | #include <sound/pcm.h> |
| 25 | #include <sound/info.h> |
| 26 | #include <sound/control.h> |
| 27 | #include <sound/timer.h> |
| 28 | #include <sound/initval.h> |
| 29 | #include <sound/pcm_params.h> |
| 30 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 31 | #ifdef CONFIG_SBUS |
| 32 | #define SBUS_SUPPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 33 | #include <asm/sbus.h> |
| 34 | #endif |
| 35 | |
| 36 | #if defined(CONFIG_PCI) && defined(CONFIG_SPARC64) |
| 37 | #define EBUS_SUPPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 38 | #include <linux/pci.h> |
| 39 | #include <asm/ebus.h> |
| 40 | #endif |
| 41 | |
| 42 | static int index[SNDRV_CARDS] = SNDRV_DEFAULT_IDX; /* Index 0-MAX */ |
| 43 | static char *id[SNDRV_CARDS] = SNDRV_DEFAULT_STR; /* ID for this card */ |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 44 | /* Enable this card */ |
| 45 | static int enable[SNDRV_CARDS] = SNDRV_DEFAULT_ENABLE_PNP; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 46 | |
| 47 | module_param_array(index, int, NULL, 0444); |
| 48 | MODULE_PARM_DESC(index, "Index value for Sun CS4231 soundcard."); |
| 49 | module_param_array(id, charp, NULL, 0444); |
| 50 | MODULE_PARM_DESC(id, "ID string for Sun CS4231 soundcard."); |
| 51 | module_param_array(enable, bool, NULL, 0444); |
| 52 | MODULE_PARM_DESC(enable, "Enable Sun CS4231 soundcard."); |
| 53 | MODULE_AUTHOR("Jaroslav Kysela, Derrick J. Brashear and David S. Miller"); |
| 54 | MODULE_DESCRIPTION("Sun CS4231"); |
| 55 | MODULE_LICENSE("GPL"); |
| 56 | MODULE_SUPPORTED_DEVICE("{{Sun,CS4231}}"); |
| 57 | |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 58 | #ifdef SBUS_SUPPORT |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 59 | struct sbus_dma_info { |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 60 | spinlock_t lock; /* DMA access lock */ |
| 61 | int dir; |
| 62 | void __iomem *regs; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 63 | }; |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 64 | #endif |
| 65 | |
David S. Miller | 4f3f2f6 | 2006-01-17 15:55:58 -0800 | [diff] [blame] | 66 | struct snd_cs4231; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 67 | struct cs4231_dma_control { |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 68 | void (*prepare)(struct cs4231_dma_control *dma_cont, |
| 69 | int dir); |
| 70 | void (*enable)(struct cs4231_dma_control *dma_cont, int on); |
| 71 | int (*request)(struct cs4231_dma_control *dma_cont, |
| 72 | dma_addr_t bus_addr, size_t len); |
| 73 | unsigned int (*address)(struct cs4231_dma_control *dma_cont); |
| 74 | void (*preallocate)(struct snd_cs4231 *chip, |
| 75 | struct snd_pcm *pcm); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 76 | #ifdef EBUS_SUPPORT |
| 77 | struct ebus_dma_info ebus_info; |
| 78 | #endif |
| 79 | #ifdef SBUS_SUPPORT |
| 80 | struct sbus_dma_info sbus_info; |
| 81 | #endif |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 82 | }; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 83 | |
| 84 | struct snd_cs4231 { |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 85 | spinlock_t lock; /* registers access lock */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 86 | void __iomem *port; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 87 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 88 | struct cs4231_dma_control p_dma; |
| 89 | struct cs4231_dma_control c_dma; |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 90 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 91 | u32 flags; |
| 92 | #define CS4231_FLAG_EBUS 0x00000001 |
| 93 | #define CS4231_FLAG_PLAYBACK 0x00000002 |
| 94 | #define CS4231_FLAG_CAPTURE 0x00000004 |
| 95 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 96 | struct snd_card *card; |
| 97 | struct snd_pcm *pcm; |
| 98 | struct snd_pcm_substream *playback_substream; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 99 | unsigned int p_periods_sent; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 100 | struct snd_pcm_substream *capture_substream; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 101 | unsigned int c_periods_sent; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 102 | struct snd_timer *timer; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | |
| 104 | unsigned short mode; |
| 105 | #define CS4231_MODE_NONE 0x0000 |
| 106 | #define CS4231_MODE_PLAY 0x0001 |
| 107 | #define CS4231_MODE_RECORD 0x0002 |
| 108 | #define CS4231_MODE_TIMER 0x0004 |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 109 | #define CS4231_MODE_OPEN (CS4231_MODE_PLAY | CS4231_MODE_RECORD | \ |
| 110 | CS4231_MODE_TIMER) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | |
| 112 | unsigned char image[32]; /* registers image */ |
| 113 | int mce_bit; |
| 114 | int calibrate_mute; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 115 | struct mutex mce_mutex; /* mutex for mce register */ |
| 116 | struct mutex open_mutex; /* mutex for ALSA open/close */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 117 | |
| 118 | union { |
| 119 | #ifdef SBUS_SUPPORT |
| 120 | struct sbus_dev *sdev; |
| 121 | #endif |
| 122 | #ifdef EBUS_SUPPORT |
| 123 | struct pci_dev *pdev; |
| 124 | #endif |
| 125 | } dev_u; |
| 126 | unsigned int irq[2]; |
| 127 | unsigned int regs_size; |
| 128 | struct snd_cs4231 *next; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 129 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 130 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 131 | static struct snd_cs4231 *cs4231_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 132 | |
| 133 | /* Eventually we can use sound/isa/cs423x/cs4231_lib.c directly, but for |
| 134 | * now.... -DaveM |
| 135 | */ |
| 136 | |
| 137 | /* IO ports */ |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 138 | #include <sound/cs4231-regs.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | |
| 140 | /* XXX offsets are different than PC ISA chips... */ |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 141 | #define CS4231U(chip, x) ((chip)->port + ((c_d_c_CS4231##x) << 2)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 142 | |
| 143 | /* SBUS DMA register defines. */ |
| 144 | |
| 145 | #define APCCSR 0x10UL /* APC DMA CSR */ |
| 146 | #define APCCVA 0x20UL /* APC Capture DMA Address */ |
| 147 | #define APCCC 0x24UL /* APC Capture Count */ |
| 148 | #define APCCNVA 0x28UL /* APC Capture DMA Next Address */ |
| 149 | #define APCCNC 0x2cUL /* APC Capture Next Count */ |
| 150 | #define APCPVA 0x30UL /* APC Play DMA Address */ |
| 151 | #define APCPC 0x34UL /* APC Play Count */ |
| 152 | #define APCPNVA 0x38UL /* APC Play DMA Next Address */ |
| 153 | #define APCPNC 0x3cUL /* APC Play Next Count */ |
| 154 | |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 155 | /* Defines for SBUS DMA-routines */ |
| 156 | |
| 157 | #define APCVA 0x0UL /* APC DMA Address */ |
| 158 | #define APCC 0x4UL /* APC Count */ |
| 159 | #define APCNVA 0x8UL /* APC DMA Next Address */ |
| 160 | #define APCNC 0xcUL /* APC Next Count */ |
| 161 | #define APC_PLAY 0x30UL /* Play registers start at 0x30 */ |
| 162 | #define APC_RECORD 0x20UL /* Record registers start at 0x20 */ |
| 163 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 164 | /* APCCSR bits */ |
| 165 | |
| 166 | #define APC_INT_PENDING 0x800000 /* Interrupt Pending */ |
| 167 | #define APC_PLAY_INT 0x400000 /* Playback interrupt */ |
| 168 | #define APC_CAPT_INT 0x200000 /* Capture interrupt */ |
| 169 | #define APC_GENL_INT 0x100000 /* General interrupt */ |
| 170 | #define APC_XINT_ENA 0x80000 /* General ext int. enable */ |
| 171 | #define APC_XINT_PLAY 0x40000 /* Playback ext intr */ |
| 172 | #define APC_XINT_CAPT 0x20000 /* Capture ext intr */ |
| 173 | #define APC_XINT_GENL 0x10000 /* Error ext intr */ |
| 174 | #define APC_XINT_EMPT 0x8000 /* Pipe empty interrupt (0 write to pva) */ |
| 175 | #define APC_XINT_PEMP 0x4000 /* Play pipe empty (pva and pnva not set) */ |
| 176 | #define APC_XINT_PNVA 0x2000 /* Playback NVA dirty */ |
| 177 | #define APC_XINT_PENA 0x1000 /* play pipe empty Int enable */ |
| 178 | #define APC_XINT_COVF 0x800 /* Cap data dropped on floor */ |
| 179 | #define APC_XINT_CNVA 0x400 /* Capture NVA dirty */ |
| 180 | #define APC_XINT_CEMP 0x200 /* Capture pipe empty (cva and cnva not set) */ |
| 181 | #define APC_XINT_CENA 0x100 /* Cap. pipe empty int enable */ |
| 182 | #define APC_PPAUSE 0x80 /* Pause the play DMA */ |
| 183 | #define APC_CPAUSE 0x40 /* Pause the capture DMA */ |
| 184 | #define APC_CDC_RESET 0x20 /* CODEC RESET */ |
| 185 | #define APC_PDMA_READY 0x08 /* Play DMA Go */ |
| 186 | #define APC_CDMA_READY 0x04 /* Capture DMA Go */ |
| 187 | #define APC_CHIP_RESET 0x01 /* Reset the chip */ |
| 188 | |
| 189 | /* EBUS DMA register offsets */ |
| 190 | |
| 191 | #define EBDMA_CSR 0x00UL /* Control/Status */ |
| 192 | #define EBDMA_ADDR 0x04UL /* DMA Address */ |
| 193 | #define EBDMA_COUNT 0x08UL /* DMA Count */ |
| 194 | |
| 195 | /* |
| 196 | * Some variables |
| 197 | */ |
| 198 | |
| 199 | static unsigned char freq_bits[14] = { |
| 200 | /* 5510 */ 0x00 | CS4231_XTAL2, |
| 201 | /* 6620 */ 0x0E | CS4231_XTAL2, |
| 202 | /* 8000 */ 0x00 | CS4231_XTAL1, |
| 203 | /* 9600 */ 0x0E | CS4231_XTAL1, |
| 204 | /* 11025 */ 0x02 | CS4231_XTAL2, |
| 205 | /* 16000 */ 0x02 | CS4231_XTAL1, |
| 206 | /* 18900 */ 0x04 | CS4231_XTAL2, |
| 207 | /* 22050 */ 0x06 | CS4231_XTAL2, |
| 208 | /* 27042 */ 0x04 | CS4231_XTAL1, |
| 209 | /* 32000 */ 0x06 | CS4231_XTAL1, |
| 210 | /* 33075 */ 0x0C | CS4231_XTAL2, |
| 211 | /* 37800 */ 0x08 | CS4231_XTAL2, |
| 212 | /* 44100 */ 0x0A | CS4231_XTAL2, |
| 213 | /* 48000 */ 0x0C | CS4231_XTAL1 |
| 214 | }; |
| 215 | |
| 216 | static unsigned int rates[14] = { |
| 217 | 5510, 6620, 8000, 9600, 11025, 16000, 18900, 22050, |
| 218 | 27042, 32000, 33075, 37800, 44100, 48000 |
| 219 | }; |
| 220 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 221 | static struct snd_pcm_hw_constraint_list hw_constraints_rates = { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 222 | .count = ARRAY_SIZE(rates), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 223 | .list = rates, |
| 224 | }; |
| 225 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 226 | static int snd_cs4231_xrate(struct snd_pcm_runtime *runtime) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 227 | { |
| 228 | return snd_pcm_hw_constraint_list(runtime, 0, |
| 229 | SNDRV_PCM_HW_PARAM_RATE, |
| 230 | &hw_constraints_rates); |
| 231 | } |
| 232 | |
| 233 | static unsigned char snd_cs4231_original_image[32] = |
| 234 | { |
| 235 | 0x00, /* 00/00 - lic */ |
| 236 | 0x00, /* 01/01 - ric */ |
| 237 | 0x9f, /* 02/02 - la1ic */ |
| 238 | 0x9f, /* 03/03 - ra1ic */ |
| 239 | 0x9f, /* 04/04 - la2ic */ |
| 240 | 0x9f, /* 05/05 - ra2ic */ |
| 241 | 0xbf, /* 06/06 - loc */ |
| 242 | 0xbf, /* 07/07 - roc */ |
| 243 | 0x20, /* 08/08 - pdfr */ |
| 244 | CS4231_AUTOCALIB, /* 09/09 - ic */ |
| 245 | 0x00, /* 0a/10 - pc */ |
| 246 | 0x00, /* 0b/11 - ti */ |
| 247 | CS4231_MODE2, /* 0c/12 - mi */ |
| 248 | 0x00, /* 0d/13 - lbc */ |
| 249 | 0x00, /* 0e/14 - pbru */ |
| 250 | 0x00, /* 0f/15 - pbrl */ |
| 251 | 0x80, /* 10/16 - afei */ |
| 252 | 0x01, /* 11/17 - afeii */ |
| 253 | 0x9f, /* 12/18 - llic */ |
| 254 | 0x9f, /* 13/19 - rlic */ |
| 255 | 0x00, /* 14/20 - tlb */ |
| 256 | 0x00, /* 15/21 - thb */ |
| 257 | 0x00, /* 16/22 - la3mic/reserved */ |
| 258 | 0x00, /* 17/23 - ra3mic/reserved */ |
| 259 | 0x00, /* 18/24 - afs */ |
| 260 | 0x00, /* 19/25 - lamoc/version */ |
| 261 | 0x00, /* 1a/26 - mioc */ |
| 262 | 0x00, /* 1b/27 - ramoc/reserved */ |
| 263 | 0x20, /* 1c/28 - cdfr */ |
| 264 | 0x00, /* 1d/29 - res4 */ |
| 265 | 0x00, /* 1e/30 - cbru */ |
| 266 | 0x00, /* 1f/31 - cbrl */ |
| 267 | }; |
| 268 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 269 | static u8 __cs4231_readb(struct snd_cs4231 *cp, void __iomem *reg_addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 270 | { |
| 271 | #ifdef EBUS_SUPPORT |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 272 | if (cp->flags & CS4231_FLAG_EBUS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 273 | return readb(reg_addr); |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 274 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 275 | #endif |
| 276 | #ifdef SBUS_SUPPORT |
| 277 | return sbus_readb(reg_addr); |
| 278 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 279 | } |
| 280 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 281 | static void __cs4231_writeb(struct snd_cs4231 *cp, u8 val, |
| 282 | void __iomem *reg_addr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 283 | { |
| 284 | #ifdef EBUS_SUPPORT |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 285 | if (cp->flags & CS4231_FLAG_EBUS) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 286 | return writeb(val, reg_addr); |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 287 | else |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 288 | #endif |
| 289 | #ifdef SBUS_SUPPORT |
| 290 | return sbus_writeb(val, reg_addr); |
| 291 | #endif |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 292 | } |
| 293 | |
| 294 | /* |
| 295 | * Basic I/O functions |
| 296 | */ |
| 297 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 298 | static void snd_cs4231_ready(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 299 | { |
| 300 | int timeout; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 301 | |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 302 | for (timeout = 250; timeout > 0; timeout--) { |
| 303 | int val = __cs4231_readb(chip, CS4231U(chip, REGSEL)); |
| 304 | if ((val & CS4231_INIT) == 0) |
| 305 | break; |
| 306 | udelay(100); |
| 307 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 308 | } |
| 309 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 310 | static void snd_cs4231_dout(struct snd_cs4231 *chip, unsigned char reg, |
| 311 | unsigned char value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 312 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 313 | snd_cs4231_ready(chip); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 314 | #ifdef CONFIG_SND_DEBUG |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 315 | if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT) |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 316 | snd_printdd("out: auto calibration time out - reg = 0x%x, " |
| 317 | "value = 0x%x\n", |
| 318 | reg, value); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 319 | #endif |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 320 | __cs4231_writeb(chip, chip->mce_bit | reg, CS4231U(chip, REGSEL)); |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 321 | wmb(); |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 322 | __cs4231_writeb(chip, value, CS4231U(chip, REG)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 323 | mb(); |
| 324 | } |
| 325 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 326 | static inline void snd_cs4231_outm(struct snd_cs4231 *chip, unsigned char reg, |
| 327 | unsigned char mask, unsigned char value) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 328 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 329 | unsigned char tmp = (chip->image[reg] & mask) | value; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 330 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 331 | chip->image[reg] = tmp; |
| 332 | if (!chip->calibrate_mute) |
| 333 | snd_cs4231_dout(chip, reg, tmp); |
| 334 | } |
| 335 | |
| 336 | static void snd_cs4231_out(struct snd_cs4231 *chip, unsigned char reg, |
| 337 | unsigned char value) |
| 338 | { |
| 339 | snd_cs4231_dout(chip, reg, value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 340 | chip->image[reg] = value; |
| 341 | mb(); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 342 | } |
| 343 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 344 | static unsigned char snd_cs4231_in(struct snd_cs4231 *chip, unsigned char reg) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 345 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 346 | snd_cs4231_ready(chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 347 | #ifdef CONFIG_SND_DEBUG |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 348 | if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT) |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 349 | snd_printdd("in: auto calibration time out - reg = 0x%x\n", |
| 350 | reg); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 351 | #endif |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 352 | __cs4231_writeb(chip, chip->mce_bit | reg, CS4231U(chip, REGSEL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 353 | mb(); |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 354 | return __cs4231_readb(chip, CS4231U(chip, REG)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 355 | } |
| 356 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 357 | /* |
| 358 | * CS4231 detection / MCE routines |
| 359 | */ |
| 360 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 361 | static void snd_cs4231_busy_wait(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 362 | { |
| 363 | int timeout; |
| 364 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 365 | /* looks like this sequence is proper for CS4231A chip (GUS MAX) */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 366 | for (timeout = 5; timeout > 0; timeout--) |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 367 | __cs4231_readb(chip, CS4231U(chip, REGSEL)); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 368 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 369 | /* end of cleanup sequence */ |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 370 | for (timeout = 500; timeout > 0; timeout--) { |
| 371 | int val = __cs4231_readb(chip, CS4231U(chip, REGSEL)); |
| 372 | if ((val & CS4231_INIT) == 0) |
| 373 | break; |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 374 | msleep(1); |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 375 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 376 | } |
| 377 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 378 | static void snd_cs4231_mce_up(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 379 | { |
| 380 | unsigned long flags; |
| 381 | int timeout; |
| 382 | |
| 383 | spin_lock_irqsave(&chip->lock, flags); |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 384 | snd_cs4231_ready(chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 385 | #ifdef CONFIG_SND_DEBUG |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 386 | if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT) |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 387 | snd_printdd("mce_up - auto calibration time out (0)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 388 | #endif |
| 389 | chip->mce_bit |= CS4231_MCE; |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 390 | timeout = __cs4231_readb(chip, CS4231U(chip, REGSEL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 391 | if (timeout == 0x80) |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 392 | snd_printdd("mce_up [%p]: serious init problem - " |
| 393 | "codec still busy\n", |
| 394 | chip->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 395 | if (!(timeout & CS4231_MCE)) |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 396 | __cs4231_writeb(chip, chip->mce_bit | (timeout & 0x1f), |
| 397 | CS4231U(chip, REGSEL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 398 | spin_unlock_irqrestore(&chip->lock, flags); |
| 399 | } |
| 400 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 401 | static void snd_cs4231_mce_down(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 402 | { |
| 403 | unsigned long flags; |
| 404 | int timeout; |
| 405 | |
| 406 | spin_lock_irqsave(&chip->lock, flags); |
| 407 | snd_cs4231_busy_wait(chip); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 408 | #ifdef CONFIG_SND_DEBUG |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 409 | if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT) |
| 410 | snd_printdd("mce_down [%p] - auto calibration time out (0)\n", |
| 411 | CS4231U(chip, REGSEL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 412 | #endif |
| 413 | chip->mce_bit &= ~CS4231_MCE; |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 414 | timeout = __cs4231_readb(chip, CS4231U(chip, REGSEL)); |
| 415 | __cs4231_writeb(chip, chip->mce_bit | (timeout & 0x1f), |
| 416 | CS4231U(chip, REGSEL)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 417 | if (timeout == 0x80) |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 418 | snd_printdd("mce_down [%p]: serious init problem - " |
| 419 | "codec still busy\n", |
| 420 | chip->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | if ((timeout & CS4231_MCE) == 0) { |
| 422 | spin_unlock_irqrestore(&chip->lock, flags); |
| 423 | return; |
| 424 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 425 | |
Krzysztof Helt | 56f9158 | 2007-09-11 00:55:46 +0200 | [diff] [blame^] | 426 | /* |
| 427 | * Wait for (possible -- during init auto-calibration may not be set) |
| 428 | * calibration process to start. Needs upto 5 sample periods on AD1848 |
| 429 | * which at the slowest possible rate of 5.5125 kHz means 907 us. |
| 430 | */ |
| 431 | msleep(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | |
Krzysztof Helt | 56f9158 | 2007-09-11 00:55:46 +0200 | [diff] [blame^] | 433 | /* check condition up to 250ms */ |
| 434 | timeout = msecs_to_jiffies(250); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 435 | while (snd_cs4231_in(chip, CS4231_TEST_INIT) & |
| 436 | CS4231_CALIB_IN_PROGRESS) { |
| 437 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 438 | spin_unlock_irqrestore(&chip->lock, flags); |
Krzysztof Helt | 56f9158 | 2007-09-11 00:55:46 +0200 | [diff] [blame^] | 439 | if (timeout <= 0) { |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 440 | snd_printk("mce_down - " |
| 441 | "auto calibration time out (2)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 442 | return; |
| 443 | } |
Krzysztof Helt | 56f9158 | 2007-09-11 00:55:46 +0200 | [diff] [blame^] | 444 | timeout = schedule_timeout(timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 445 | spin_lock_irqsave(&chip->lock, flags); |
| 446 | } |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 447 | |
Krzysztof Helt | 56f9158 | 2007-09-11 00:55:46 +0200 | [diff] [blame^] | 448 | /* check condition up to 100ms */ |
| 449 | timeout = msecs_to_jiffies(100); |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 450 | while (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 451 | spin_unlock_irqrestore(&chip->lock, flags); |
Krzysztof Helt | 56f9158 | 2007-09-11 00:55:46 +0200 | [diff] [blame^] | 452 | if (timeout <= 0) { |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 453 | snd_printk("mce_down - " |
| 454 | "auto calibration time out (3)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 455 | return; |
| 456 | } |
Krzysztof Helt | 56f9158 | 2007-09-11 00:55:46 +0200 | [diff] [blame^] | 457 | timeout = schedule_timeout(timeout); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | spin_lock_irqsave(&chip->lock, flags); |
| 459 | } |
| 460 | spin_unlock_irqrestore(&chip->lock, flags); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 461 | } |
| 462 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 463 | static void snd_cs4231_advance_dma(struct cs4231_dma_control *dma_cont, |
| 464 | struct snd_pcm_substream *substream, |
| 465 | unsigned int *periods_sent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 466 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 467 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 468 | |
| 469 | while (1) { |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 470 | unsigned int period_size = snd_pcm_lib_period_bytes(substream); |
| 471 | unsigned int offset = period_size * (*periods_sent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 472 | |
Eric Sesterhenn | 817dd6e | 2006-03-24 18:49:12 +0100 | [diff] [blame] | 473 | BUG_ON(period_size >= (1 << 24)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 474 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 475 | if (dma_cont->request(dma_cont, |
| 476 | runtime->dma_addr + offset, period_size)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 477 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 478 | (*periods_sent) = ((*periods_sent) + 1) % runtime->periods; |
| 479 | } |
| 480 | } |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 481 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 482 | static void cs4231_dma_trigger(struct snd_pcm_substream *substream, |
| 483 | unsigned int what, int on) |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 484 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 485 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
| 486 | struct cs4231_dma_control *dma_cont; |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 487 | |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 488 | if (what & CS4231_PLAYBACK_ENABLE) { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 489 | dma_cont = &chip->p_dma; |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 490 | if (on) { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 491 | dma_cont->prepare(dma_cont, 0); |
| 492 | dma_cont->enable(dma_cont, 1); |
| 493 | snd_cs4231_advance_dma(dma_cont, |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 494 | chip->playback_substream, |
| 495 | &chip->p_periods_sent); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 496 | } else { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 497 | dma_cont->enable(dma_cont, 0); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 498 | } |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 499 | } |
| 500 | if (what & CS4231_RECORD_ENABLE) { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 501 | dma_cont = &chip->c_dma; |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 502 | if (on) { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 503 | dma_cont->prepare(dma_cont, 1); |
| 504 | dma_cont->enable(dma_cont, 1); |
| 505 | snd_cs4231_advance_dma(dma_cont, |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 506 | chip->capture_substream, |
| 507 | &chip->c_periods_sent); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 508 | } else { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 509 | dma_cont->enable(dma_cont, 0); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 510 | } |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 511 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 512 | } |
| 513 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 514 | static int snd_cs4231_trigger(struct snd_pcm_substream *substream, int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 515 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 516 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | int result = 0; |
| 518 | |
| 519 | switch (cmd) { |
| 520 | case SNDRV_PCM_TRIGGER_START: |
| 521 | case SNDRV_PCM_TRIGGER_STOP: |
| 522 | { |
| 523 | unsigned int what = 0; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 524 | struct snd_pcm_substream *s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 525 | unsigned long flags; |
| 526 | |
Takashi Iwai | ef991b9 | 2007-02-22 12:52:53 +0100 | [diff] [blame] | 527 | snd_pcm_group_for_each_entry(s, substream) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 528 | if (s == chip->playback_substream) { |
| 529 | what |= CS4231_PLAYBACK_ENABLE; |
| 530 | snd_pcm_trigger_done(s, substream); |
| 531 | } else if (s == chip->capture_substream) { |
| 532 | what |= CS4231_RECORD_ENABLE; |
| 533 | snd_pcm_trigger_done(s, substream); |
| 534 | } |
| 535 | } |
| 536 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 537 | spin_lock_irqsave(&chip->lock, flags); |
| 538 | if (cmd == SNDRV_PCM_TRIGGER_START) { |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 539 | cs4231_dma_trigger(substream, what, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 540 | chip->image[CS4231_IFACE_CTRL] |= what; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 541 | } else { |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 542 | cs4231_dma_trigger(substream, what, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 543 | chip->image[CS4231_IFACE_CTRL] &= ~what; |
| 544 | } |
| 545 | snd_cs4231_out(chip, CS4231_IFACE_CTRL, |
| 546 | chip->image[CS4231_IFACE_CTRL]); |
| 547 | spin_unlock_irqrestore(&chip->lock, flags); |
| 548 | break; |
| 549 | } |
| 550 | default: |
| 551 | result = -EINVAL; |
| 552 | break; |
| 553 | } |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 554 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | return result; |
| 556 | } |
| 557 | |
| 558 | /* |
| 559 | * CODEC I/O |
| 560 | */ |
| 561 | |
| 562 | static unsigned char snd_cs4231_get_rate(unsigned int rate) |
| 563 | { |
| 564 | int i; |
| 565 | |
| 566 | for (i = 0; i < 14; i++) |
| 567 | if (rate == rates[i]) |
| 568 | return freq_bits[i]; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 569 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 570 | return freq_bits[13]; |
| 571 | } |
| 572 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 573 | static unsigned char snd_cs4231_get_format(struct snd_cs4231 *chip, int format, |
| 574 | int channels) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | { |
| 576 | unsigned char rformat; |
| 577 | |
| 578 | rformat = CS4231_LINEAR_8; |
| 579 | switch (format) { |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 580 | case SNDRV_PCM_FORMAT_MU_LAW: |
| 581 | rformat = CS4231_ULAW_8; |
| 582 | break; |
| 583 | case SNDRV_PCM_FORMAT_A_LAW: |
| 584 | rformat = CS4231_ALAW_8; |
| 585 | break; |
| 586 | case SNDRV_PCM_FORMAT_S16_LE: |
| 587 | rformat = CS4231_LINEAR_16; |
| 588 | break; |
| 589 | case SNDRV_PCM_FORMAT_S16_BE: |
| 590 | rformat = CS4231_LINEAR_16_BIG; |
| 591 | break; |
| 592 | case SNDRV_PCM_FORMAT_IMA_ADPCM: |
| 593 | rformat = CS4231_ADPCM_16; |
| 594 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 595 | } |
| 596 | if (channels > 1) |
| 597 | rformat |= CS4231_STEREO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 598 | return rformat; |
| 599 | } |
| 600 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 601 | static void snd_cs4231_calibrate_mute(struct snd_cs4231 *chip, int mute) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 602 | { |
| 603 | unsigned long flags; |
| 604 | |
| 605 | mute = mute ? 1 : 0; |
| 606 | spin_lock_irqsave(&chip->lock, flags); |
| 607 | if (chip->calibrate_mute == mute) { |
| 608 | spin_unlock_irqrestore(&chip->lock, flags); |
| 609 | return; |
| 610 | } |
| 611 | if (!mute) { |
| 612 | snd_cs4231_dout(chip, CS4231_LEFT_INPUT, |
| 613 | chip->image[CS4231_LEFT_INPUT]); |
| 614 | snd_cs4231_dout(chip, CS4231_RIGHT_INPUT, |
| 615 | chip->image[CS4231_RIGHT_INPUT]); |
| 616 | snd_cs4231_dout(chip, CS4231_LOOPBACK, |
| 617 | chip->image[CS4231_LOOPBACK]); |
| 618 | } |
| 619 | snd_cs4231_dout(chip, CS4231_AUX1_LEFT_INPUT, |
| 620 | mute ? 0x80 : chip->image[CS4231_AUX1_LEFT_INPUT]); |
| 621 | snd_cs4231_dout(chip, CS4231_AUX1_RIGHT_INPUT, |
| 622 | mute ? 0x80 : chip->image[CS4231_AUX1_RIGHT_INPUT]); |
| 623 | snd_cs4231_dout(chip, CS4231_AUX2_LEFT_INPUT, |
| 624 | mute ? 0x80 : chip->image[CS4231_AUX2_LEFT_INPUT]); |
| 625 | snd_cs4231_dout(chip, CS4231_AUX2_RIGHT_INPUT, |
| 626 | mute ? 0x80 : chip->image[CS4231_AUX2_RIGHT_INPUT]); |
| 627 | snd_cs4231_dout(chip, CS4231_LEFT_OUTPUT, |
| 628 | mute ? 0x80 : chip->image[CS4231_LEFT_OUTPUT]); |
| 629 | snd_cs4231_dout(chip, CS4231_RIGHT_OUTPUT, |
| 630 | mute ? 0x80 : chip->image[CS4231_RIGHT_OUTPUT]); |
| 631 | snd_cs4231_dout(chip, CS4231_LEFT_LINE_IN, |
| 632 | mute ? 0x80 : chip->image[CS4231_LEFT_LINE_IN]); |
| 633 | snd_cs4231_dout(chip, CS4231_RIGHT_LINE_IN, |
| 634 | mute ? 0x80 : chip->image[CS4231_RIGHT_LINE_IN]); |
| 635 | snd_cs4231_dout(chip, CS4231_MONO_CTRL, |
| 636 | mute ? 0xc0 : chip->image[CS4231_MONO_CTRL]); |
| 637 | chip->calibrate_mute = mute; |
| 638 | spin_unlock_irqrestore(&chip->lock, flags); |
| 639 | } |
| 640 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 641 | static void snd_cs4231_playback_format(struct snd_cs4231 *chip, |
| 642 | struct snd_pcm_hw_params *params, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | unsigned char pdfr) |
| 644 | { |
| 645 | unsigned long flags; |
| 646 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 647 | mutex_lock(&chip->mce_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | snd_cs4231_calibrate_mute(chip, 1); |
| 649 | |
| 650 | snd_cs4231_mce_up(chip); |
| 651 | |
| 652 | spin_lock_irqsave(&chip->lock, flags); |
| 653 | snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT, |
| 654 | (chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE) ? |
| 655 | (pdfr & 0xf0) | (chip->image[CS4231_REC_FORMAT] & 0x0f) : |
| 656 | pdfr); |
| 657 | spin_unlock_irqrestore(&chip->lock, flags); |
| 658 | |
| 659 | snd_cs4231_mce_down(chip); |
| 660 | |
| 661 | snd_cs4231_calibrate_mute(chip, 0); |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 662 | mutex_unlock(&chip->mce_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 663 | } |
| 664 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 665 | static void snd_cs4231_capture_format(struct snd_cs4231 *chip, |
| 666 | struct snd_pcm_hw_params *params, |
| 667 | unsigned char cdfr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 668 | { |
| 669 | unsigned long flags; |
| 670 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 671 | mutex_lock(&chip->mce_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 672 | snd_cs4231_calibrate_mute(chip, 1); |
| 673 | |
| 674 | snd_cs4231_mce_up(chip); |
| 675 | |
| 676 | spin_lock_irqsave(&chip->lock, flags); |
| 677 | if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE)) { |
| 678 | snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT, |
| 679 | ((chip->image[CS4231_PLAYBK_FORMAT]) & 0xf0) | |
| 680 | (cdfr & 0x0f)); |
| 681 | spin_unlock_irqrestore(&chip->lock, flags); |
| 682 | snd_cs4231_mce_down(chip); |
| 683 | snd_cs4231_mce_up(chip); |
| 684 | spin_lock_irqsave(&chip->lock, flags); |
| 685 | } |
| 686 | snd_cs4231_out(chip, CS4231_REC_FORMAT, cdfr); |
| 687 | spin_unlock_irqrestore(&chip->lock, flags); |
| 688 | |
| 689 | snd_cs4231_mce_down(chip); |
| 690 | |
| 691 | snd_cs4231_calibrate_mute(chip, 0); |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 692 | mutex_unlock(&chip->mce_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 693 | } |
| 694 | |
| 695 | /* |
| 696 | * Timer interface |
| 697 | */ |
| 698 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 699 | static unsigned long snd_cs4231_timer_resolution(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 700 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 701 | struct snd_cs4231 *chip = snd_timer_chip(timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 702 | |
| 703 | return chip->image[CS4231_PLAYBK_FORMAT] & 1 ? 9969 : 9920; |
| 704 | } |
| 705 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 706 | static int snd_cs4231_timer_start(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 707 | { |
| 708 | unsigned long flags; |
| 709 | unsigned int ticks; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 710 | struct snd_cs4231 *chip = snd_timer_chip(timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 711 | |
| 712 | spin_lock_irqsave(&chip->lock, flags); |
| 713 | ticks = timer->sticks; |
| 714 | if ((chip->image[CS4231_ALT_FEATURE_1] & CS4231_TIMER_ENABLE) == 0 || |
| 715 | (unsigned char)(ticks >> 8) != chip->image[CS4231_TIMER_HIGH] || |
| 716 | (unsigned char)ticks != chip->image[CS4231_TIMER_LOW]) { |
| 717 | snd_cs4231_out(chip, CS4231_TIMER_HIGH, |
| 718 | chip->image[CS4231_TIMER_HIGH] = |
| 719 | (unsigned char) (ticks >> 8)); |
| 720 | snd_cs4231_out(chip, CS4231_TIMER_LOW, |
| 721 | chip->image[CS4231_TIMER_LOW] = |
| 722 | (unsigned char) ticks); |
| 723 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 724 | chip->image[CS4231_ALT_FEATURE_1] | |
| 725 | CS4231_TIMER_ENABLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 726 | } |
| 727 | spin_unlock_irqrestore(&chip->lock, flags); |
| 728 | |
| 729 | return 0; |
| 730 | } |
| 731 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 732 | static int snd_cs4231_timer_stop(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 733 | { |
| 734 | unsigned long flags; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 735 | struct snd_cs4231 *chip = snd_timer_chip(timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 736 | |
| 737 | spin_lock_irqsave(&chip->lock, flags); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 738 | chip->image[CS4231_ALT_FEATURE_1] &= ~CS4231_TIMER_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 739 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 740 | chip->image[CS4231_ALT_FEATURE_1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | spin_unlock_irqrestore(&chip->lock, flags); |
| 742 | |
| 743 | return 0; |
| 744 | } |
| 745 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 746 | static void __init snd_cs4231_init(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 747 | { |
| 748 | unsigned long flags; |
| 749 | |
| 750 | snd_cs4231_mce_down(chip); |
| 751 | |
| 752 | #ifdef SNDRV_DEBUG_MCE |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 753 | snd_printdd("init: (1)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 754 | #endif |
| 755 | snd_cs4231_mce_up(chip); |
| 756 | spin_lock_irqsave(&chip->lock, flags); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 757 | chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE | |
| 758 | CS4231_PLAYBACK_PIO | |
| 759 | CS4231_RECORD_ENABLE | |
| 760 | CS4231_RECORD_PIO | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | CS4231_CALIB_MODE); |
| 762 | chip->image[CS4231_IFACE_CTRL] |= CS4231_AUTOCALIB; |
| 763 | snd_cs4231_out(chip, CS4231_IFACE_CTRL, chip->image[CS4231_IFACE_CTRL]); |
| 764 | spin_unlock_irqrestore(&chip->lock, flags); |
| 765 | snd_cs4231_mce_down(chip); |
| 766 | |
| 767 | #ifdef SNDRV_DEBUG_MCE |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 768 | snd_printdd("init: (2)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 769 | #endif |
| 770 | |
| 771 | snd_cs4231_mce_up(chip); |
| 772 | spin_lock_irqsave(&chip->lock, flags); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 773 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, |
| 774 | chip->image[CS4231_ALT_FEATURE_1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 775 | spin_unlock_irqrestore(&chip->lock, flags); |
| 776 | snd_cs4231_mce_down(chip); |
| 777 | |
| 778 | #ifdef SNDRV_DEBUG_MCE |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 779 | snd_printdd("init: (3) - afei = 0x%x\n", |
| 780 | chip->image[CS4231_ALT_FEATURE_1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 781 | #endif |
| 782 | |
| 783 | spin_lock_irqsave(&chip->lock, flags); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 784 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_2, |
| 785 | chip->image[CS4231_ALT_FEATURE_2]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 786 | spin_unlock_irqrestore(&chip->lock, flags); |
| 787 | |
| 788 | snd_cs4231_mce_up(chip); |
| 789 | spin_lock_irqsave(&chip->lock, flags); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 790 | snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT, |
| 791 | chip->image[CS4231_PLAYBK_FORMAT]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 792 | spin_unlock_irqrestore(&chip->lock, flags); |
| 793 | snd_cs4231_mce_down(chip); |
| 794 | |
| 795 | #ifdef SNDRV_DEBUG_MCE |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 796 | snd_printdd("init: (4)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | #endif |
| 798 | |
| 799 | snd_cs4231_mce_up(chip); |
| 800 | spin_lock_irqsave(&chip->lock, flags); |
| 801 | snd_cs4231_out(chip, CS4231_REC_FORMAT, chip->image[CS4231_REC_FORMAT]); |
| 802 | spin_unlock_irqrestore(&chip->lock, flags); |
| 803 | snd_cs4231_mce_down(chip); |
| 804 | |
| 805 | #ifdef SNDRV_DEBUG_MCE |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 806 | snd_printdd("init: (5)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 807 | #endif |
| 808 | } |
| 809 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 810 | static int snd_cs4231_open(struct snd_cs4231 *chip, unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 811 | { |
| 812 | unsigned long flags; |
| 813 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 814 | mutex_lock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 815 | if ((chip->mode & mode)) { |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 816 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 817 | return -EAGAIN; |
| 818 | } |
| 819 | if (chip->mode & CS4231_MODE_OPEN) { |
| 820 | chip->mode |= mode; |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 821 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 822 | return 0; |
| 823 | } |
| 824 | /* ok. now enable and ack CODEC IRQ */ |
| 825 | spin_lock_irqsave(&chip->lock, flags); |
| 826 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, CS4231_PLAYBACK_IRQ | |
| 827 | CS4231_RECORD_IRQ | |
| 828 | CS4231_TIMER_IRQ); |
| 829 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0); |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 830 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */ |
| 831 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 832 | |
| 833 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, CS4231_PLAYBACK_IRQ | |
| 834 | CS4231_RECORD_IRQ | |
| 835 | CS4231_TIMER_IRQ); |
| 836 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 837 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 838 | spin_unlock_irqrestore(&chip->lock, flags); |
| 839 | |
| 840 | chip->mode = mode; |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 841 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | return 0; |
| 843 | } |
| 844 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 845 | static void snd_cs4231_close(struct snd_cs4231 *chip, unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 846 | { |
| 847 | unsigned long flags; |
| 848 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 849 | mutex_lock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 850 | chip->mode &= ~mode; |
| 851 | if (chip->mode & CS4231_MODE_OPEN) { |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 852 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 853 | return; |
| 854 | } |
| 855 | snd_cs4231_calibrate_mute(chip, 1); |
| 856 | |
| 857 | /* disable IRQ */ |
| 858 | spin_lock_irqsave(&chip->lock, flags); |
| 859 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0); |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 860 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */ |
| 861 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 862 | |
| 863 | /* now disable record & playback */ |
| 864 | |
| 865 | if (chip->image[CS4231_IFACE_CTRL] & |
| 866 | (CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO | |
| 867 | CS4231_RECORD_ENABLE | CS4231_RECORD_PIO)) { |
| 868 | spin_unlock_irqrestore(&chip->lock, flags); |
| 869 | snd_cs4231_mce_up(chip); |
| 870 | spin_lock_irqsave(&chip->lock, flags); |
| 871 | chip->image[CS4231_IFACE_CTRL] &= |
| 872 | ~(CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO | |
| 873 | CS4231_RECORD_ENABLE | CS4231_RECORD_PIO); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 874 | snd_cs4231_out(chip, CS4231_IFACE_CTRL, |
| 875 | chip->image[CS4231_IFACE_CTRL]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 876 | spin_unlock_irqrestore(&chip->lock, flags); |
| 877 | snd_cs4231_mce_down(chip); |
| 878 | spin_lock_irqsave(&chip->lock, flags); |
| 879 | } |
| 880 | |
| 881 | /* clear IRQ again */ |
| 882 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0); |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 883 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */ |
| 884 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | spin_unlock_irqrestore(&chip->lock, flags); |
| 886 | |
| 887 | snd_cs4231_calibrate_mute(chip, 0); |
| 888 | |
| 889 | chip->mode = 0; |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 890 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 891 | } |
| 892 | |
| 893 | /* |
| 894 | * timer open/close |
| 895 | */ |
| 896 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 897 | static int snd_cs4231_timer_open(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 898 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 899 | struct snd_cs4231 *chip = snd_timer_chip(timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 900 | snd_cs4231_open(chip, CS4231_MODE_TIMER); |
| 901 | return 0; |
| 902 | } |
| 903 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 904 | static int snd_cs4231_timer_close(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 905 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 906 | struct snd_cs4231 *chip = snd_timer_chip(timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 907 | snd_cs4231_close(chip, CS4231_MODE_TIMER); |
| 908 | return 0; |
| 909 | } |
| 910 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 911 | static struct snd_timer_hardware snd_cs4231_timer_table = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 912 | .flags = SNDRV_TIMER_HW_AUTO, |
| 913 | .resolution = 9945, |
| 914 | .ticks = 65535, |
| 915 | .open = snd_cs4231_timer_open, |
| 916 | .close = snd_cs4231_timer_close, |
| 917 | .c_resolution = snd_cs4231_timer_resolution, |
| 918 | .start = snd_cs4231_timer_start, |
| 919 | .stop = snd_cs4231_timer_stop, |
| 920 | }; |
| 921 | |
| 922 | /* |
| 923 | * ok.. exported functions.. |
| 924 | */ |
| 925 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 926 | static int snd_cs4231_playback_hw_params(struct snd_pcm_substream *substream, |
| 927 | struct snd_pcm_hw_params *hw_params) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 928 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 929 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 930 | unsigned char new_pdfr; |
| 931 | int err; |
| 932 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 933 | err = snd_pcm_lib_malloc_pages(substream, |
| 934 | params_buffer_bytes(hw_params)); |
| 935 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 936 | return err; |
| 937 | new_pdfr = snd_cs4231_get_format(chip, params_format(hw_params), |
| 938 | params_channels(hw_params)) | |
| 939 | snd_cs4231_get_rate(params_rate(hw_params)); |
| 940 | snd_cs4231_playback_format(chip, hw_params, new_pdfr); |
| 941 | |
| 942 | return 0; |
| 943 | } |
| 944 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 945 | static int snd_cs4231_playback_prepare(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 946 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 947 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
| 948 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 949 | unsigned long flags; |
| 950 | |
| 951 | spin_lock_irqsave(&chip->lock, flags); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 952 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 953 | chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE | |
| 954 | CS4231_PLAYBACK_PIO); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 955 | |
Eric Sesterhenn | 817dd6e | 2006-03-24 18:49:12 +0100 | [diff] [blame] | 956 | BUG_ON(runtime->period_size > 0xffff + 1); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 957 | |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 958 | chip->p_periods_sent = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 959 | spin_unlock_irqrestore(&chip->lock, flags); |
| 960 | |
| 961 | return 0; |
| 962 | } |
| 963 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 964 | static int snd_cs4231_capture_hw_params(struct snd_pcm_substream *substream, |
| 965 | struct snd_pcm_hw_params *hw_params) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 967 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 968 | unsigned char new_cdfr; |
| 969 | int err; |
| 970 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 971 | err = snd_pcm_lib_malloc_pages(substream, |
| 972 | params_buffer_bytes(hw_params)); |
| 973 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | return err; |
| 975 | new_cdfr = snd_cs4231_get_format(chip, params_format(hw_params), |
| 976 | params_channels(hw_params)) | |
| 977 | snd_cs4231_get_rate(params_rate(hw_params)); |
| 978 | snd_cs4231_capture_format(chip, hw_params, new_cdfr); |
| 979 | |
| 980 | return 0; |
| 981 | } |
| 982 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 983 | static int snd_cs4231_capture_prepare(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 984 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 985 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 986 | unsigned long flags; |
| 987 | |
| 988 | spin_lock_irqsave(&chip->lock, flags); |
| 989 | chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_RECORD_ENABLE | |
| 990 | CS4231_RECORD_PIO); |
| 991 | |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 992 | |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 993 | chip->c_periods_sent = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | spin_unlock_irqrestore(&chip->lock, flags); |
| 995 | |
| 996 | return 0; |
| 997 | } |
| 998 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 999 | static void snd_cs4231_overrange(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1000 | { |
| 1001 | unsigned long flags; |
| 1002 | unsigned char res; |
| 1003 | |
| 1004 | spin_lock_irqsave(&chip->lock, flags); |
| 1005 | res = snd_cs4231_in(chip, CS4231_TEST_INIT); |
| 1006 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1007 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1008 | /* detect overrange only above 0dB; may be user selectable? */ |
| 1009 | if (res & (0x08 | 0x02)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | chip->capture_substream->runtime->overrange++; |
| 1011 | } |
| 1012 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1013 | static void snd_cs4231_play_callback(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1014 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1015 | if (chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE) { |
| 1016 | snd_pcm_period_elapsed(chip->playback_substream); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1017 | snd_cs4231_advance_dma(&chip->p_dma, chip->playback_substream, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | &chip->p_periods_sent); |
| 1019 | } |
| 1020 | } |
| 1021 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1022 | static void snd_cs4231_capture_callback(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1023 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | if (chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE) { |
| 1025 | snd_pcm_period_elapsed(chip->capture_substream); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1026 | snd_cs4231_advance_dma(&chip->c_dma, chip->capture_substream, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1027 | &chip->c_periods_sent); |
| 1028 | } |
| 1029 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1030 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1031 | static snd_pcm_uframes_t snd_cs4231_playback_pointer( |
| 1032 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1033 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1034 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
| 1035 | struct cs4231_dma_control *dma_cont = &chip->p_dma; |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 1036 | size_t ptr; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1037 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1038 | if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE)) |
| 1039 | return 0; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1040 | ptr = dma_cont->address(dma_cont); |
| 1041 | if (ptr != 0) |
| 1042 | ptr -= substream->runtime->dma_addr; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1043 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | return bytes_to_frames(substream->runtime, ptr); |
| 1045 | } |
| 1046 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1047 | static snd_pcm_uframes_t snd_cs4231_capture_pointer( |
| 1048 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1050 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
| 1051 | struct cs4231_dma_control *dma_cont = &chip->c_dma; |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 1052 | size_t ptr; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1053 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1054 | if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE)) |
| 1055 | return 0; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1056 | ptr = dma_cont->address(dma_cont); |
| 1057 | if (ptr != 0) |
| 1058 | ptr -= substream->runtime->dma_addr; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1059 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1060 | return bytes_to_frames(substream->runtime, ptr); |
| 1061 | } |
| 1062 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1063 | static int __init snd_cs4231_probe(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1064 | { |
| 1065 | unsigned long flags; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1066 | int i; |
| 1067 | int id = 0; |
| 1068 | int vers = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1069 | unsigned char *ptr; |
| 1070 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1071 | for (i = 0; i < 50; i++) { |
| 1072 | mb(); |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 1073 | if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT) |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1074 | msleep(2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1075 | else { |
| 1076 | spin_lock_irqsave(&chip->lock, flags); |
| 1077 | snd_cs4231_out(chip, CS4231_MISC_INFO, CS4231_MODE2); |
| 1078 | id = snd_cs4231_in(chip, CS4231_MISC_INFO) & 0x0f; |
| 1079 | vers = snd_cs4231_in(chip, CS4231_VERSION); |
| 1080 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1081 | if (id == 0x0a) |
| 1082 | break; /* this is valid value */ |
| 1083 | } |
| 1084 | } |
| 1085 | snd_printdd("cs4231: port = %p, id = 0x%x\n", chip->port, id); |
| 1086 | if (id != 0x0a) |
| 1087 | return -ENODEV; /* no valid device found */ |
| 1088 | |
| 1089 | spin_lock_irqsave(&chip->lock, flags); |
| 1090 | |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 1091 | /* clear any pendings IRQ */ |
| 1092 | __cs4231_readb(chip, CS4231U(chip, STATUS)); |
| 1093 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1094 | mb(); |
| 1095 | |
| 1096 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1097 | |
| 1098 | chip->image[CS4231_MISC_INFO] = CS4231_MODE2; |
| 1099 | chip->image[CS4231_IFACE_CTRL] = |
| 1100 | chip->image[CS4231_IFACE_CTRL] & ~CS4231_SINGLE_DMA; |
| 1101 | chip->image[CS4231_ALT_FEATURE_1] = 0x80; |
| 1102 | chip->image[CS4231_ALT_FEATURE_2] = 0x01; |
| 1103 | if (vers & 0x20) |
| 1104 | chip->image[CS4231_ALT_FEATURE_2] |= 0x02; |
| 1105 | |
| 1106 | ptr = (unsigned char *) &chip->image; |
| 1107 | |
| 1108 | snd_cs4231_mce_down(chip); |
| 1109 | |
| 1110 | spin_lock_irqsave(&chip->lock, flags); |
| 1111 | |
| 1112 | for (i = 0; i < 32; i++) /* ok.. fill all CS4231 registers */ |
| 1113 | snd_cs4231_out(chip, i, *ptr++); |
| 1114 | |
| 1115 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1116 | |
| 1117 | snd_cs4231_mce_up(chip); |
| 1118 | |
| 1119 | snd_cs4231_mce_down(chip); |
| 1120 | |
| 1121 | mdelay(2); |
| 1122 | |
| 1123 | return 0; /* all things are ok.. */ |
| 1124 | } |
| 1125 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1126 | static struct snd_pcm_hardware snd_cs4231_playback = { |
| 1127 | .info = SNDRV_PCM_INFO_MMAP | |
| 1128 | SNDRV_PCM_INFO_INTERLEAVED | |
| 1129 | SNDRV_PCM_INFO_MMAP_VALID | |
| 1130 | SNDRV_PCM_INFO_SYNC_START, |
| 1131 | .formats = SNDRV_PCM_FMTBIT_MU_LAW | |
| 1132 | SNDRV_PCM_FMTBIT_A_LAW | |
| 1133 | SNDRV_PCM_FMTBIT_IMA_ADPCM | |
| 1134 | SNDRV_PCM_FMTBIT_U8 | |
| 1135 | SNDRV_PCM_FMTBIT_S16_LE | |
| 1136 | SNDRV_PCM_FMTBIT_S16_BE, |
| 1137 | .rates = SNDRV_PCM_RATE_KNOT | |
| 1138 | SNDRV_PCM_RATE_8000_48000, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1139 | .rate_min = 5510, |
| 1140 | .rate_max = 48000, |
| 1141 | .channels_min = 1, |
| 1142 | .channels_max = 2, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1143 | .buffer_bytes_max = 32 * 1024, |
David S. Miller | f9af1d9 | 2007-01-03 18:51:54 -0800 | [diff] [blame] | 1144 | .period_bytes_min = 64, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1145 | .period_bytes_max = 32 * 1024, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1146 | .periods_min = 1, |
| 1147 | .periods_max = 1024, |
| 1148 | }; |
| 1149 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1150 | static struct snd_pcm_hardware snd_cs4231_capture = { |
| 1151 | .info = SNDRV_PCM_INFO_MMAP | |
| 1152 | SNDRV_PCM_INFO_INTERLEAVED | |
| 1153 | SNDRV_PCM_INFO_MMAP_VALID | |
| 1154 | SNDRV_PCM_INFO_SYNC_START, |
| 1155 | .formats = SNDRV_PCM_FMTBIT_MU_LAW | |
| 1156 | SNDRV_PCM_FMTBIT_A_LAW | |
| 1157 | SNDRV_PCM_FMTBIT_IMA_ADPCM | |
| 1158 | SNDRV_PCM_FMTBIT_U8 | |
| 1159 | SNDRV_PCM_FMTBIT_S16_LE | |
| 1160 | SNDRV_PCM_FMTBIT_S16_BE, |
| 1161 | .rates = SNDRV_PCM_RATE_KNOT | |
| 1162 | SNDRV_PCM_RATE_8000_48000, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1163 | .rate_min = 5510, |
| 1164 | .rate_max = 48000, |
| 1165 | .channels_min = 1, |
| 1166 | .channels_max = 2, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1167 | .buffer_bytes_max = 32 * 1024, |
David S. Miller | f9af1d9 | 2007-01-03 18:51:54 -0800 | [diff] [blame] | 1168 | .period_bytes_min = 64, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1169 | .period_bytes_max = 32 * 1024, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1170 | .periods_min = 1, |
| 1171 | .periods_max = 1024, |
| 1172 | }; |
| 1173 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1174 | static int snd_cs4231_playback_open(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1175 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1176 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
| 1177 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1178 | int err; |
| 1179 | |
| 1180 | runtime->hw = snd_cs4231_playback; |
| 1181 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1182 | err = snd_cs4231_open(chip, CS4231_MODE_PLAY); |
| 1183 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1184 | snd_free_pages(runtime->dma_area, runtime->dma_bytes); |
| 1185 | return err; |
| 1186 | } |
| 1187 | chip->playback_substream = substream; |
| 1188 | chip->p_periods_sent = 0; |
| 1189 | snd_pcm_set_sync(substream); |
| 1190 | snd_cs4231_xrate(runtime); |
| 1191 | |
| 1192 | return 0; |
| 1193 | } |
| 1194 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1195 | static int snd_cs4231_capture_open(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1196 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1197 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
| 1198 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | int err; |
| 1200 | |
| 1201 | runtime->hw = snd_cs4231_capture; |
| 1202 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1203 | err = snd_cs4231_open(chip, CS4231_MODE_RECORD); |
| 1204 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1205 | snd_free_pages(runtime->dma_area, runtime->dma_bytes); |
| 1206 | return err; |
| 1207 | } |
| 1208 | chip->capture_substream = substream; |
| 1209 | chip->c_periods_sent = 0; |
| 1210 | snd_pcm_set_sync(substream); |
| 1211 | snd_cs4231_xrate(runtime); |
| 1212 | |
| 1213 | return 0; |
| 1214 | } |
| 1215 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1216 | static int snd_cs4231_playback_close(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1217 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1218 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1219 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1220 | snd_cs4231_close(chip, CS4231_MODE_PLAY); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1221 | chip->playback_substream = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1222 | |
| 1223 | return 0; |
| 1224 | } |
| 1225 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1226 | static int snd_cs4231_capture_close(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1227 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1228 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1229 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1230 | snd_cs4231_close(chip, CS4231_MODE_RECORD); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1231 | chip->capture_substream = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | |
| 1233 | return 0; |
| 1234 | } |
| 1235 | |
| 1236 | /* XXX We can do some power-management, in particular on EBUS using |
| 1237 | * XXX the audio AUXIO register... |
| 1238 | */ |
| 1239 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1240 | static struct snd_pcm_ops snd_cs4231_playback_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1241 | .open = snd_cs4231_playback_open, |
| 1242 | .close = snd_cs4231_playback_close, |
| 1243 | .ioctl = snd_pcm_lib_ioctl, |
| 1244 | .hw_params = snd_cs4231_playback_hw_params, |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1245 | .hw_free = snd_pcm_lib_free_pages, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | .prepare = snd_cs4231_playback_prepare, |
| 1247 | .trigger = snd_cs4231_trigger, |
| 1248 | .pointer = snd_cs4231_playback_pointer, |
| 1249 | }; |
| 1250 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1251 | static struct snd_pcm_ops snd_cs4231_capture_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1252 | .open = snd_cs4231_capture_open, |
| 1253 | .close = snd_cs4231_capture_close, |
| 1254 | .ioctl = snd_pcm_lib_ioctl, |
| 1255 | .hw_params = snd_cs4231_capture_hw_params, |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1256 | .hw_free = snd_pcm_lib_free_pages, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | .prepare = snd_cs4231_capture_prepare, |
| 1258 | .trigger = snd_cs4231_trigger, |
| 1259 | .pointer = snd_cs4231_capture_pointer, |
| 1260 | }; |
| 1261 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1262 | static int __init snd_cs4231_pcm(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1264 | struct snd_cs4231 *chip = card->private_data; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1265 | struct snd_pcm *pcm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1266 | int err; |
| 1267 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1268 | err = snd_pcm_new(card, "CS4231", 0, 1, 1, &pcm); |
| 1269 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | return err; |
| 1271 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1272 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, |
| 1273 | &snd_cs4231_playback_ops); |
| 1274 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, |
| 1275 | &snd_cs4231_capture_ops); |
| 1276 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1277 | /* global setup */ |
| 1278 | pcm->private_data = chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1279 | pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX; |
| 1280 | strcpy(pcm->name, "CS4231"); |
| 1281 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1282 | chip->p_dma.preallocate(chip, pcm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1283 | |
| 1284 | chip->pcm = pcm; |
| 1285 | |
| 1286 | return 0; |
| 1287 | } |
| 1288 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1289 | static int __init snd_cs4231_timer(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1290 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1291 | struct snd_cs4231 *chip = card->private_data; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1292 | struct snd_timer *timer; |
| 1293 | struct snd_timer_id tid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1294 | int err; |
| 1295 | |
| 1296 | /* Timer initialization */ |
| 1297 | tid.dev_class = SNDRV_TIMER_CLASS_CARD; |
| 1298 | tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE; |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1299 | tid.card = card->number; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1300 | tid.device = 0; |
| 1301 | tid.subdevice = 0; |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1302 | err = snd_timer_new(card, "CS4231", &tid, &timer); |
| 1303 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | return err; |
| 1305 | strcpy(timer->name, "CS4231"); |
| 1306 | timer->private_data = chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1307 | timer->hw = snd_cs4231_timer_table; |
| 1308 | chip->timer = timer; |
| 1309 | |
| 1310 | return 0; |
| 1311 | } |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1312 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1313 | /* |
| 1314 | * MIXER part |
| 1315 | */ |
| 1316 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1317 | static int snd_cs4231_info_mux(struct snd_kcontrol *kcontrol, |
| 1318 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | { |
| 1320 | static char *texts[4] = { |
| 1321 | "Line", "CD", "Mic", "Mix" |
| 1322 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1323 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1324 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 1325 | uinfo->count = 2; |
| 1326 | uinfo->value.enumerated.items = 4; |
| 1327 | if (uinfo->value.enumerated.item > 3) |
| 1328 | uinfo->value.enumerated.item = 3; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1329 | strcpy(uinfo->value.enumerated.name, |
| 1330 | texts[uinfo->value.enumerated.item]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1331 | |
| 1332 | return 0; |
| 1333 | } |
| 1334 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1335 | static int snd_cs4231_get_mux(struct snd_kcontrol *kcontrol, |
| 1336 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1337 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1338 | struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | unsigned long flags; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1340 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1341 | spin_lock_irqsave(&chip->lock, flags); |
| 1342 | ucontrol->value.enumerated.item[0] = |
| 1343 | (chip->image[CS4231_LEFT_INPUT] & CS4231_MIXS_ALL) >> 6; |
| 1344 | ucontrol->value.enumerated.item[1] = |
| 1345 | (chip->image[CS4231_RIGHT_INPUT] & CS4231_MIXS_ALL) >> 6; |
| 1346 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1347 | |
| 1348 | return 0; |
| 1349 | } |
| 1350 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1351 | static int snd_cs4231_put_mux(struct snd_kcontrol *kcontrol, |
| 1352 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1353 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1354 | struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1355 | unsigned long flags; |
| 1356 | unsigned short left, right; |
| 1357 | int change; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1358 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1359 | if (ucontrol->value.enumerated.item[0] > 3 || |
| 1360 | ucontrol->value.enumerated.item[1] > 3) |
| 1361 | return -EINVAL; |
| 1362 | left = ucontrol->value.enumerated.item[0] << 6; |
| 1363 | right = ucontrol->value.enumerated.item[1] << 6; |
| 1364 | |
| 1365 | spin_lock_irqsave(&chip->lock, flags); |
| 1366 | |
| 1367 | left = (chip->image[CS4231_LEFT_INPUT] & ~CS4231_MIXS_ALL) | left; |
| 1368 | right = (chip->image[CS4231_RIGHT_INPUT] & ~CS4231_MIXS_ALL) | right; |
| 1369 | change = left != chip->image[CS4231_LEFT_INPUT] || |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1370 | right != chip->image[CS4231_RIGHT_INPUT]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1371 | snd_cs4231_out(chip, CS4231_LEFT_INPUT, left); |
| 1372 | snd_cs4231_out(chip, CS4231_RIGHT_INPUT, right); |
| 1373 | |
| 1374 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1375 | |
| 1376 | return change; |
| 1377 | } |
| 1378 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1379 | static int snd_cs4231_info_single(struct snd_kcontrol *kcontrol, |
| 1380 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1381 | { |
| 1382 | int mask = (kcontrol->private_value >> 16) & 0xff; |
| 1383 | |
| 1384 | uinfo->type = (mask == 1) ? |
| 1385 | SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 1386 | uinfo->count = 1; |
| 1387 | uinfo->value.integer.min = 0; |
| 1388 | uinfo->value.integer.max = mask; |
| 1389 | |
| 1390 | return 0; |
| 1391 | } |
| 1392 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1393 | static int snd_cs4231_get_single(struct snd_kcontrol *kcontrol, |
| 1394 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1395 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1396 | struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1397 | unsigned long flags; |
| 1398 | int reg = kcontrol->private_value & 0xff; |
| 1399 | int shift = (kcontrol->private_value >> 8) & 0xff; |
| 1400 | int mask = (kcontrol->private_value >> 16) & 0xff; |
| 1401 | int invert = (kcontrol->private_value >> 24) & 0xff; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1402 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1403 | spin_lock_irqsave(&chip->lock, flags); |
| 1404 | |
| 1405 | ucontrol->value.integer.value[0] = (chip->image[reg] >> shift) & mask; |
| 1406 | |
| 1407 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1408 | |
| 1409 | if (invert) |
| 1410 | ucontrol->value.integer.value[0] = |
| 1411 | (mask - ucontrol->value.integer.value[0]); |
| 1412 | |
| 1413 | return 0; |
| 1414 | } |
| 1415 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1416 | static int snd_cs4231_put_single(struct snd_kcontrol *kcontrol, |
| 1417 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1418 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1419 | struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1420 | unsigned long flags; |
| 1421 | int reg = kcontrol->private_value & 0xff; |
| 1422 | int shift = (kcontrol->private_value >> 8) & 0xff; |
| 1423 | int mask = (kcontrol->private_value >> 16) & 0xff; |
| 1424 | int invert = (kcontrol->private_value >> 24) & 0xff; |
| 1425 | int change; |
| 1426 | unsigned short val; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1427 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1428 | val = (ucontrol->value.integer.value[0] & mask); |
| 1429 | if (invert) |
| 1430 | val = mask - val; |
| 1431 | val <<= shift; |
| 1432 | |
| 1433 | spin_lock_irqsave(&chip->lock, flags); |
| 1434 | |
| 1435 | val = (chip->image[reg] & ~(mask << shift)) | val; |
| 1436 | change = val != chip->image[reg]; |
| 1437 | snd_cs4231_out(chip, reg, val); |
| 1438 | |
| 1439 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1440 | |
| 1441 | return change; |
| 1442 | } |
| 1443 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1444 | static int snd_cs4231_info_double(struct snd_kcontrol *kcontrol, |
| 1445 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1446 | { |
| 1447 | int mask = (kcontrol->private_value >> 24) & 0xff; |
| 1448 | |
| 1449 | uinfo->type = mask == 1 ? |
| 1450 | SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 1451 | uinfo->count = 2; |
| 1452 | uinfo->value.integer.min = 0; |
| 1453 | uinfo->value.integer.max = mask; |
| 1454 | |
| 1455 | return 0; |
| 1456 | } |
| 1457 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1458 | static int snd_cs4231_get_double(struct snd_kcontrol *kcontrol, |
| 1459 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1460 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1461 | struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1462 | unsigned long flags; |
| 1463 | int left_reg = kcontrol->private_value & 0xff; |
| 1464 | int right_reg = (kcontrol->private_value >> 8) & 0xff; |
| 1465 | int shift_left = (kcontrol->private_value >> 16) & 0x07; |
| 1466 | int shift_right = (kcontrol->private_value >> 19) & 0x07; |
| 1467 | int mask = (kcontrol->private_value >> 24) & 0xff; |
| 1468 | int invert = (kcontrol->private_value >> 22) & 1; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1469 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1470 | spin_lock_irqsave(&chip->lock, flags); |
| 1471 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1472 | ucontrol->value.integer.value[0] = |
| 1473 | (chip->image[left_reg] >> shift_left) & mask; |
| 1474 | ucontrol->value.integer.value[1] = |
| 1475 | (chip->image[right_reg] >> shift_right) & mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1476 | |
| 1477 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1478 | |
| 1479 | if (invert) { |
| 1480 | ucontrol->value.integer.value[0] = |
| 1481 | (mask - ucontrol->value.integer.value[0]); |
| 1482 | ucontrol->value.integer.value[1] = |
| 1483 | (mask - ucontrol->value.integer.value[1]); |
| 1484 | } |
| 1485 | |
| 1486 | return 0; |
| 1487 | } |
| 1488 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1489 | static int snd_cs4231_put_double(struct snd_kcontrol *kcontrol, |
| 1490 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1491 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1492 | struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1493 | unsigned long flags; |
| 1494 | int left_reg = kcontrol->private_value & 0xff; |
| 1495 | int right_reg = (kcontrol->private_value >> 8) & 0xff; |
| 1496 | int shift_left = (kcontrol->private_value >> 16) & 0x07; |
| 1497 | int shift_right = (kcontrol->private_value >> 19) & 0x07; |
| 1498 | int mask = (kcontrol->private_value >> 24) & 0xff; |
| 1499 | int invert = (kcontrol->private_value >> 22) & 1; |
| 1500 | int change; |
| 1501 | unsigned short val1, val2; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1502 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1503 | val1 = ucontrol->value.integer.value[0] & mask; |
| 1504 | val2 = ucontrol->value.integer.value[1] & mask; |
| 1505 | if (invert) { |
| 1506 | val1 = mask - val1; |
| 1507 | val2 = mask - val2; |
| 1508 | } |
| 1509 | val1 <<= shift_left; |
| 1510 | val2 <<= shift_right; |
| 1511 | |
| 1512 | spin_lock_irqsave(&chip->lock, flags); |
| 1513 | |
| 1514 | val1 = (chip->image[left_reg] & ~(mask << shift_left)) | val1; |
| 1515 | val2 = (chip->image[right_reg] & ~(mask << shift_right)) | val2; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1516 | change = val1 != chip->image[left_reg]; |
| 1517 | change |= val2 != chip->image[right_reg]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1518 | snd_cs4231_out(chip, left_reg, val1); |
| 1519 | snd_cs4231_out(chip, right_reg, val2); |
| 1520 | |
| 1521 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1522 | |
| 1523 | return change; |
| 1524 | } |
| 1525 | |
| 1526 | #define CS4231_SINGLE(xname, xindex, reg, shift, mask, invert) \ |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1527 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), .index = (xindex), \ |
| 1528 | .info = snd_cs4231_info_single, \ |
| 1529 | .get = snd_cs4231_get_single, .put = snd_cs4231_put_single, \ |
| 1530 | .private_value = (reg) | ((shift) << 8) | ((mask) << 16) | ((invert) << 24) } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1531 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1532 | #define CS4231_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, \ |
| 1533 | shift_right, mask, invert) \ |
| 1534 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), .index = (xindex), \ |
| 1535 | .info = snd_cs4231_info_double, \ |
| 1536 | .get = snd_cs4231_get_double, .put = snd_cs4231_put_double, \ |
| 1537 | .private_value = (left_reg) | ((right_reg) << 8) | ((shift_left) << 16) | \ |
| 1538 | ((shift_right) << 19) | ((mask) << 24) | ((invert) << 22) } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1539 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1540 | static struct snd_kcontrol_new snd_cs4231_controls[] __initdata = { |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1541 | CS4231_DOUBLE("PCM Playback Switch", 0, CS4231_LEFT_OUTPUT, |
| 1542 | CS4231_RIGHT_OUTPUT, 7, 7, 1, 1), |
| 1543 | CS4231_DOUBLE("PCM Playback Volume", 0, CS4231_LEFT_OUTPUT, |
| 1544 | CS4231_RIGHT_OUTPUT, 0, 0, 63, 1), |
| 1545 | CS4231_DOUBLE("Line Playback Switch", 0, CS4231_LEFT_LINE_IN, |
| 1546 | CS4231_RIGHT_LINE_IN, 7, 7, 1, 1), |
| 1547 | CS4231_DOUBLE("Line Playback Volume", 0, CS4231_LEFT_LINE_IN, |
| 1548 | CS4231_RIGHT_LINE_IN, 0, 0, 31, 1), |
| 1549 | CS4231_DOUBLE("Aux Playback Switch", 0, CS4231_AUX1_LEFT_INPUT, |
| 1550 | CS4231_AUX1_RIGHT_INPUT, 7, 7, 1, 1), |
| 1551 | CS4231_DOUBLE("Aux Playback Volume", 0, CS4231_AUX1_LEFT_INPUT, |
| 1552 | CS4231_AUX1_RIGHT_INPUT, 0, 0, 31, 1), |
| 1553 | CS4231_DOUBLE("Aux Playback Switch", 1, CS4231_AUX2_LEFT_INPUT, |
| 1554 | CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1), |
| 1555 | CS4231_DOUBLE("Aux Playback Volume", 1, CS4231_AUX2_LEFT_INPUT, |
| 1556 | CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1557 | CS4231_SINGLE("Mono Playback Switch", 0, CS4231_MONO_CTRL, 7, 1, 1), |
| 1558 | CS4231_SINGLE("Mono Playback Volume", 0, CS4231_MONO_CTRL, 0, 15, 1), |
| 1559 | CS4231_SINGLE("Mono Output Playback Switch", 0, CS4231_MONO_CTRL, 6, 1, 1), |
| 1560 | CS4231_SINGLE("Mono Output Playback Bypass", 0, CS4231_MONO_CTRL, 5, 1, 0), |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1561 | CS4231_DOUBLE("Capture Volume", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 0, 0, |
| 1562 | 15, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1563 | { |
| 1564 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1565 | .name = "Capture Source", |
| 1566 | .info = snd_cs4231_info_mux, |
| 1567 | .get = snd_cs4231_get_mux, |
| 1568 | .put = snd_cs4231_put_mux, |
| 1569 | }, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1570 | CS4231_DOUBLE("Mic Boost", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 5, 5, |
| 1571 | 1, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | CS4231_SINGLE("Loopback Capture Switch", 0, CS4231_LOOPBACK, 0, 1, 0), |
| 1573 | CS4231_SINGLE("Loopback Capture Volume", 0, CS4231_LOOPBACK, 2, 63, 1), |
| 1574 | /* SPARC specific uses of XCTL{0,1} general purpose outputs. */ |
| 1575 | CS4231_SINGLE("Line Out Switch", 0, CS4231_PIN_CTRL, 6, 1, 1), |
| 1576 | CS4231_SINGLE("Headphone Out Switch", 0, CS4231_PIN_CTRL, 7, 1, 1) |
| 1577 | }; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1578 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1579 | static int __init snd_cs4231_mixer(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1581 | struct snd_cs4231 *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1582 | int err, idx; |
| 1583 | |
| 1584 | snd_assert(chip != NULL && chip->pcm != NULL, return -EINVAL); |
| 1585 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1586 | strcpy(card->mixername, chip->pcm->name); |
| 1587 | |
| 1588 | for (idx = 0; idx < ARRAY_SIZE(snd_cs4231_controls); idx++) { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1589 | err = snd_ctl_add(card, |
| 1590 | snd_ctl_new1(&snd_cs4231_controls[idx], chip)); |
| 1591 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1592 | return err; |
| 1593 | } |
| 1594 | return 0; |
| 1595 | } |
| 1596 | |
| 1597 | static int dev; |
| 1598 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1599 | static int __init cs4231_attach_begin(struct snd_card **rcard) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1600 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1601 | struct snd_card *card; |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1602 | struct snd_cs4231 *chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1603 | |
| 1604 | *rcard = NULL; |
| 1605 | |
| 1606 | if (dev >= SNDRV_CARDS) |
| 1607 | return -ENODEV; |
| 1608 | |
| 1609 | if (!enable[dev]) { |
| 1610 | dev++; |
| 1611 | return -ENOENT; |
| 1612 | } |
| 1613 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1614 | card = snd_card_new(index[dev], id[dev], THIS_MODULE, |
| 1615 | sizeof(struct snd_cs4231)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | if (card == NULL) |
| 1617 | return -ENOMEM; |
| 1618 | |
| 1619 | strcpy(card->driver, "CS4231"); |
| 1620 | strcpy(card->shortname, "Sun CS4231"); |
| 1621 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1622 | chip = card->private_data; |
| 1623 | chip->card = card; |
| 1624 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1625 | *rcard = card; |
| 1626 | return 0; |
| 1627 | } |
| 1628 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1629 | static int __init cs4231_attach_finish(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1630 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1631 | struct snd_cs4231 *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1632 | int err; |
| 1633 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1634 | err = snd_cs4231_pcm(card); |
| 1635 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1636 | goto out_err; |
| 1637 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1638 | err = snd_cs4231_mixer(card); |
| 1639 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1640 | goto out_err; |
| 1641 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1642 | err = snd_cs4231_timer(card); |
| 1643 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1644 | goto out_err; |
| 1645 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1646 | err = snd_card_register(card); |
| 1647 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1648 | goto out_err; |
| 1649 | |
| 1650 | chip->next = cs4231_list; |
| 1651 | cs4231_list = chip; |
| 1652 | |
| 1653 | dev++; |
| 1654 | return 0; |
| 1655 | |
| 1656 | out_err: |
| 1657 | snd_card_free(card); |
| 1658 | return err; |
| 1659 | } |
| 1660 | |
| 1661 | #ifdef SBUS_SUPPORT |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1662 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1663 | static irqreturn_t snd_cs4231_sbus_interrupt(int irq, void *dev_id) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1664 | { |
| 1665 | unsigned long flags; |
| 1666 | unsigned char status; |
| 1667 | u32 csr; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1668 | struct snd_cs4231 *chip = dev_id; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1669 | |
| 1670 | /*This is IRQ is not raised by the cs4231*/ |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 1671 | if (!(__cs4231_readb(chip, CS4231U(chip, STATUS)) & CS4231_GLOBALIRQ)) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1672 | return IRQ_NONE; |
| 1673 | |
| 1674 | /* ACK the APC interrupt. */ |
| 1675 | csr = sbus_readl(chip->port + APCCSR); |
| 1676 | |
| 1677 | sbus_writel(csr, chip->port + APCCSR); |
| 1678 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1679 | if ((csr & APC_PDMA_READY) && |
| 1680 | (csr & APC_PLAY_INT) && |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1681 | (csr & APC_XINT_PNVA) && |
| 1682 | !(csr & APC_XINT_EMPT)) |
| 1683 | snd_cs4231_play_callback(chip); |
| 1684 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1685 | if ((csr & APC_CDMA_READY) && |
| 1686 | (csr & APC_CAPT_INT) && |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1687 | (csr & APC_XINT_CNVA) && |
| 1688 | !(csr & APC_XINT_EMPT)) |
| 1689 | snd_cs4231_capture_callback(chip); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1690 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1691 | status = snd_cs4231_in(chip, CS4231_IRQ_STATUS); |
| 1692 | |
| 1693 | if (status & CS4231_TIMER_IRQ) { |
| 1694 | if (chip->timer) |
| 1695 | snd_timer_interrupt(chip->timer, chip->timer->sticks); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1696 | } |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1697 | |
| 1698 | if ((status & CS4231_RECORD_IRQ) && (csr & APC_CDMA_READY)) |
| 1699 | snd_cs4231_overrange(chip); |
| 1700 | |
| 1701 | /* ACK the CS4231 interrupt. */ |
| 1702 | spin_lock_irqsave(&chip->lock, flags); |
| 1703 | snd_cs4231_outm(chip, CS4231_IRQ_STATUS, ~CS4231_ALL_IRQS | ~status, 0); |
| 1704 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1705 | |
Georg Chini | d35a1b9 | 2007-01-02 21:28:17 -0800 | [diff] [blame] | 1706 | return IRQ_HANDLED; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1707 | } |
| 1708 | |
| 1709 | /* |
| 1710 | * SBUS DMA routines |
| 1711 | */ |
| 1712 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1713 | static int sbus_dma_request(struct cs4231_dma_control *dma_cont, |
| 1714 | dma_addr_t bus_addr, size_t len) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1715 | { |
| 1716 | unsigned long flags; |
| 1717 | u32 test, csr; |
| 1718 | int err; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1719 | struct sbus_dma_info *base = &dma_cont->sbus_info; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1720 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1721 | if (len >= (1 << 24)) |
| 1722 | return -EINVAL; |
| 1723 | spin_lock_irqsave(&base->lock, flags); |
| 1724 | csr = sbus_readl(base->regs + APCCSR); |
| 1725 | err = -EINVAL; |
| 1726 | test = APC_CDMA_READY; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1727 | if (base->dir == APC_PLAY) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1728 | test = APC_PDMA_READY; |
| 1729 | if (!(csr & test)) |
| 1730 | goto out; |
| 1731 | err = -EBUSY; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1732 | test = APC_XINT_CNVA; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1733 | if (base->dir == APC_PLAY) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1734 | test = APC_XINT_PNVA; |
| 1735 | if (!(csr & test)) |
| 1736 | goto out; |
| 1737 | err = 0; |
| 1738 | sbus_writel(bus_addr, base->regs + base->dir + APCNVA); |
| 1739 | sbus_writel(len, base->regs + base->dir + APCNC); |
| 1740 | out: |
| 1741 | spin_unlock_irqrestore(&base->lock, flags); |
| 1742 | return err; |
| 1743 | } |
| 1744 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1745 | static void sbus_dma_prepare(struct cs4231_dma_control *dma_cont, int d) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1746 | { |
| 1747 | unsigned long flags; |
| 1748 | u32 csr, test; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1749 | struct sbus_dma_info *base = &dma_cont->sbus_info; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1750 | |
| 1751 | spin_lock_irqsave(&base->lock, flags); |
| 1752 | csr = sbus_readl(base->regs + APCCSR); |
| 1753 | test = APC_GENL_INT | APC_PLAY_INT | APC_XINT_ENA | |
| 1754 | APC_XINT_PLAY | APC_XINT_PEMP | APC_XINT_GENL | |
| 1755 | APC_XINT_PENA; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1756 | if (base->dir == APC_RECORD) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1757 | test = APC_GENL_INT | APC_CAPT_INT | APC_XINT_ENA | |
| 1758 | APC_XINT_CAPT | APC_XINT_CEMP | APC_XINT_GENL; |
| 1759 | csr |= test; |
| 1760 | sbus_writel(csr, base->regs + APCCSR); |
| 1761 | spin_unlock_irqrestore(&base->lock, flags); |
| 1762 | } |
| 1763 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1764 | static void sbus_dma_enable(struct cs4231_dma_control *dma_cont, int on) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1765 | { |
| 1766 | unsigned long flags; |
| 1767 | u32 csr, shift; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1768 | struct sbus_dma_info *base = &dma_cont->sbus_info; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1769 | |
| 1770 | spin_lock_irqsave(&base->lock, flags); |
| 1771 | if (!on) { |
Georg Chini | d35a1b9 | 2007-01-02 21:28:17 -0800 | [diff] [blame] | 1772 | sbus_writel(0, base->regs + base->dir + APCNC); |
| 1773 | sbus_writel(0, base->regs + base->dir + APCNVA); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1774 | if (base->dir == APC_PLAY) { |
Georg Chini | 3daadf3 | 2007-08-01 21:55:58 -0700 | [diff] [blame] | 1775 | sbus_writel(0, base->regs + base->dir + APCC); |
| 1776 | sbus_writel(0, base->regs + base->dir + APCVA); |
| 1777 | } |
Georg Chini | d35a1b9 | 2007-01-02 21:28:17 -0800 | [diff] [blame] | 1778 | |
Georg Chini | 3daadf3 | 2007-08-01 21:55:58 -0700 | [diff] [blame] | 1779 | udelay(1200); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1780 | } |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1781 | csr = sbus_readl(base->regs + APCCSR); |
| 1782 | shift = 0; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1783 | if (base->dir == APC_PLAY) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1784 | shift = 1; |
| 1785 | if (on) |
| 1786 | csr &= ~(APC_CPAUSE << shift); |
| 1787 | else |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1788 | csr |= (APC_CPAUSE << shift); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1789 | sbus_writel(csr, base->regs + APCCSR); |
| 1790 | if (on) |
| 1791 | csr |= (APC_CDMA_READY << shift); |
| 1792 | else |
| 1793 | csr &= ~(APC_CDMA_READY << shift); |
| 1794 | sbus_writel(csr, base->regs + APCCSR); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1795 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1796 | spin_unlock_irqrestore(&base->lock, flags); |
| 1797 | } |
| 1798 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1799 | static unsigned int sbus_dma_addr(struct cs4231_dma_control *dma_cont) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1800 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1801 | struct sbus_dma_info *base = &dma_cont->sbus_info; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1802 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1803 | return sbus_readl(base->regs + base->dir + APCVA); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1804 | } |
| 1805 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1806 | static void sbus_dma_preallocate(struct snd_cs4231 *chip, struct snd_pcm *pcm) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1807 | { |
| 1808 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_SBUS, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1809 | snd_dma_sbus_data(chip->dev_u.sdev), |
| 1810 | 64 * 1024, 128 * 1024); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1811 | } |
| 1812 | |
| 1813 | /* |
| 1814 | * Init and exit routines |
| 1815 | */ |
| 1816 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1817 | static int snd_cs4231_sbus_free(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | { |
| 1819 | if (chip->irq[0]) |
| 1820 | free_irq(chip->irq[0], chip); |
| 1821 | |
| 1822 | if (chip->port) |
| 1823 | sbus_iounmap(chip->port, chip->regs_size); |
| 1824 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1825 | return 0; |
| 1826 | } |
| 1827 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1828 | static int snd_cs4231_sbus_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1829 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1830 | struct snd_cs4231 *cp = device->device_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1831 | |
| 1832 | return snd_cs4231_sbus_free(cp); |
| 1833 | } |
| 1834 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1835 | static struct snd_device_ops snd_cs4231_sbus_dev_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1836 | .dev_free = snd_cs4231_sbus_dev_free, |
| 1837 | }; |
| 1838 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1839 | static int __init snd_cs4231_sbus_create(struct snd_card *card, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | struct sbus_dev *sdev, |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1841 | int dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1843 | struct snd_cs4231 *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1844 | int err; |
| 1845 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1846 | spin_lock_init(&chip->lock); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1847 | spin_lock_init(&chip->c_dma.sbus_info.lock); |
| 1848 | spin_lock_init(&chip->p_dma.sbus_info.lock); |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 1849 | mutex_init(&chip->mce_mutex); |
| 1850 | mutex_init(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1851 | chip->dev_u.sdev = sdev; |
| 1852 | chip->regs_size = sdev->reg_addrs[0].reg_size; |
| 1853 | memcpy(&chip->image, &snd_cs4231_original_image, |
| 1854 | sizeof(snd_cs4231_original_image)); |
| 1855 | |
| 1856 | chip->port = sbus_ioremap(&sdev->resource[0], 0, |
| 1857 | chip->regs_size, "cs4231"); |
| 1858 | if (!chip->port) { |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 1859 | snd_printdd("cs4231-%d: Unable to map chip registers.\n", dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1860 | return -EIO; |
| 1861 | } |
| 1862 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1863 | chip->c_dma.sbus_info.regs = chip->port; |
| 1864 | chip->p_dma.sbus_info.regs = chip->port; |
| 1865 | chip->c_dma.sbus_info.dir = APC_RECORD; |
| 1866 | chip->p_dma.sbus_info.dir = APC_PLAY; |
| 1867 | |
| 1868 | chip->p_dma.prepare = sbus_dma_prepare; |
| 1869 | chip->p_dma.enable = sbus_dma_enable; |
| 1870 | chip->p_dma.request = sbus_dma_request; |
| 1871 | chip->p_dma.address = sbus_dma_addr; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1872 | chip->p_dma.preallocate = sbus_dma_preallocate; |
| 1873 | |
| 1874 | chip->c_dma.prepare = sbus_dma_prepare; |
| 1875 | chip->c_dma.enable = sbus_dma_enable; |
| 1876 | chip->c_dma.request = sbus_dma_request; |
| 1877 | chip->c_dma.address = sbus_dma_addr; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1878 | chip->c_dma.preallocate = sbus_dma_preallocate; |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 1879 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1880 | if (request_irq(sdev->irqs[0], snd_cs4231_sbus_interrupt, |
Thomas Gleixner | 65ca68b | 2006-07-01 19:29:46 -0700 | [diff] [blame] | 1881 | IRQF_SHARED, "cs4231", chip)) { |
David S. Miller | c6387a4 | 2006-06-20 01:21:29 -0700 | [diff] [blame] | 1882 | snd_printdd("cs4231-%d: Unable to grab SBUS IRQ %d\n", |
| 1883 | dev, sdev->irqs[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1884 | snd_cs4231_sbus_free(chip); |
| 1885 | return -EBUSY; |
| 1886 | } |
| 1887 | chip->irq[0] = sdev->irqs[0]; |
| 1888 | |
| 1889 | if (snd_cs4231_probe(chip) < 0) { |
| 1890 | snd_cs4231_sbus_free(chip); |
| 1891 | return -ENODEV; |
| 1892 | } |
| 1893 | snd_cs4231_init(chip); |
| 1894 | |
| 1895 | if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, |
| 1896 | chip, &snd_cs4231_sbus_dev_ops)) < 0) { |
| 1897 | snd_cs4231_sbus_free(chip); |
| 1898 | return err; |
| 1899 | } |
| 1900 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1901 | return 0; |
| 1902 | } |
| 1903 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1904 | static int __init cs4231_sbus_attach(struct sbus_dev *sdev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | { |
| 1906 | struct resource *rp = &sdev->resource[0]; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1907 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | int err; |
| 1909 | |
| 1910 | err = cs4231_attach_begin(&card); |
| 1911 | if (err) |
| 1912 | return err; |
| 1913 | |
Andrew Morton | 5863aa6 | 2006-07-03 00:24:22 -0700 | [diff] [blame] | 1914 | sprintf(card->longname, "%s at 0x%02lx:0x%016Lx, irq %d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1915 | card->shortname, |
| 1916 | rp->flags & 0xffL, |
Greg Kroah-Hartman | aa0a2dd | 2006-06-12 14:50:27 -0700 | [diff] [blame] | 1917 | (unsigned long long)rp->start, |
David S. Miller | c6387a4 | 2006-06-20 01:21:29 -0700 | [diff] [blame] | 1918 | sdev->irqs[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1919 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1920 | err = snd_cs4231_sbus_create(card, sdev, dev); |
| 1921 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1922 | snd_card_free(card); |
| 1923 | return err; |
| 1924 | } |
| 1925 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1926 | return cs4231_attach_finish(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1927 | } |
| 1928 | #endif |
| 1929 | |
| 1930 | #ifdef EBUS_SUPPORT |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1931 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1932 | static void snd_cs4231_ebus_play_callback(struct ebus_dma_info *p, int event, |
| 1933 | void *cookie) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1934 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1935 | struct snd_cs4231 *chip = cookie; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1936 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1937 | snd_cs4231_play_callback(chip); |
| 1938 | } |
| 1939 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1940 | static void snd_cs4231_ebus_capture_callback(struct ebus_dma_info *p, |
| 1941 | int event, void *cookie) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1942 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1943 | struct snd_cs4231 *chip = cookie; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1944 | |
| 1945 | snd_cs4231_capture_callback(chip); |
| 1946 | } |
| 1947 | |
| 1948 | /* |
| 1949 | * EBUS DMA wrappers |
| 1950 | */ |
| 1951 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1952 | static int _ebus_dma_request(struct cs4231_dma_control *dma_cont, |
| 1953 | dma_addr_t bus_addr, size_t len) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1954 | { |
| 1955 | return ebus_dma_request(&dma_cont->ebus_info, bus_addr, len); |
| 1956 | } |
| 1957 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1958 | static void _ebus_dma_enable(struct cs4231_dma_control *dma_cont, int on) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1959 | { |
| 1960 | ebus_dma_enable(&dma_cont->ebus_info, on); |
| 1961 | } |
| 1962 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1963 | static void _ebus_dma_prepare(struct cs4231_dma_control *dma_cont, int dir) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1964 | { |
| 1965 | ebus_dma_prepare(&dma_cont->ebus_info, dir); |
| 1966 | } |
| 1967 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1968 | static unsigned int _ebus_dma_addr(struct cs4231_dma_control *dma_cont) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1969 | { |
| 1970 | return ebus_dma_addr(&dma_cont->ebus_info); |
| 1971 | } |
| 1972 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1973 | static void _ebus_dma_preallocate(struct snd_cs4231 *chip, struct snd_pcm *pcm) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1974 | { |
| 1975 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, |
| 1976 | snd_dma_pci_data(chip->dev_u.pdev), |
| 1977 | 64*1024, 128*1024); |
| 1978 | } |
| 1979 | |
| 1980 | /* |
| 1981 | * Init and exit routines |
| 1982 | */ |
| 1983 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1984 | static int snd_cs4231_ebus_free(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1985 | { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1986 | if (chip->c_dma.ebus_info.regs) { |
| 1987 | ebus_dma_unregister(&chip->c_dma.ebus_info); |
| 1988 | iounmap(chip->c_dma.ebus_info.regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1989 | } |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1990 | if (chip->p_dma.ebus_info.regs) { |
| 1991 | ebus_dma_unregister(&chip->p_dma.ebus_info); |
| 1992 | iounmap(chip->p_dma.ebus_info.regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1993 | } |
| 1994 | |
| 1995 | if (chip->port) |
| 1996 | iounmap(chip->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1997 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1998 | return 0; |
| 1999 | } |
| 2000 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 2001 | static int snd_cs4231_ebus_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2002 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 2003 | struct snd_cs4231 *cp = device->device_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2004 | |
| 2005 | return snd_cs4231_ebus_free(cp); |
| 2006 | } |
| 2007 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 2008 | static struct snd_device_ops snd_cs4231_ebus_dev_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2009 | .dev_free = snd_cs4231_ebus_dev_free, |
| 2010 | }; |
| 2011 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 2012 | static int __init snd_cs4231_ebus_create(struct snd_card *card, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2013 | struct linux_ebus_device *edev, |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 2014 | int dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2015 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 2016 | struct snd_cs4231 *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2017 | int err; |
| 2018 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2019 | spin_lock_init(&chip->lock); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2020 | spin_lock_init(&chip->c_dma.ebus_info.lock); |
| 2021 | spin_lock_init(&chip->p_dma.ebus_info.lock); |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 2022 | mutex_init(&chip->mce_mutex); |
| 2023 | mutex_init(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2024 | chip->flags |= CS4231_FLAG_EBUS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2025 | chip->dev_u.pdev = edev->bus->self; |
| 2026 | memcpy(&chip->image, &snd_cs4231_original_image, |
| 2027 | sizeof(snd_cs4231_original_image)); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2028 | strcpy(chip->c_dma.ebus_info.name, "cs4231(capture)"); |
| 2029 | chip->c_dma.ebus_info.flags = EBUS_DMA_FLAG_USE_EBDMA_HANDLER; |
| 2030 | chip->c_dma.ebus_info.callback = snd_cs4231_ebus_capture_callback; |
| 2031 | chip->c_dma.ebus_info.client_cookie = chip; |
| 2032 | chip->c_dma.ebus_info.irq = edev->irqs[0]; |
| 2033 | strcpy(chip->p_dma.ebus_info.name, "cs4231(play)"); |
| 2034 | chip->p_dma.ebus_info.flags = EBUS_DMA_FLAG_USE_EBDMA_HANDLER; |
| 2035 | chip->p_dma.ebus_info.callback = snd_cs4231_ebus_play_callback; |
| 2036 | chip->p_dma.ebus_info.client_cookie = chip; |
| 2037 | chip->p_dma.ebus_info.irq = edev->irqs[1]; |
| 2038 | |
| 2039 | chip->p_dma.prepare = _ebus_dma_prepare; |
| 2040 | chip->p_dma.enable = _ebus_dma_enable; |
| 2041 | chip->p_dma.request = _ebus_dma_request; |
| 2042 | chip->p_dma.address = _ebus_dma_addr; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2043 | chip->p_dma.preallocate = _ebus_dma_preallocate; |
| 2044 | |
| 2045 | chip->c_dma.prepare = _ebus_dma_prepare; |
| 2046 | chip->c_dma.enable = _ebus_dma_enable; |
| 2047 | chip->c_dma.request = _ebus_dma_request; |
| 2048 | chip->c_dma.address = _ebus_dma_addr; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2049 | chip->c_dma.preallocate = _ebus_dma_preallocate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2050 | |
| 2051 | chip->port = ioremap(edev->resource[0].start, 0x10); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2052 | chip->p_dma.ebus_info.regs = ioremap(edev->resource[1].start, 0x10); |
| 2053 | chip->c_dma.ebus_info.regs = ioremap(edev->resource[2].start, 0x10); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 2054 | if (!chip->port || !chip->p_dma.ebus_info.regs || |
| 2055 | !chip->c_dma.ebus_info.regs) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2056 | snd_cs4231_ebus_free(chip); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 2057 | snd_printdd("cs4231-%d: Unable to map chip registers.\n", dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2058 | return -EIO; |
| 2059 | } |
| 2060 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2061 | if (ebus_dma_register(&chip->c_dma.ebus_info)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2062 | snd_cs4231_ebus_free(chip); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 2063 | snd_printdd("cs4231-%d: Unable to register EBUS capture DMA\n", |
| 2064 | dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2065 | return -EBUSY; |
| 2066 | } |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2067 | if (ebus_dma_irq_enable(&chip->c_dma.ebus_info, 1)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2068 | snd_cs4231_ebus_free(chip); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 2069 | snd_printdd("cs4231-%d: Unable to enable EBUS capture IRQ\n", |
| 2070 | dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2071 | return -EBUSY; |
| 2072 | } |
| 2073 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2074 | if (ebus_dma_register(&chip->p_dma.ebus_info)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2075 | snd_cs4231_ebus_free(chip); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 2076 | snd_printdd("cs4231-%d: Unable to register EBUS play DMA\n", |
| 2077 | dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2078 | return -EBUSY; |
| 2079 | } |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2080 | if (ebus_dma_irq_enable(&chip->p_dma.ebus_info, 1)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2081 | snd_cs4231_ebus_free(chip); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 2082 | snd_printdd("cs4231-%d: Unable to enable EBUS play IRQ\n", dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2083 | return -EBUSY; |
| 2084 | } |
| 2085 | |
| 2086 | if (snd_cs4231_probe(chip) < 0) { |
| 2087 | snd_cs4231_ebus_free(chip); |
| 2088 | return -ENODEV; |
| 2089 | } |
| 2090 | snd_cs4231_init(chip); |
| 2091 | |
| 2092 | if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, |
| 2093 | chip, &snd_cs4231_ebus_dev_ops)) < 0) { |
| 2094 | snd_cs4231_ebus_free(chip); |
| 2095 | return err; |
| 2096 | } |
| 2097 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2098 | return 0; |
| 2099 | } |
| 2100 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 2101 | static int __init cs4231_ebus_attach(struct linux_ebus_device *edev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2102 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 2103 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2104 | int err; |
| 2105 | |
| 2106 | err = cs4231_attach_begin(&card); |
| 2107 | if (err) |
| 2108 | return err; |
| 2109 | |
David S. Miller | c6387a4 | 2006-06-20 01:21:29 -0700 | [diff] [blame] | 2110 | sprintf(card->longname, "%s at 0x%lx, irq %d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2111 | card->shortname, |
| 2112 | edev->resource[0].start, |
David S. Miller | c6387a4 | 2006-06-20 01:21:29 -0700 | [diff] [blame] | 2113 | edev->irqs[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2114 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 2115 | err = snd_cs4231_ebus_create(card, edev, dev); |
| 2116 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2117 | snd_card_free(card); |
| 2118 | return err; |
| 2119 | } |
| 2120 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 2121 | return cs4231_attach_finish(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2122 | } |
| 2123 | #endif |
| 2124 | |
| 2125 | static int __init cs4231_init(void) |
| 2126 | { |
| 2127 | #ifdef SBUS_SUPPORT |
| 2128 | struct sbus_bus *sbus; |
| 2129 | struct sbus_dev *sdev; |
| 2130 | #endif |
| 2131 | #ifdef EBUS_SUPPORT |
| 2132 | struct linux_ebus *ebus; |
| 2133 | struct linux_ebus_device *edev; |
| 2134 | #endif |
| 2135 | int found; |
| 2136 | |
| 2137 | found = 0; |
| 2138 | |
| 2139 | #ifdef SBUS_SUPPORT |
| 2140 | for_all_sbusdev(sdev, sbus) { |
| 2141 | if (!strcmp(sdev->prom_name, "SUNW,CS4231")) { |
| 2142 | if (cs4231_sbus_attach(sdev) == 0) |
| 2143 | found++; |
| 2144 | } |
| 2145 | } |
| 2146 | #endif |
| 2147 | #ifdef EBUS_SUPPORT |
| 2148 | for_each_ebus(ebus) { |
| 2149 | for_each_ebusdev(edev, ebus) { |
| 2150 | int match = 0; |
| 2151 | |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 2152 | if (!strcmp(edev->prom_node->name, "SUNW,CS4231")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2153 | match = 1; |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 2154 | } else if (!strcmp(edev->prom_node->name, "audio")) { |
Stephen Rothwell | 3198514 | 2007-03-29 00:50:57 -0700 | [diff] [blame] | 2155 | const char *compat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2156 | |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 2157 | compat = of_get_property(edev->prom_node, |
| 2158 | "compatible", NULL); |
| 2159 | if (compat && !strcmp(compat, "SUNW,CS4231")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2160 | match = 1; |
| 2161 | } |
| 2162 | |
| 2163 | if (match && |
| 2164 | cs4231_ebus_attach(edev) == 0) |
| 2165 | found++; |
| 2166 | } |
| 2167 | } |
| 2168 | #endif |
| 2169 | |
| 2170 | |
| 2171 | return (found > 0) ? 0 : -EIO; |
| 2172 | } |
| 2173 | |
| 2174 | static void __exit cs4231_exit(void) |
| 2175 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 2176 | struct snd_cs4231 *p = cs4231_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2177 | |
| 2178 | while (p != NULL) { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 2179 | struct snd_cs4231 *next = p->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | |
| 2181 | snd_card_free(p->card); |
| 2182 | |
| 2183 | p = next; |
| 2184 | } |
| 2185 | |
| 2186 | cs4231_list = NULL; |
| 2187 | } |
| 2188 | |
| 2189 | module_init(cs4231_init); |
| 2190 | module_exit(cs4231_exit); |