Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1 | /* |
| 2 | * Driver for CS4231 sound chips found on Sparcs. |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 3 | * Copyright (C) 2002, 2008 David S. Miller <davem@davemloft.net> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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> |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 20 | #include <linux/of.h> |
| 21 | #include <linux/of_device.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 22 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | #endif |
| 34 | |
| 35 | #if defined(CONFIG_PCI) && defined(CONFIG_SPARC64) |
| 36 | #define EBUS_SUPPORT |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 37 | #include <linux/pci.h> |
| 38 | #include <asm/ebus.h> |
David S. Miller | aae7fb8 | 2008-08-29 23:10:21 -0700 | [diff] [blame^] | 39 | #include <asm/ebus_dma.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 120 | struct of_device *op; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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 | { |
Krzysztof Helt | 9823adf | 2007-10-16 14:54:58 +0200 | [diff] [blame] | 403 | unsigned long flags, timeout; |
| 404 | int reg; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 405 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 406 | snd_cs4231_busy_wait(chip); |
Krzysztof Helt | 9823adf | 2007-10-16 14:54:58 +0200 | [diff] [blame] | 407 | spin_lock_irqsave(&chip->lock, flags); |
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 | 9823adf | 2007-10-16 14:54:58 +0200 | [diff] [blame] | 414 | reg = __cs4231_readb(chip, CS4231U(chip, REGSEL)); |
| 415 | __cs4231_writeb(chip, chip->mce_bit | (reg & 0x1f), |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 416 | CS4231U(chip, REGSEL)); |
Krzysztof Helt | 9823adf | 2007-10-16 14:54:58 +0200 | [diff] [blame] | 417 | if (reg == 0x80) |
| 418 | snd_printdd("mce_down [%p]: serious init problem " |
| 419 | "- codec still busy\n", chip->port); |
| 420 | if ((reg & CS4231_MCE) == 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 421 | spin_unlock_irqrestore(&chip->lock, flags); |
| 422 | return; |
| 423 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 424 | |
Krzysztof Helt | 56f9158 | 2007-09-11 00:55:46 +0200 | [diff] [blame] | 425 | /* |
Krzysztof Helt | 9823adf | 2007-10-16 14:54:58 +0200 | [diff] [blame] | 426 | * Wait for auto-calibration (AC) process to finish, i.e. ACI to go low. |
Krzysztof Helt | 56f9158 | 2007-09-11 00:55:46 +0200 | [diff] [blame] | 427 | */ |
Krzysztof Helt | 9823adf | 2007-10-16 14:54:58 +0200 | [diff] [blame] | 428 | timeout = jiffies + msecs_to_jiffies(250); |
| 429 | do { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 430 | spin_unlock_irqrestore(&chip->lock, flags); |
Takashi Iwai | b875d65 | 2007-09-11 10:12:14 +0200 | [diff] [blame] | 431 | msleep(1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 432 | spin_lock_irqsave(&chip->lock, flags); |
Krzysztof Helt | 9823adf | 2007-10-16 14:54:58 +0200 | [diff] [blame] | 433 | reg = snd_cs4231_in(chip, CS4231_TEST_INIT); |
| 434 | reg &= CS4231_CALIB_IN_PROGRESS; |
| 435 | } while (reg && time_before(jiffies, timeout)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 436 | spin_unlock_irqrestore(&chip->lock, flags); |
Krzysztof Helt | 9823adf | 2007-10-16 14:54:58 +0200 | [diff] [blame] | 437 | |
| 438 | if (reg) |
| 439 | snd_printk(KERN_ERR |
| 440 | "mce_down - auto calibration time out (2)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 441 | } |
| 442 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 443 | static void snd_cs4231_advance_dma(struct cs4231_dma_control *dma_cont, |
| 444 | struct snd_pcm_substream *substream, |
| 445 | unsigned int *periods_sent) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 446 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 447 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 448 | |
| 449 | while (1) { |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 450 | unsigned int period_size = snd_pcm_lib_period_bytes(substream); |
| 451 | unsigned int offset = period_size * (*periods_sent); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 452 | |
Eric Sesterhenn | 817dd6e | 2006-03-24 18:49:12 +0100 | [diff] [blame] | 453 | BUG_ON(period_size >= (1 << 24)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 454 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 455 | if (dma_cont->request(dma_cont, |
| 456 | runtime->dma_addr + offset, period_size)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 457 | return; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 458 | (*periods_sent) = ((*periods_sent) + 1) % runtime->periods; |
| 459 | } |
| 460 | } |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 461 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 462 | static void cs4231_dma_trigger(struct snd_pcm_substream *substream, |
| 463 | unsigned int what, int on) |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 464 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 465 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
| 466 | struct cs4231_dma_control *dma_cont; |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 467 | |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 468 | if (what & CS4231_PLAYBACK_ENABLE) { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 469 | dma_cont = &chip->p_dma; |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 470 | if (on) { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 471 | dma_cont->prepare(dma_cont, 0); |
| 472 | dma_cont->enable(dma_cont, 1); |
| 473 | snd_cs4231_advance_dma(dma_cont, |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 474 | chip->playback_substream, |
| 475 | &chip->p_periods_sent); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 476 | } else { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 477 | dma_cont->enable(dma_cont, 0); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 478 | } |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 479 | } |
| 480 | if (what & CS4231_RECORD_ENABLE) { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 481 | dma_cont = &chip->c_dma; |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 482 | if (on) { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 483 | dma_cont->prepare(dma_cont, 1); |
| 484 | dma_cont->enable(dma_cont, 1); |
| 485 | snd_cs4231_advance_dma(dma_cont, |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 486 | chip->capture_substream, |
| 487 | &chip->c_periods_sent); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 488 | } else { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 489 | dma_cont->enable(dma_cont, 0); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 490 | } |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 491 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 492 | } |
| 493 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 494 | static int snd_cs4231_trigger(struct snd_pcm_substream *substream, int cmd) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 495 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 496 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 497 | int result = 0; |
| 498 | |
| 499 | switch (cmd) { |
| 500 | case SNDRV_PCM_TRIGGER_START: |
| 501 | case SNDRV_PCM_TRIGGER_STOP: |
| 502 | { |
| 503 | unsigned int what = 0; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 504 | struct snd_pcm_substream *s; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 505 | unsigned long flags; |
| 506 | |
Takashi Iwai | ef991b9 | 2007-02-22 12:52:53 +0100 | [diff] [blame] | 507 | snd_pcm_group_for_each_entry(s, substream) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 508 | if (s == chip->playback_substream) { |
| 509 | what |= CS4231_PLAYBACK_ENABLE; |
| 510 | snd_pcm_trigger_done(s, substream); |
| 511 | } else if (s == chip->capture_substream) { |
| 512 | what |= CS4231_RECORD_ENABLE; |
| 513 | snd_pcm_trigger_done(s, substream); |
| 514 | } |
| 515 | } |
| 516 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 517 | spin_lock_irqsave(&chip->lock, flags); |
| 518 | if (cmd == SNDRV_PCM_TRIGGER_START) { |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 519 | cs4231_dma_trigger(substream, what, 1); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 520 | chip->image[CS4231_IFACE_CTRL] |= what; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 521 | } else { |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 522 | cs4231_dma_trigger(substream, what, 0); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 523 | chip->image[CS4231_IFACE_CTRL] &= ~what; |
| 524 | } |
| 525 | snd_cs4231_out(chip, CS4231_IFACE_CTRL, |
| 526 | chip->image[CS4231_IFACE_CTRL]); |
| 527 | spin_unlock_irqrestore(&chip->lock, flags); |
| 528 | break; |
| 529 | } |
| 530 | default: |
| 531 | result = -EINVAL; |
| 532 | break; |
| 533 | } |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 534 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 535 | return result; |
| 536 | } |
| 537 | |
| 538 | /* |
| 539 | * CODEC I/O |
| 540 | */ |
| 541 | |
| 542 | static unsigned char snd_cs4231_get_rate(unsigned int rate) |
| 543 | { |
| 544 | int i; |
| 545 | |
| 546 | for (i = 0; i < 14; i++) |
| 547 | if (rate == rates[i]) |
| 548 | return freq_bits[i]; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 549 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 550 | return freq_bits[13]; |
| 551 | } |
| 552 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 553 | static unsigned char snd_cs4231_get_format(struct snd_cs4231 *chip, int format, |
| 554 | int channels) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 555 | { |
| 556 | unsigned char rformat; |
| 557 | |
| 558 | rformat = CS4231_LINEAR_8; |
| 559 | switch (format) { |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 560 | case SNDRV_PCM_FORMAT_MU_LAW: |
| 561 | rformat = CS4231_ULAW_8; |
| 562 | break; |
| 563 | case SNDRV_PCM_FORMAT_A_LAW: |
| 564 | rformat = CS4231_ALAW_8; |
| 565 | break; |
| 566 | case SNDRV_PCM_FORMAT_S16_LE: |
| 567 | rformat = CS4231_LINEAR_16; |
| 568 | break; |
| 569 | case SNDRV_PCM_FORMAT_S16_BE: |
| 570 | rformat = CS4231_LINEAR_16_BIG; |
| 571 | break; |
| 572 | case SNDRV_PCM_FORMAT_IMA_ADPCM: |
| 573 | rformat = CS4231_ADPCM_16; |
| 574 | break; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 575 | } |
| 576 | if (channels > 1) |
| 577 | rformat |= CS4231_STEREO; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 578 | return rformat; |
| 579 | } |
| 580 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 581 | static void snd_cs4231_calibrate_mute(struct snd_cs4231 *chip, int mute) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 582 | { |
| 583 | unsigned long flags; |
| 584 | |
| 585 | mute = mute ? 1 : 0; |
| 586 | spin_lock_irqsave(&chip->lock, flags); |
| 587 | if (chip->calibrate_mute == mute) { |
| 588 | spin_unlock_irqrestore(&chip->lock, flags); |
| 589 | return; |
| 590 | } |
| 591 | if (!mute) { |
| 592 | snd_cs4231_dout(chip, CS4231_LEFT_INPUT, |
| 593 | chip->image[CS4231_LEFT_INPUT]); |
| 594 | snd_cs4231_dout(chip, CS4231_RIGHT_INPUT, |
| 595 | chip->image[CS4231_RIGHT_INPUT]); |
| 596 | snd_cs4231_dout(chip, CS4231_LOOPBACK, |
| 597 | chip->image[CS4231_LOOPBACK]); |
| 598 | } |
| 599 | snd_cs4231_dout(chip, CS4231_AUX1_LEFT_INPUT, |
| 600 | mute ? 0x80 : chip->image[CS4231_AUX1_LEFT_INPUT]); |
| 601 | snd_cs4231_dout(chip, CS4231_AUX1_RIGHT_INPUT, |
| 602 | mute ? 0x80 : chip->image[CS4231_AUX1_RIGHT_INPUT]); |
| 603 | snd_cs4231_dout(chip, CS4231_AUX2_LEFT_INPUT, |
| 604 | mute ? 0x80 : chip->image[CS4231_AUX2_LEFT_INPUT]); |
| 605 | snd_cs4231_dout(chip, CS4231_AUX2_RIGHT_INPUT, |
| 606 | mute ? 0x80 : chip->image[CS4231_AUX2_RIGHT_INPUT]); |
| 607 | snd_cs4231_dout(chip, CS4231_LEFT_OUTPUT, |
| 608 | mute ? 0x80 : chip->image[CS4231_LEFT_OUTPUT]); |
| 609 | snd_cs4231_dout(chip, CS4231_RIGHT_OUTPUT, |
| 610 | mute ? 0x80 : chip->image[CS4231_RIGHT_OUTPUT]); |
| 611 | snd_cs4231_dout(chip, CS4231_LEFT_LINE_IN, |
| 612 | mute ? 0x80 : chip->image[CS4231_LEFT_LINE_IN]); |
| 613 | snd_cs4231_dout(chip, CS4231_RIGHT_LINE_IN, |
| 614 | mute ? 0x80 : chip->image[CS4231_RIGHT_LINE_IN]); |
| 615 | snd_cs4231_dout(chip, CS4231_MONO_CTRL, |
| 616 | mute ? 0xc0 : chip->image[CS4231_MONO_CTRL]); |
| 617 | chip->calibrate_mute = mute; |
| 618 | spin_unlock_irqrestore(&chip->lock, flags); |
| 619 | } |
| 620 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 621 | static void snd_cs4231_playback_format(struct snd_cs4231 *chip, |
| 622 | struct snd_pcm_hw_params *params, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 623 | unsigned char pdfr) |
| 624 | { |
| 625 | unsigned long flags; |
| 626 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 627 | mutex_lock(&chip->mce_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 628 | snd_cs4231_calibrate_mute(chip, 1); |
| 629 | |
| 630 | snd_cs4231_mce_up(chip); |
| 631 | |
| 632 | spin_lock_irqsave(&chip->lock, flags); |
| 633 | snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT, |
| 634 | (chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE) ? |
| 635 | (pdfr & 0xf0) | (chip->image[CS4231_REC_FORMAT] & 0x0f) : |
| 636 | pdfr); |
| 637 | spin_unlock_irqrestore(&chip->lock, flags); |
| 638 | |
| 639 | snd_cs4231_mce_down(chip); |
| 640 | |
| 641 | snd_cs4231_calibrate_mute(chip, 0); |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 642 | mutex_unlock(&chip->mce_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 643 | } |
| 644 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 645 | static void snd_cs4231_capture_format(struct snd_cs4231 *chip, |
| 646 | struct snd_pcm_hw_params *params, |
| 647 | unsigned char cdfr) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 648 | { |
| 649 | unsigned long flags; |
| 650 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 651 | mutex_lock(&chip->mce_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 652 | snd_cs4231_calibrate_mute(chip, 1); |
| 653 | |
| 654 | snd_cs4231_mce_up(chip); |
| 655 | |
| 656 | spin_lock_irqsave(&chip->lock, flags); |
| 657 | if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE)) { |
| 658 | snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT, |
| 659 | ((chip->image[CS4231_PLAYBK_FORMAT]) & 0xf0) | |
| 660 | (cdfr & 0x0f)); |
| 661 | spin_unlock_irqrestore(&chip->lock, flags); |
| 662 | snd_cs4231_mce_down(chip); |
| 663 | snd_cs4231_mce_up(chip); |
| 664 | spin_lock_irqsave(&chip->lock, flags); |
| 665 | } |
| 666 | snd_cs4231_out(chip, CS4231_REC_FORMAT, cdfr); |
| 667 | spin_unlock_irqrestore(&chip->lock, flags); |
| 668 | |
| 669 | snd_cs4231_mce_down(chip); |
| 670 | |
| 671 | snd_cs4231_calibrate_mute(chip, 0); |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 672 | mutex_unlock(&chip->mce_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 673 | } |
| 674 | |
| 675 | /* |
| 676 | * Timer interface |
| 677 | */ |
| 678 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 679 | static unsigned long snd_cs4231_timer_resolution(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 680 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 681 | struct snd_cs4231 *chip = snd_timer_chip(timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 682 | |
| 683 | return chip->image[CS4231_PLAYBK_FORMAT] & 1 ? 9969 : 9920; |
| 684 | } |
| 685 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 686 | static int snd_cs4231_timer_start(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 687 | { |
| 688 | unsigned long flags; |
| 689 | unsigned int ticks; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 690 | struct snd_cs4231 *chip = snd_timer_chip(timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 691 | |
| 692 | spin_lock_irqsave(&chip->lock, flags); |
| 693 | ticks = timer->sticks; |
| 694 | if ((chip->image[CS4231_ALT_FEATURE_1] & CS4231_TIMER_ENABLE) == 0 || |
| 695 | (unsigned char)(ticks >> 8) != chip->image[CS4231_TIMER_HIGH] || |
| 696 | (unsigned char)ticks != chip->image[CS4231_TIMER_LOW]) { |
| 697 | snd_cs4231_out(chip, CS4231_TIMER_HIGH, |
| 698 | chip->image[CS4231_TIMER_HIGH] = |
| 699 | (unsigned char) (ticks >> 8)); |
| 700 | snd_cs4231_out(chip, CS4231_TIMER_LOW, |
| 701 | chip->image[CS4231_TIMER_LOW] = |
| 702 | (unsigned char) ticks); |
| 703 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 704 | chip->image[CS4231_ALT_FEATURE_1] | |
| 705 | CS4231_TIMER_ENABLE); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 706 | } |
| 707 | spin_unlock_irqrestore(&chip->lock, flags); |
| 708 | |
| 709 | return 0; |
| 710 | } |
| 711 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 712 | static int snd_cs4231_timer_stop(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 713 | { |
| 714 | unsigned long flags; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 715 | struct snd_cs4231 *chip = snd_timer_chip(timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 716 | |
| 717 | spin_lock_irqsave(&chip->lock, flags); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 718 | chip->image[CS4231_ALT_FEATURE_1] &= ~CS4231_TIMER_ENABLE; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 719 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 720 | chip->image[CS4231_ALT_FEATURE_1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 721 | spin_unlock_irqrestore(&chip->lock, flags); |
| 722 | |
| 723 | return 0; |
| 724 | } |
| 725 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 726 | static void __init snd_cs4231_init(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 727 | { |
| 728 | unsigned long flags; |
| 729 | |
| 730 | snd_cs4231_mce_down(chip); |
| 731 | |
| 732 | #ifdef SNDRV_DEBUG_MCE |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 733 | snd_printdd("init: (1)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 734 | #endif |
| 735 | snd_cs4231_mce_up(chip); |
| 736 | spin_lock_irqsave(&chip->lock, flags); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 737 | chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE | |
| 738 | CS4231_PLAYBACK_PIO | |
| 739 | CS4231_RECORD_ENABLE | |
| 740 | CS4231_RECORD_PIO | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 741 | CS4231_CALIB_MODE); |
| 742 | chip->image[CS4231_IFACE_CTRL] |= CS4231_AUTOCALIB; |
| 743 | snd_cs4231_out(chip, CS4231_IFACE_CTRL, chip->image[CS4231_IFACE_CTRL]); |
| 744 | spin_unlock_irqrestore(&chip->lock, flags); |
| 745 | snd_cs4231_mce_down(chip); |
| 746 | |
| 747 | #ifdef SNDRV_DEBUG_MCE |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 748 | snd_printdd("init: (2)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 749 | #endif |
| 750 | |
| 751 | snd_cs4231_mce_up(chip); |
| 752 | spin_lock_irqsave(&chip->lock, flags); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 753 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_1, |
| 754 | chip->image[CS4231_ALT_FEATURE_1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 755 | spin_unlock_irqrestore(&chip->lock, flags); |
| 756 | snd_cs4231_mce_down(chip); |
| 757 | |
| 758 | #ifdef SNDRV_DEBUG_MCE |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 759 | snd_printdd("init: (3) - afei = 0x%x\n", |
| 760 | chip->image[CS4231_ALT_FEATURE_1]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 761 | #endif |
| 762 | |
| 763 | spin_lock_irqsave(&chip->lock, flags); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 764 | snd_cs4231_out(chip, CS4231_ALT_FEATURE_2, |
| 765 | chip->image[CS4231_ALT_FEATURE_2]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 766 | spin_unlock_irqrestore(&chip->lock, flags); |
| 767 | |
| 768 | snd_cs4231_mce_up(chip); |
| 769 | spin_lock_irqsave(&chip->lock, flags); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 770 | snd_cs4231_out(chip, CS4231_PLAYBK_FORMAT, |
| 771 | chip->image[CS4231_PLAYBK_FORMAT]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 772 | spin_unlock_irqrestore(&chip->lock, flags); |
| 773 | snd_cs4231_mce_down(chip); |
| 774 | |
| 775 | #ifdef SNDRV_DEBUG_MCE |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 776 | snd_printdd("init: (4)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 777 | #endif |
| 778 | |
| 779 | snd_cs4231_mce_up(chip); |
| 780 | spin_lock_irqsave(&chip->lock, flags); |
| 781 | snd_cs4231_out(chip, CS4231_REC_FORMAT, chip->image[CS4231_REC_FORMAT]); |
| 782 | spin_unlock_irqrestore(&chip->lock, flags); |
| 783 | snd_cs4231_mce_down(chip); |
| 784 | |
| 785 | #ifdef SNDRV_DEBUG_MCE |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 786 | snd_printdd("init: (5)\n"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 787 | #endif |
| 788 | } |
| 789 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 790 | static int snd_cs4231_open(struct snd_cs4231 *chip, unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 791 | { |
| 792 | unsigned long flags; |
| 793 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 794 | mutex_lock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 795 | if ((chip->mode & mode)) { |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 796 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 797 | return -EAGAIN; |
| 798 | } |
| 799 | if (chip->mode & CS4231_MODE_OPEN) { |
| 800 | chip->mode |= mode; |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 801 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 802 | return 0; |
| 803 | } |
| 804 | /* ok. now enable and ack CODEC IRQ */ |
| 805 | spin_lock_irqsave(&chip->lock, flags); |
| 806 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, CS4231_PLAYBACK_IRQ | |
| 807 | CS4231_RECORD_IRQ | |
| 808 | CS4231_TIMER_IRQ); |
| 809 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0); |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 810 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */ |
| 811 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 812 | |
| 813 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, CS4231_PLAYBACK_IRQ | |
| 814 | CS4231_RECORD_IRQ | |
| 815 | CS4231_TIMER_IRQ); |
| 816 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 817 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 818 | spin_unlock_irqrestore(&chip->lock, flags); |
| 819 | |
| 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 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 825 | static void snd_cs4231_close(struct snd_cs4231 *chip, unsigned int mode) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 826 | { |
| 827 | unsigned long flags; |
| 828 | |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 829 | mutex_lock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 830 | chip->mode &= ~mode; |
| 831 | if (chip->mode & CS4231_MODE_OPEN) { |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 832 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 833 | return; |
| 834 | } |
| 835 | snd_cs4231_calibrate_mute(chip, 1); |
| 836 | |
| 837 | /* disable IRQ */ |
| 838 | spin_lock_irqsave(&chip->lock, flags); |
| 839 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0); |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 840 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */ |
| 841 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 842 | |
| 843 | /* now disable record & playback */ |
| 844 | |
| 845 | if (chip->image[CS4231_IFACE_CTRL] & |
| 846 | (CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO | |
| 847 | CS4231_RECORD_ENABLE | CS4231_RECORD_PIO)) { |
| 848 | spin_unlock_irqrestore(&chip->lock, flags); |
| 849 | snd_cs4231_mce_up(chip); |
| 850 | spin_lock_irqsave(&chip->lock, flags); |
| 851 | chip->image[CS4231_IFACE_CTRL] &= |
| 852 | ~(CS4231_PLAYBACK_ENABLE | CS4231_PLAYBACK_PIO | |
| 853 | CS4231_RECORD_ENABLE | CS4231_RECORD_PIO); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 854 | snd_cs4231_out(chip, CS4231_IFACE_CTRL, |
| 855 | chip->image[CS4231_IFACE_CTRL]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 856 | spin_unlock_irqrestore(&chip->lock, flags); |
| 857 | snd_cs4231_mce_down(chip); |
| 858 | spin_lock_irqsave(&chip->lock, flags); |
| 859 | } |
| 860 | |
| 861 | /* clear IRQ again */ |
| 862 | snd_cs4231_out(chip, CS4231_IRQ_STATUS, 0); |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 863 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */ |
| 864 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); /* clear IRQ */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 865 | spin_unlock_irqrestore(&chip->lock, flags); |
| 866 | |
| 867 | snd_cs4231_calibrate_mute(chip, 0); |
| 868 | |
| 869 | chip->mode = 0; |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 870 | mutex_unlock(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 871 | } |
| 872 | |
| 873 | /* |
| 874 | * timer open/close |
| 875 | */ |
| 876 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 877 | static int snd_cs4231_timer_open(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 878 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 879 | struct snd_cs4231 *chip = snd_timer_chip(timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 880 | snd_cs4231_open(chip, CS4231_MODE_TIMER); |
| 881 | return 0; |
| 882 | } |
| 883 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 884 | static int snd_cs4231_timer_close(struct snd_timer *timer) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 885 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 886 | struct snd_cs4231 *chip = snd_timer_chip(timer); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 887 | snd_cs4231_close(chip, CS4231_MODE_TIMER); |
| 888 | return 0; |
| 889 | } |
| 890 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 891 | static struct snd_timer_hardware snd_cs4231_timer_table = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 892 | .flags = SNDRV_TIMER_HW_AUTO, |
| 893 | .resolution = 9945, |
| 894 | .ticks = 65535, |
| 895 | .open = snd_cs4231_timer_open, |
| 896 | .close = snd_cs4231_timer_close, |
| 897 | .c_resolution = snd_cs4231_timer_resolution, |
| 898 | .start = snd_cs4231_timer_start, |
| 899 | .stop = snd_cs4231_timer_stop, |
| 900 | }; |
| 901 | |
| 902 | /* |
| 903 | * ok.. exported functions.. |
| 904 | */ |
| 905 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 906 | static int snd_cs4231_playback_hw_params(struct snd_pcm_substream *substream, |
| 907 | struct snd_pcm_hw_params *hw_params) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 908 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 909 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 910 | unsigned char new_pdfr; |
| 911 | int err; |
| 912 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 913 | err = snd_pcm_lib_malloc_pages(substream, |
| 914 | params_buffer_bytes(hw_params)); |
| 915 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 916 | return err; |
| 917 | new_pdfr = snd_cs4231_get_format(chip, params_format(hw_params), |
| 918 | params_channels(hw_params)) | |
| 919 | snd_cs4231_get_rate(params_rate(hw_params)); |
| 920 | snd_cs4231_playback_format(chip, hw_params, new_pdfr); |
| 921 | |
| 922 | return 0; |
| 923 | } |
| 924 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 925 | static int snd_cs4231_playback_prepare(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 926 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 927 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
| 928 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 929 | unsigned long flags; |
| 930 | |
| 931 | spin_lock_irqsave(&chip->lock, flags); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 932 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 933 | chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_PLAYBACK_ENABLE | |
| 934 | CS4231_PLAYBACK_PIO); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 935 | |
Eric Sesterhenn | 817dd6e | 2006-03-24 18:49:12 +0100 | [diff] [blame] | 936 | BUG_ON(runtime->period_size > 0xffff + 1); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 937 | |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 938 | chip->p_periods_sent = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 939 | spin_unlock_irqrestore(&chip->lock, flags); |
| 940 | |
| 941 | return 0; |
| 942 | } |
| 943 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 944 | static int snd_cs4231_capture_hw_params(struct snd_pcm_substream *substream, |
| 945 | struct snd_pcm_hw_params *hw_params) |
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); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 948 | unsigned char new_cdfr; |
| 949 | int err; |
| 950 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 951 | err = snd_pcm_lib_malloc_pages(substream, |
| 952 | params_buffer_bytes(hw_params)); |
| 953 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 954 | return err; |
| 955 | new_cdfr = snd_cs4231_get_format(chip, params_format(hw_params), |
| 956 | params_channels(hw_params)) | |
| 957 | snd_cs4231_get_rate(params_rate(hw_params)); |
| 958 | snd_cs4231_capture_format(chip, hw_params, new_cdfr); |
| 959 | |
| 960 | return 0; |
| 961 | } |
| 962 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 963 | static int snd_cs4231_capture_prepare(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 964 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 965 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 966 | unsigned long flags; |
| 967 | |
| 968 | spin_lock_irqsave(&chip->lock, flags); |
| 969 | chip->image[CS4231_IFACE_CTRL] &= ~(CS4231_RECORD_ENABLE | |
| 970 | CS4231_RECORD_PIO); |
| 971 | |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 972 | |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 973 | chip->c_periods_sent = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 974 | spin_unlock_irqrestore(&chip->lock, flags); |
| 975 | |
| 976 | return 0; |
| 977 | } |
| 978 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 979 | static void snd_cs4231_overrange(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 980 | { |
| 981 | unsigned long flags; |
| 982 | unsigned char res; |
| 983 | |
| 984 | spin_lock_irqsave(&chip->lock, flags); |
| 985 | res = snd_cs4231_in(chip, CS4231_TEST_INIT); |
| 986 | spin_unlock_irqrestore(&chip->lock, flags); |
| 987 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 988 | /* detect overrange only above 0dB; may be user selectable? */ |
| 989 | if (res & (0x08 | 0x02)) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 990 | chip->capture_substream->runtime->overrange++; |
| 991 | } |
| 992 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 993 | static void snd_cs4231_play_callback(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 994 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 995 | if (chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE) { |
| 996 | snd_pcm_period_elapsed(chip->playback_substream); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 997 | snd_cs4231_advance_dma(&chip->p_dma, chip->playback_substream, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 998 | &chip->p_periods_sent); |
| 999 | } |
| 1000 | } |
| 1001 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1002 | static void snd_cs4231_capture_callback(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1003 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1004 | if (chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE) { |
| 1005 | snd_pcm_period_elapsed(chip->capture_substream); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1006 | snd_cs4231_advance_dma(&chip->c_dma, chip->capture_substream, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1007 | &chip->c_periods_sent); |
| 1008 | } |
| 1009 | } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1010 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1011 | static snd_pcm_uframes_t snd_cs4231_playback_pointer( |
| 1012 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1013 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1014 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
| 1015 | struct cs4231_dma_control *dma_cont = &chip->p_dma; |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 1016 | size_t ptr; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1017 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1018 | if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_PLAYBACK_ENABLE)) |
| 1019 | return 0; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1020 | ptr = dma_cont->address(dma_cont); |
| 1021 | if (ptr != 0) |
| 1022 | ptr -= substream->runtime->dma_addr; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1023 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1024 | return bytes_to_frames(substream->runtime, ptr); |
| 1025 | } |
| 1026 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1027 | static snd_pcm_uframes_t snd_cs4231_capture_pointer( |
| 1028 | struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1029 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1030 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
| 1031 | struct cs4231_dma_control *dma_cont = &chip->c_dma; |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 1032 | size_t ptr; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1033 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1034 | if (!(chip->image[CS4231_IFACE_CTRL] & CS4231_RECORD_ENABLE)) |
| 1035 | return 0; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1036 | ptr = dma_cont->address(dma_cont); |
| 1037 | if (ptr != 0) |
| 1038 | ptr -= substream->runtime->dma_addr; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1039 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1040 | return bytes_to_frames(substream->runtime, ptr); |
| 1041 | } |
| 1042 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1043 | static int __init snd_cs4231_probe(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1044 | { |
| 1045 | unsigned long flags; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1046 | int i; |
| 1047 | int id = 0; |
| 1048 | int vers = 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1049 | unsigned char *ptr; |
| 1050 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1051 | for (i = 0; i < 50; i++) { |
| 1052 | mb(); |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 1053 | if (__cs4231_readb(chip, CS4231U(chip, REGSEL)) & CS4231_INIT) |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1054 | msleep(2); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1055 | else { |
| 1056 | spin_lock_irqsave(&chip->lock, flags); |
| 1057 | snd_cs4231_out(chip, CS4231_MISC_INFO, CS4231_MODE2); |
| 1058 | id = snd_cs4231_in(chip, CS4231_MISC_INFO) & 0x0f; |
| 1059 | vers = snd_cs4231_in(chip, CS4231_VERSION); |
| 1060 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1061 | if (id == 0x0a) |
| 1062 | break; /* this is valid value */ |
| 1063 | } |
| 1064 | } |
| 1065 | snd_printdd("cs4231: port = %p, id = 0x%x\n", chip->port, id); |
| 1066 | if (id != 0x0a) |
| 1067 | return -ENODEV; /* no valid device found */ |
| 1068 | |
| 1069 | spin_lock_irqsave(&chip->lock, flags); |
| 1070 | |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 1071 | /* clear any pendings IRQ */ |
| 1072 | __cs4231_readb(chip, CS4231U(chip, STATUS)); |
| 1073 | __cs4231_writeb(chip, 0, CS4231U(chip, STATUS)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1074 | mb(); |
| 1075 | |
| 1076 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1077 | |
| 1078 | chip->image[CS4231_MISC_INFO] = CS4231_MODE2; |
| 1079 | chip->image[CS4231_IFACE_CTRL] = |
| 1080 | chip->image[CS4231_IFACE_CTRL] & ~CS4231_SINGLE_DMA; |
| 1081 | chip->image[CS4231_ALT_FEATURE_1] = 0x80; |
| 1082 | chip->image[CS4231_ALT_FEATURE_2] = 0x01; |
| 1083 | if (vers & 0x20) |
| 1084 | chip->image[CS4231_ALT_FEATURE_2] |= 0x02; |
| 1085 | |
| 1086 | ptr = (unsigned char *) &chip->image; |
| 1087 | |
| 1088 | snd_cs4231_mce_down(chip); |
| 1089 | |
| 1090 | spin_lock_irqsave(&chip->lock, flags); |
| 1091 | |
| 1092 | for (i = 0; i < 32; i++) /* ok.. fill all CS4231 registers */ |
| 1093 | snd_cs4231_out(chip, i, *ptr++); |
| 1094 | |
| 1095 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1096 | |
| 1097 | snd_cs4231_mce_up(chip); |
| 1098 | |
| 1099 | snd_cs4231_mce_down(chip); |
| 1100 | |
| 1101 | mdelay(2); |
| 1102 | |
| 1103 | return 0; /* all things are ok.. */ |
| 1104 | } |
| 1105 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1106 | static struct snd_pcm_hardware snd_cs4231_playback = { |
| 1107 | .info = SNDRV_PCM_INFO_MMAP | |
| 1108 | SNDRV_PCM_INFO_INTERLEAVED | |
| 1109 | SNDRV_PCM_INFO_MMAP_VALID | |
| 1110 | SNDRV_PCM_INFO_SYNC_START, |
| 1111 | .formats = SNDRV_PCM_FMTBIT_MU_LAW | |
| 1112 | SNDRV_PCM_FMTBIT_A_LAW | |
| 1113 | SNDRV_PCM_FMTBIT_IMA_ADPCM | |
| 1114 | SNDRV_PCM_FMTBIT_U8 | |
| 1115 | SNDRV_PCM_FMTBIT_S16_LE | |
| 1116 | SNDRV_PCM_FMTBIT_S16_BE, |
| 1117 | .rates = SNDRV_PCM_RATE_KNOT | |
| 1118 | SNDRV_PCM_RATE_8000_48000, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1119 | .rate_min = 5510, |
| 1120 | .rate_max = 48000, |
| 1121 | .channels_min = 1, |
| 1122 | .channels_max = 2, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1123 | .buffer_bytes_max = 32 * 1024, |
David S. Miller | f9af1d9 | 2007-01-03 18:51:54 -0800 | [diff] [blame] | 1124 | .period_bytes_min = 64, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1125 | .period_bytes_max = 32 * 1024, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1126 | .periods_min = 1, |
| 1127 | .periods_max = 1024, |
| 1128 | }; |
| 1129 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1130 | static struct snd_pcm_hardware snd_cs4231_capture = { |
| 1131 | .info = SNDRV_PCM_INFO_MMAP | |
| 1132 | SNDRV_PCM_INFO_INTERLEAVED | |
| 1133 | SNDRV_PCM_INFO_MMAP_VALID | |
| 1134 | SNDRV_PCM_INFO_SYNC_START, |
| 1135 | .formats = SNDRV_PCM_FMTBIT_MU_LAW | |
| 1136 | SNDRV_PCM_FMTBIT_A_LAW | |
| 1137 | SNDRV_PCM_FMTBIT_IMA_ADPCM | |
| 1138 | SNDRV_PCM_FMTBIT_U8 | |
| 1139 | SNDRV_PCM_FMTBIT_S16_LE | |
| 1140 | SNDRV_PCM_FMTBIT_S16_BE, |
| 1141 | .rates = SNDRV_PCM_RATE_KNOT | |
| 1142 | SNDRV_PCM_RATE_8000_48000, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1143 | .rate_min = 5510, |
| 1144 | .rate_max = 48000, |
| 1145 | .channels_min = 1, |
| 1146 | .channels_max = 2, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1147 | .buffer_bytes_max = 32 * 1024, |
David S. Miller | f9af1d9 | 2007-01-03 18:51:54 -0800 | [diff] [blame] | 1148 | .period_bytes_min = 64, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1149 | .period_bytes_max = 32 * 1024, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1150 | .periods_min = 1, |
| 1151 | .periods_max = 1024, |
| 1152 | }; |
| 1153 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1154 | static int snd_cs4231_playback_open(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1155 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1156 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
| 1157 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1158 | int err; |
| 1159 | |
| 1160 | runtime->hw = snd_cs4231_playback; |
| 1161 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1162 | err = snd_cs4231_open(chip, CS4231_MODE_PLAY); |
| 1163 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1164 | snd_free_pages(runtime->dma_area, runtime->dma_bytes); |
| 1165 | return err; |
| 1166 | } |
| 1167 | chip->playback_substream = substream; |
| 1168 | chip->p_periods_sent = 0; |
| 1169 | snd_pcm_set_sync(substream); |
| 1170 | snd_cs4231_xrate(runtime); |
| 1171 | |
| 1172 | return 0; |
| 1173 | } |
| 1174 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1175 | static int snd_cs4231_capture_open(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1176 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1177 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
| 1178 | struct snd_pcm_runtime *runtime = substream->runtime; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1179 | int err; |
| 1180 | |
| 1181 | runtime->hw = snd_cs4231_capture; |
| 1182 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1183 | err = snd_cs4231_open(chip, CS4231_MODE_RECORD); |
| 1184 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1185 | snd_free_pages(runtime->dma_area, runtime->dma_bytes); |
| 1186 | return err; |
| 1187 | } |
| 1188 | chip->capture_substream = substream; |
| 1189 | chip->c_periods_sent = 0; |
| 1190 | snd_pcm_set_sync(substream); |
| 1191 | snd_cs4231_xrate(runtime); |
| 1192 | |
| 1193 | return 0; |
| 1194 | } |
| 1195 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1196 | static int snd_cs4231_playback_close(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1197 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1198 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1199 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1200 | snd_cs4231_close(chip, CS4231_MODE_PLAY); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1201 | chip->playback_substream = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1202 | |
| 1203 | return 0; |
| 1204 | } |
| 1205 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1206 | static int snd_cs4231_capture_close(struct snd_pcm_substream *substream) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1207 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1208 | struct snd_cs4231 *chip = snd_pcm_substream_chip(substream); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1209 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1210 | snd_cs4231_close(chip, CS4231_MODE_RECORD); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1211 | chip->capture_substream = NULL; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1212 | |
| 1213 | return 0; |
| 1214 | } |
| 1215 | |
| 1216 | /* XXX We can do some power-management, in particular on EBUS using |
| 1217 | * XXX the audio AUXIO register... |
| 1218 | */ |
| 1219 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1220 | static struct snd_pcm_ops snd_cs4231_playback_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1221 | .open = snd_cs4231_playback_open, |
| 1222 | .close = snd_cs4231_playback_close, |
| 1223 | .ioctl = snd_pcm_lib_ioctl, |
| 1224 | .hw_params = snd_cs4231_playback_hw_params, |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1225 | .hw_free = snd_pcm_lib_free_pages, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1226 | .prepare = snd_cs4231_playback_prepare, |
| 1227 | .trigger = snd_cs4231_trigger, |
| 1228 | .pointer = snd_cs4231_playback_pointer, |
| 1229 | }; |
| 1230 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1231 | static struct snd_pcm_ops snd_cs4231_capture_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1232 | .open = snd_cs4231_capture_open, |
| 1233 | .close = snd_cs4231_capture_close, |
| 1234 | .ioctl = snd_pcm_lib_ioctl, |
| 1235 | .hw_params = snd_cs4231_capture_hw_params, |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1236 | .hw_free = snd_pcm_lib_free_pages, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1237 | .prepare = snd_cs4231_capture_prepare, |
| 1238 | .trigger = snd_cs4231_trigger, |
| 1239 | .pointer = snd_cs4231_capture_pointer, |
| 1240 | }; |
| 1241 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1242 | static int __init snd_cs4231_pcm(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1243 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1244 | struct snd_cs4231 *chip = card->private_data; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1245 | struct snd_pcm *pcm; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1246 | int err; |
| 1247 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1248 | err = snd_pcm_new(card, "CS4231", 0, 1, 1, &pcm); |
| 1249 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1250 | return err; |
| 1251 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1252 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_PLAYBACK, |
| 1253 | &snd_cs4231_playback_ops); |
| 1254 | snd_pcm_set_ops(pcm, SNDRV_PCM_STREAM_CAPTURE, |
| 1255 | &snd_cs4231_capture_ops); |
| 1256 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1257 | /* global setup */ |
| 1258 | pcm->private_data = chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1259 | pcm->info_flags = SNDRV_PCM_INFO_JOINT_DUPLEX; |
| 1260 | strcpy(pcm->name, "CS4231"); |
| 1261 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1262 | chip->p_dma.preallocate(chip, pcm); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1263 | |
| 1264 | chip->pcm = pcm; |
| 1265 | |
| 1266 | return 0; |
| 1267 | } |
| 1268 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1269 | static int __init snd_cs4231_timer(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1270 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1271 | struct snd_cs4231 *chip = card->private_data; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1272 | struct snd_timer *timer; |
| 1273 | struct snd_timer_id tid; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1274 | int err; |
| 1275 | |
| 1276 | /* Timer initialization */ |
| 1277 | tid.dev_class = SNDRV_TIMER_CLASS_CARD; |
| 1278 | tid.dev_sclass = SNDRV_TIMER_SCLASS_NONE; |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1279 | tid.card = card->number; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1280 | tid.device = 0; |
| 1281 | tid.subdevice = 0; |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1282 | err = snd_timer_new(card, "CS4231", &tid, &timer); |
| 1283 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1284 | return err; |
| 1285 | strcpy(timer->name, "CS4231"); |
| 1286 | timer->private_data = chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1287 | timer->hw = snd_cs4231_timer_table; |
| 1288 | chip->timer = timer; |
| 1289 | |
| 1290 | return 0; |
| 1291 | } |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1292 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1293 | /* |
| 1294 | * MIXER part |
| 1295 | */ |
| 1296 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1297 | static int snd_cs4231_info_mux(struct snd_kcontrol *kcontrol, |
| 1298 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1299 | { |
| 1300 | static char *texts[4] = { |
| 1301 | "Line", "CD", "Mic", "Mix" |
| 1302 | }; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1303 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1304 | uinfo->type = SNDRV_CTL_ELEM_TYPE_ENUMERATED; |
| 1305 | uinfo->count = 2; |
| 1306 | uinfo->value.enumerated.items = 4; |
| 1307 | if (uinfo->value.enumerated.item > 3) |
| 1308 | uinfo->value.enumerated.item = 3; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1309 | strcpy(uinfo->value.enumerated.name, |
| 1310 | texts[uinfo->value.enumerated.item]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1311 | |
| 1312 | return 0; |
| 1313 | } |
| 1314 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1315 | static int snd_cs4231_get_mux(struct snd_kcontrol *kcontrol, |
| 1316 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1317 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1318 | struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1319 | unsigned long flags; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1320 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1321 | spin_lock_irqsave(&chip->lock, flags); |
| 1322 | ucontrol->value.enumerated.item[0] = |
| 1323 | (chip->image[CS4231_LEFT_INPUT] & CS4231_MIXS_ALL) >> 6; |
| 1324 | ucontrol->value.enumerated.item[1] = |
| 1325 | (chip->image[CS4231_RIGHT_INPUT] & CS4231_MIXS_ALL) >> 6; |
| 1326 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1327 | |
| 1328 | return 0; |
| 1329 | } |
| 1330 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1331 | static int snd_cs4231_put_mux(struct snd_kcontrol *kcontrol, |
| 1332 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1333 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1334 | struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1335 | unsigned long flags; |
| 1336 | unsigned short left, right; |
| 1337 | int change; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1338 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1339 | if (ucontrol->value.enumerated.item[0] > 3 || |
| 1340 | ucontrol->value.enumerated.item[1] > 3) |
| 1341 | return -EINVAL; |
| 1342 | left = ucontrol->value.enumerated.item[0] << 6; |
| 1343 | right = ucontrol->value.enumerated.item[1] << 6; |
| 1344 | |
| 1345 | spin_lock_irqsave(&chip->lock, flags); |
| 1346 | |
| 1347 | left = (chip->image[CS4231_LEFT_INPUT] & ~CS4231_MIXS_ALL) | left; |
| 1348 | right = (chip->image[CS4231_RIGHT_INPUT] & ~CS4231_MIXS_ALL) | right; |
| 1349 | change = left != chip->image[CS4231_LEFT_INPUT] || |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1350 | right != chip->image[CS4231_RIGHT_INPUT]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1351 | snd_cs4231_out(chip, CS4231_LEFT_INPUT, left); |
| 1352 | snd_cs4231_out(chip, CS4231_RIGHT_INPUT, right); |
| 1353 | |
| 1354 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1355 | |
| 1356 | return change; |
| 1357 | } |
| 1358 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1359 | static int snd_cs4231_info_single(struct snd_kcontrol *kcontrol, |
| 1360 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1361 | { |
| 1362 | int mask = (kcontrol->private_value >> 16) & 0xff; |
| 1363 | |
| 1364 | uinfo->type = (mask == 1) ? |
| 1365 | SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 1366 | uinfo->count = 1; |
| 1367 | uinfo->value.integer.min = 0; |
| 1368 | uinfo->value.integer.max = mask; |
| 1369 | |
| 1370 | return 0; |
| 1371 | } |
| 1372 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1373 | static int snd_cs4231_get_single(struct snd_kcontrol *kcontrol, |
| 1374 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1375 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1376 | struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1377 | unsigned long flags; |
| 1378 | int reg = kcontrol->private_value & 0xff; |
| 1379 | int shift = (kcontrol->private_value >> 8) & 0xff; |
| 1380 | int mask = (kcontrol->private_value >> 16) & 0xff; |
| 1381 | int invert = (kcontrol->private_value >> 24) & 0xff; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1382 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1383 | spin_lock_irqsave(&chip->lock, flags); |
| 1384 | |
| 1385 | ucontrol->value.integer.value[0] = (chip->image[reg] >> shift) & mask; |
| 1386 | |
| 1387 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1388 | |
| 1389 | if (invert) |
| 1390 | ucontrol->value.integer.value[0] = |
| 1391 | (mask - ucontrol->value.integer.value[0]); |
| 1392 | |
| 1393 | return 0; |
| 1394 | } |
| 1395 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1396 | static int snd_cs4231_put_single(struct snd_kcontrol *kcontrol, |
| 1397 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1398 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1399 | struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1400 | unsigned long flags; |
| 1401 | int reg = kcontrol->private_value & 0xff; |
| 1402 | int shift = (kcontrol->private_value >> 8) & 0xff; |
| 1403 | int mask = (kcontrol->private_value >> 16) & 0xff; |
| 1404 | int invert = (kcontrol->private_value >> 24) & 0xff; |
| 1405 | int change; |
| 1406 | unsigned short val; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1407 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1408 | val = (ucontrol->value.integer.value[0] & mask); |
| 1409 | if (invert) |
| 1410 | val = mask - val; |
| 1411 | val <<= shift; |
| 1412 | |
| 1413 | spin_lock_irqsave(&chip->lock, flags); |
| 1414 | |
| 1415 | val = (chip->image[reg] & ~(mask << shift)) | val; |
| 1416 | change = val != chip->image[reg]; |
| 1417 | snd_cs4231_out(chip, reg, val); |
| 1418 | |
| 1419 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1420 | |
| 1421 | return change; |
| 1422 | } |
| 1423 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1424 | static int snd_cs4231_info_double(struct snd_kcontrol *kcontrol, |
| 1425 | struct snd_ctl_elem_info *uinfo) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1426 | { |
| 1427 | int mask = (kcontrol->private_value >> 24) & 0xff; |
| 1428 | |
| 1429 | uinfo->type = mask == 1 ? |
| 1430 | SNDRV_CTL_ELEM_TYPE_BOOLEAN : SNDRV_CTL_ELEM_TYPE_INTEGER; |
| 1431 | uinfo->count = 2; |
| 1432 | uinfo->value.integer.min = 0; |
| 1433 | uinfo->value.integer.max = mask; |
| 1434 | |
| 1435 | return 0; |
| 1436 | } |
| 1437 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1438 | static int snd_cs4231_get_double(struct snd_kcontrol *kcontrol, |
| 1439 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1440 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1441 | struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1442 | unsigned long flags; |
| 1443 | int left_reg = kcontrol->private_value & 0xff; |
| 1444 | int right_reg = (kcontrol->private_value >> 8) & 0xff; |
| 1445 | int shift_left = (kcontrol->private_value >> 16) & 0x07; |
| 1446 | int shift_right = (kcontrol->private_value >> 19) & 0x07; |
| 1447 | int mask = (kcontrol->private_value >> 24) & 0xff; |
| 1448 | int invert = (kcontrol->private_value >> 22) & 1; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1449 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1450 | spin_lock_irqsave(&chip->lock, flags); |
| 1451 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1452 | ucontrol->value.integer.value[0] = |
| 1453 | (chip->image[left_reg] >> shift_left) & mask; |
| 1454 | ucontrol->value.integer.value[1] = |
| 1455 | (chip->image[right_reg] >> shift_right) & mask; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1456 | |
| 1457 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1458 | |
| 1459 | if (invert) { |
| 1460 | ucontrol->value.integer.value[0] = |
| 1461 | (mask - ucontrol->value.integer.value[0]); |
| 1462 | ucontrol->value.integer.value[1] = |
| 1463 | (mask - ucontrol->value.integer.value[1]); |
| 1464 | } |
| 1465 | |
| 1466 | return 0; |
| 1467 | } |
| 1468 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1469 | static int snd_cs4231_put_double(struct snd_kcontrol *kcontrol, |
| 1470 | struct snd_ctl_elem_value *ucontrol) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1471 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1472 | struct snd_cs4231 *chip = snd_kcontrol_chip(kcontrol); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1473 | unsigned long flags; |
| 1474 | int left_reg = kcontrol->private_value & 0xff; |
| 1475 | int right_reg = (kcontrol->private_value >> 8) & 0xff; |
| 1476 | int shift_left = (kcontrol->private_value >> 16) & 0x07; |
| 1477 | int shift_right = (kcontrol->private_value >> 19) & 0x07; |
| 1478 | int mask = (kcontrol->private_value >> 24) & 0xff; |
| 1479 | int invert = (kcontrol->private_value >> 22) & 1; |
| 1480 | int change; |
| 1481 | unsigned short val1, val2; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1482 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1483 | val1 = ucontrol->value.integer.value[0] & mask; |
| 1484 | val2 = ucontrol->value.integer.value[1] & mask; |
| 1485 | if (invert) { |
| 1486 | val1 = mask - val1; |
| 1487 | val2 = mask - val2; |
| 1488 | } |
| 1489 | val1 <<= shift_left; |
| 1490 | val2 <<= shift_right; |
| 1491 | |
| 1492 | spin_lock_irqsave(&chip->lock, flags); |
| 1493 | |
| 1494 | val1 = (chip->image[left_reg] & ~(mask << shift_left)) | val1; |
| 1495 | val2 = (chip->image[right_reg] & ~(mask << shift_right)) | val2; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1496 | change = val1 != chip->image[left_reg]; |
| 1497 | change |= val2 != chip->image[right_reg]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1498 | snd_cs4231_out(chip, left_reg, val1); |
| 1499 | snd_cs4231_out(chip, right_reg, val2); |
| 1500 | |
| 1501 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1502 | |
| 1503 | return change; |
| 1504 | } |
| 1505 | |
| 1506 | #define CS4231_SINGLE(xname, xindex, reg, shift, mask, invert) \ |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1507 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), .index = (xindex), \ |
| 1508 | .info = snd_cs4231_info_single, \ |
| 1509 | .get = snd_cs4231_get_single, .put = snd_cs4231_put_single, \ |
| 1510 | .private_value = (reg) | ((shift) << 8) | ((mask) << 16) | ((invert) << 24) } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1511 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1512 | #define CS4231_DOUBLE(xname, xindex, left_reg, right_reg, shift_left, \ |
| 1513 | shift_right, mask, invert) \ |
| 1514 | { .iface = SNDRV_CTL_ELEM_IFACE_MIXER, .name = (xname), .index = (xindex), \ |
| 1515 | .info = snd_cs4231_info_double, \ |
| 1516 | .get = snd_cs4231_get_double, .put = snd_cs4231_put_double, \ |
| 1517 | .private_value = (left_reg) | ((right_reg) << 8) | ((shift_left) << 16) | \ |
| 1518 | ((shift_right) << 19) | ((mask) << 24) | ((invert) << 22) } |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1519 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1520 | static struct snd_kcontrol_new snd_cs4231_controls[] __initdata = { |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1521 | CS4231_DOUBLE("PCM Playback Switch", 0, CS4231_LEFT_OUTPUT, |
| 1522 | CS4231_RIGHT_OUTPUT, 7, 7, 1, 1), |
| 1523 | CS4231_DOUBLE("PCM Playback Volume", 0, CS4231_LEFT_OUTPUT, |
| 1524 | CS4231_RIGHT_OUTPUT, 0, 0, 63, 1), |
| 1525 | CS4231_DOUBLE("Line Playback Switch", 0, CS4231_LEFT_LINE_IN, |
| 1526 | CS4231_RIGHT_LINE_IN, 7, 7, 1, 1), |
| 1527 | CS4231_DOUBLE("Line Playback Volume", 0, CS4231_LEFT_LINE_IN, |
| 1528 | CS4231_RIGHT_LINE_IN, 0, 0, 31, 1), |
| 1529 | CS4231_DOUBLE("Aux Playback Switch", 0, CS4231_AUX1_LEFT_INPUT, |
| 1530 | CS4231_AUX1_RIGHT_INPUT, 7, 7, 1, 1), |
| 1531 | CS4231_DOUBLE("Aux Playback Volume", 0, CS4231_AUX1_LEFT_INPUT, |
| 1532 | CS4231_AUX1_RIGHT_INPUT, 0, 0, 31, 1), |
| 1533 | CS4231_DOUBLE("Aux Playback Switch", 1, CS4231_AUX2_LEFT_INPUT, |
| 1534 | CS4231_AUX2_RIGHT_INPUT, 7, 7, 1, 1), |
| 1535 | CS4231_DOUBLE("Aux Playback Volume", 1, CS4231_AUX2_LEFT_INPUT, |
| 1536 | CS4231_AUX2_RIGHT_INPUT, 0, 0, 31, 1), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1537 | CS4231_SINGLE("Mono Playback Switch", 0, CS4231_MONO_CTRL, 7, 1, 1), |
| 1538 | CS4231_SINGLE("Mono Playback Volume", 0, CS4231_MONO_CTRL, 0, 15, 1), |
| 1539 | CS4231_SINGLE("Mono Output Playback Switch", 0, CS4231_MONO_CTRL, 6, 1, 1), |
| 1540 | 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] | 1541 | CS4231_DOUBLE("Capture Volume", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 0, 0, |
| 1542 | 15, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1543 | { |
| 1544 | .iface = SNDRV_CTL_ELEM_IFACE_MIXER, |
| 1545 | .name = "Capture Source", |
| 1546 | .info = snd_cs4231_info_mux, |
| 1547 | .get = snd_cs4231_get_mux, |
| 1548 | .put = snd_cs4231_put_mux, |
| 1549 | }, |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1550 | CS4231_DOUBLE("Mic Boost", 0, CS4231_LEFT_INPUT, CS4231_RIGHT_INPUT, 5, 5, |
| 1551 | 1, 0), |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1552 | CS4231_SINGLE("Loopback Capture Switch", 0, CS4231_LOOPBACK, 0, 1, 0), |
| 1553 | CS4231_SINGLE("Loopback Capture Volume", 0, CS4231_LOOPBACK, 2, 63, 1), |
| 1554 | /* SPARC specific uses of XCTL{0,1} general purpose outputs. */ |
| 1555 | CS4231_SINGLE("Line Out Switch", 0, CS4231_PIN_CTRL, 6, 1, 1), |
| 1556 | CS4231_SINGLE("Headphone Out Switch", 0, CS4231_PIN_CTRL, 7, 1, 1) |
| 1557 | }; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1558 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1559 | static int __init snd_cs4231_mixer(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1560 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1561 | struct snd_cs4231 *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1562 | int err, idx; |
| 1563 | |
| 1564 | snd_assert(chip != NULL && chip->pcm != NULL, return -EINVAL); |
| 1565 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1566 | strcpy(card->mixername, chip->pcm->name); |
| 1567 | |
| 1568 | for (idx = 0; idx < ARRAY_SIZE(snd_cs4231_controls); idx++) { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1569 | err = snd_ctl_add(card, |
| 1570 | snd_ctl_new1(&snd_cs4231_controls[idx], chip)); |
| 1571 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1572 | return err; |
| 1573 | } |
| 1574 | return 0; |
| 1575 | } |
| 1576 | |
| 1577 | static int dev; |
| 1578 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1579 | static int __init cs4231_attach_begin(struct snd_card **rcard) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1580 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1581 | struct snd_card *card; |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1582 | struct snd_cs4231 *chip; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1583 | |
| 1584 | *rcard = NULL; |
| 1585 | |
| 1586 | if (dev >= SNDRV_CARDS) |
| 1587 | return -ENODEV; |
| 1588 | |
| 1589 | if (!enable[dev]) { |
| 1590 | dev++; |
| 1591 | return -ENOENT; |
| 1592 | } |
| 1593 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1594 | card = snd_card_new(index[dev], id[dev], THIS_MODULE, |
| 1595 | sizeof(struct snd_cs4231)); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1596 | if (card == NULL) |
| 1597 | return -ENOMEM; |
| 1598 | |
| 1599 | strcpy(card->driver, "CS4231"); |
| 1600 | strcpy(card->shortname, "Sun CS4231"); |
| 1601 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1602 | chip = card->private_data; |
| 1603 | chip->card = card; |
| 1604 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1605 | *rcard = card; |
| 1606 | return 0; |
| 1607 | } |
| 1608 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1609 | static int __init cs4231_attach_finish(struct snd_card *card) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1610 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1611 | struct snd_cs4231 *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1612 | int err; |
| 1613 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1614 | err = snd_cs4231_pcm(card); |
| 1615 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1616 | goto out_err; |
| 1617 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1618 | err = snd_cs4231_mixer(card); |
| 1619 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1620 | goto out_err; |
| 1621 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1622 | err = snd_cs4231_timer(card); |
| 1623 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1624 | goto out_err; |
| 1625 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1626 | err = snd_card_register(card); |
| 1627 | if (err < 0) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1628 | goto out_err; |
| 1629 | |
| 1630 | chip->next = cs4231_list; |
| 1631 | cs4231_list = chip; |
| 1632 | |
| 1633 | dev++; |
| 1634 | return 0; |
| 1635 | |
| 1636 | out_err: |
| 1637 | snd_card_free(card); |
| 1638 | return err; |
| 1639 | } |
| 1640 | |
| 1641 | #ifdef SBUS_SUPPORT |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1642 | |
David Howells | 7d12e78 | 2006-10-05 14:55:46 +0100 | [diff] [blame] | 1643 | static irqreturn_t snd_cs4231_sbus_interrupt(int irq, void *dev_id) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1644 | { |
| 1645 | unsigned long flags; |
| 1646 | unsigned char status; |
| 1647 | u32 csr; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1648 | struct snd_cs4231 *chip = dev_id; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1649 | |
| 1650 | /*This is IRQ is not raised by the cs4231*/ |
Krzysztof Helt | 7e52f3d | 2007-09-05 15:08:23 +0200 | [diff] [blame] | 1651 | if (!(__cs4231_readb(chip, CS4231U(chip, STATUS)) & CS4231_GLOBALIRQ)) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1652 | return IRQ_NONE; |
| 1653 | |
| 1654 | /* ACK the APC interrupt. */ |
| 1655 | csr = sbus_readl(chip->port + APCCSR); |
| 1656 | |
| 1657 | sbus_writel(csr, chip->port + APCCSR); |
| 1658 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1659 | if ((csr & APC_PDMA_READY) && |
| 1660 | (csr & APC_PLAY_INT) && |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1661 | (csr & APC_XINT_PNVA) && |
| 1662 | !(csr & APC_XINT_EMPT)) |
| 1663 | snd_cs4231_play_callback(chip); |
| 1664 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1665 | if ((csr & APC_CDMA_READY) && |
| 1666 | (csr & APC_CAPT_INT) && |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1667 | (csr & APC_XINT_CNVA) && |
| 1668 | !(csr & APC_XINT_EMPT)) |
| 1669 | snd_cs4231_capture_callback(chip); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1670 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1671 | status = snd_cs4231_in(chip, CS4231_IRQ_STATUS); |
| 1672 | |
| 1673 | if (status & CS4231_TIMER_IRQ) { |
| 1674 | if (chip->timer) |
| 1675 | snd_timer_interrupt(chip->timer, chip->timer->sticks); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1676 | } |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1677 | |
| 1678 | if ((status & CS4231_RECORD_IRQ) && (csr & APC_CDMA_READY)) |
| 1679 | snd_cs4231_overrange(chip); |
| 1680 | |
| 1681 | /* ACK the CS4231 interrupt. */ |
| 1682 | spin_lock_irqsave(&chip->lock, flags); |
| 1683 | snd_cs4231_outm(chip, CS4231_IRQ_STATUS, ~CS4231_ALL_IRQS | ~status, 0); |
| 1684 | spin_unlock_irqrestore(&chip->lock, flags); |
| 1685 | |
Georg Chini | d35a1b9 | 2007-01-02 21:28:17 -0800 | [diff] [blame] | 1686 | return IRQ_HANDLED; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1687 | } |
| 1688 | |
| 1689 | /* |
| 1690 | * SBUS DMA routines |
| 1691 | */ |
| 1692 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1693 | static int sbus_dma_request(struct cs4231_dma_control *dma_cont, |
| 1694 | dma_addr_t bus_addr, size_t len) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1695 | { |
| 1696 | unsigned long flags; |
| 1697 | u32 test, csr; |
| 1698 | int err; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1699 | struct sbus_dma_info *base = &dma_cont->sbus_info; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1700 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1701 | if (len >= (1 << 24)) |
| 1702 | return -EINVAL; |
| 1703 | spin_lock_irqsave(&base->lock, flags); |
| 1704 | csr = sbus_readl(base->regs + APCCSR); |
| 1705 | err = -EINVAL; |
| 1706 | test = APC_CDMA_READY; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1707 | if (base->dir == APC_PLAY) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1708 | test = APC_PDMA_READY; |
| 1709 | if (!(csr & test)) |
| 1710 | goto out; |
| 1711 | err = -EBUSY; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1712 | test = APC_XINT_CNVA; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1713 | if (base->dir == APC_PLAY) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1714 | test = APC_XINT_PNVA; |
| 1715 | if (!(csr & test)) |
| 1716 | goto out; |
| 1717 | err = 0; |
| 1718 | sbus_writel(bus_addr, base->regs + base->dir + APCNVA); |
| 1719 | sbus_writel(len, base->regs + base->dir + APCNC); |
| 1720 | out: |
| 1721 | spin_unlock_irqrestore(&base->lock, flags); |
| 1722 | return err; |
| 1723 | } |
| 1724 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1725 | 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] | 1726 | { |
| 1727 | unsigned long flags; |
| 1728 | u32 csr, test; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1729 | struct sbus_dma_info *base = &dma_cont->sbus_info; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1730 | |
| 1731 | spin_lock_irqsave(&base->lock, flags); |
| 1732 | csr = sbus_readl(base->regs + APCCSR); |
| 1733 | test = APC_GENL_INT | APC_PLAY_INT | APC_XINT_ENA | |
| 1734 | APC_XINT_PLAY | APC_XINT_PEMP | APC_XINT_GENL | |
| 1735 | APC_XINT_PENA; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1736 | if (base->dir == APC_RECORD) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1737 | test = APC_GENL_INT | APC_CAPT_INT | APC_XINT_ENA | |
| 1738 | APC_XINT_CAPT | APC_XINT_CEMP | APC_XINT_GENL; |
| 1739 | csr |= test; |
| 1740 | sbus_writel(csr, base->regs + APCCSR); |
| 1741 | spin_unlock_irqrestore(&base->lock, flags); |
| 1742 | } |
| 1743 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1744 | 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] | 1745 | { |
| 1746 | unsigned long flags; |
| 1747 | u32 csr, shift; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1748 | struct sbus_dma_info *base = &dma_cont->sbus_info; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1749 | |
| 1750 | spin_lock_irqsave(&base->lock, flags); |
| 1751 | if (!on) { |
Georg Chini | d35a1b9 | 2007-01-02 21:28:17 -0800 | [diff] [blame] | 1752 | sbus_writel(0, base->regs + base->dir + APCNC); |
| 1753 | sbus_writel(0, base->regs + base->dir + APCNVA); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1754 | if (base->dir == APC_PLAY) { |
Georg Chini | 3daadf3 | 2007-08-01 21:55:58 -0700 | [diff] [blame] | 1755 | sbus_writel(0, base->regs + base->dir + APCC); |
| 1756 | sbus_writel(0, base->regs + base->dir + APCVA); |
| 1757 | } |
Georg Chini | d35a1b9 | 2007-01-02 21:28:17 -0800 | [diff] [blame] | 1758 | |
Georg Chini | 3daadf3 | 2007-08-01 21:55:58 -0700 | [diff] [blame] | 1759 | udelay(1200); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1760 | } |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1761 | csr = sbus_readl(base->regs + APCCSR); |
| 1762 | shift = 0; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1763 | if (base->dir == APC_PLAY) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1764 | shift = 1; |
| 1765 | if (on) |
| 1766 | csr &= ~(APC_CPAUSE << shift); |
| 1767 | else |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1768 | csr |= (APC_CPAUSE << shift); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1769 | sbus_writel(csr, base->regs + APCCSR); |
| 1770 | if (on) |
| 1771 | csr |= (APC_CDMA_READY << shift); |
| 1772 | else |
| 1773 | csr &= ~(APC_CDMA_READY << shift); |
| 1774 | sbus_writel(csr, base->regs + APCCSR); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1775 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1776 | spin_unlock_irqrestore(&base->lock, flags); |
| 1777 | } |
| 1778 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1779 | static unsigned int sbus_dma_addr(struct cs4231_dma_control *dma_cont) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1780 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1781 | struct sbus_dma_info *base = &dma_cont->sbus_info; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1782 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1783 | return sbus_readl(base->regs + base->dir + APCVA); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1784 | } |
| 1785 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1786 | 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] | 1787 | { |
David S. Miller | 12b1c03 | 2008-08-27 00:31:36 -0700 | [diff] [blame] | 1788 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1789 | &chip->dev_u.op->dev, |
David S. Miller | 12b1c03 | 2008-08-27 00:31:36 -0700 | [diff] [blame] | 1790 | 64 * 1024, 128 * 1024); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1791 | } |
| 1792 | |
| 1793 | /* |
| 1794 | * Init and exit routines |
| 1795 | */ |
| 1796 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1797 | static int snd_cs4231_sbus_free(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1798 | { |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1799 | struct of_device *op = chip->dev_u.op; |
| 1800 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1801 | if (chip->irq[0]) |
| 1802 | free_irq(chip->irq[0], chip); |
| 1803 | |
| 1804 | if (chip->port) |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1805 | of_iounmap(&op->resource[0], chip->port, chip->regs_size); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1806 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1807 | return 0; |
| 1808 | } |
| 1809 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1810 | static int snd_cs4231_sbus_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1811 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1812 | struct snd_cs4231 *cp = device->device_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1813 | |
| 1814 | return snd_cs4231_sbus_free(cp); |
| 1815 | } |
| 1816 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1817 | static struct snd_device_ops snd_cs4231_sbus_dev_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1818 | .dev_free = snd_cs4231_sbus_dev_free, |
| 1819 | }; |
| 1820 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1821 | static int __init snd_cs4231_sbus_create(struct snd_card *card, |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1822 | struct of_device *op, |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1823 | int dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1824 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1825 | struct snd_cs4231 *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1826 | int err; |
| 1827 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1828 | spin_lock_init(&chip->lock); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1829 | spin_lock_init(&chip->c_dma.sbus_info.lock); |
| 1830 | spin_lock_init(&chip->p_dma.sbus_info.lock); |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 1831 | mutex_init(&chip->mce_mutex); |
| 1832 | mutex_init(&chip->open_mutex); |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1833 | chip->dev_u.op = op; |
| 1834 | chip->regs_size = resource_size(&op->resource[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1835 | memcpy(&chip->image, &snd_cs4231_original_image, |
| 1836 | sizeof(snd_cs4231_original_image)); |
| 1837 | |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1838 | chip->port = of_ioremap(&op->resource[0], 0, |
| 1839 | chip->regs_size, "cs4231"); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1840 | if (!chip->port) { |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 1841 | snd_printdd("cs4231-%d: Unable to map chip registers.\n", dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1842 | return -EIO; |
| 1843 | } |
| 1844 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1845 | chip->c_dma.sbus_info.regs = chip->port; |
| 1846 | chip->p_dma.sbus_info.regs = chip->port; |
| 1847 | chip->c_dma.sbus_info.dir = APC_RECORD; |
| 1848 | chip->p_dma.sbus_info.dir = APC_PLAY; |
| 1849 | |
| 1850 | chip->p_dma.prepare = sbus_dma_prepare; |
| 1851 | chip->p_dma.enable = sbus_dma_enable; |
| 1852 | chip->p_dma.request = sbus_dma_request; |
| 1853 | chip->p_dma.address = sbus_dma_addr; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1854 | chip->p_dma.preallocate = sbus_dma_preallocate; |
| 1855 | |
| 1856 | chip->c_dma.prepare = sbus_dma_prepare; |
| 1857 | chip->c_dma.enable = sbus_dma_enable; |
| 1858 | chip->c_dma.request = sbus_dma_request; |
| 1859 | chip->c_dma.address = sbus_dma_addr; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1860 | chip->c_dma.preallocate = sbus_dma_preallocate; |
Georg Chini | 5a820fa | 2005-11-07 14:08:25 -0800 | [diff] [blame] | 1861 | |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1862 | if (request_irq(op->irqs[0], snd_cs4231_sbus_interrupt, |
Thomas Gleixner | 65ca68b | 2006-07-01 19:29:46 -0700 | [diff] [blame] | 1863 | IRQF_SHARED, "cs4231", chip)) { |
David S. Miller | c6387a4 | 2006-06-20 01:21:29 -0700 | [diff] [blame] | 1864 | snd_printdd("cs4231-%d: Unable to grab SBUS IRQ %d\n", |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1865 | dev, op->irqs[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1866 | snd_cs4231_sbus_free(chip); |
| 1867 | return -EBUSY; |
| 1868 | } |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1869 | chip->irq[0] = op->irqs[0]; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1870 | |
| 1871 | if (snd_cs4231_probe(chip) < 0) { |
| 1872 | snd_cs4231_sbus_free(chip); |
| 1873 | return -ENODEV; |
| 1874 | } |
| 1875 | snd_cs4231_init(chip); |
| 1876 | |
| 1877 | if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, |
| 1878 | chip, &snd_cs4231_sbus_dev_ops)) < 0) { |
| 1879 | snd_cs4231_sbus_free(chip); |
| 1880 | return err; |
| 1881 | } |
| 1882 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1883 | return 0; |
| 1884 | } |
| 1885 | |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1886 | static int __devinit cs4231_probe(struct of_device *op, const struct of_device_id *match) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1887 | { |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1888 | struct resource *rp = &op->resource[0]; |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1889 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1890 | int err; |
| 1891 | |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1892 | if (strcmp(op->node->parent->name, "sbus") && |
| 1893 | strcmp(op->node->parent->name, "sbi")) |
| 1894 | return -ENODEV; |
| 1895 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1896 | err = cs4231_attach_begin(&card); |
| 1897 | if (err) |
| 1898 | return err; |
| 1899 | |
Andrew Morton | 5863aa6 | 2006-07-03 00:24:22 -0700 | [diff] [blame] | 1900 | sprintf(card->longname, "%s at 0x%02lx:0x%016Lx, irq %d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1901 | card->shortname, |
| 1902 | rp->flags & 0xffL, |
Greg Kroah-Hartman | aa0a2dd | 2006-06-12 14:50:27 -0700 | [diff] [blame] | 1903 | (unsigned long long)rp->start, |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1904 | op->irqs[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1905 | |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 1906 | err = snd_cs4231_sbus_create(card, op, dev); |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1907 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1908 | snd_card_free(card); |
| 1909 | return err; |
| 1910 | } |
| 1911 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 1912 | return cs4231_attach_finish(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1913 | } |
| 1914 | #endif |
| 1915 | |
| 1916 | #ifdef EBUS_SUPPORT |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1917 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1918 | static void snd_cs4231_ebus_play_callback(struct ebus_dma_info *p, int event, |
| 1919 | void *cookie) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1920 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1921 | struct snd_cs4231 *chip = cookie; |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1922 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1923 | snd_cs4231_play_callback(chip); |
| 1924 | } |
| 1925 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1926 | static void snd_cs4231_ebus_capture_callback(struct ebus_dma_info *p, |
| 1927 | int event, void *cookie) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1928 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1929 | struct snd_cs4231 *chip = cookie; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1930 | |
| 1931 | snd_cs4231_capture_callback(chip); |
| 1932 | } |
| 1933 | |
| 1934 | /* |
| 1935 | * EBUS DMA wrappers |
| 1936 | */ |
| 1937 | |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 1938 | static int _ebus_dma_request(struct cs4231_dma_control *dma_cont, |
| 1939 | dma_addr_t bus_addr, size_t len) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1940 | { |
| 1941 | return ebus_dma_request(&dma_cont->ebus_info, bus_addr, len); |
| 1942 | } |
| 1943 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1944 | 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] | 1945 | { |
| 1946 | ebus_dma_enable(&dma_cont->ebus_info, on); |
| 1947 | } |
| 1948 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1949 | 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] | 1950 | { |
| 1951 | ebus_dma_prepare(&dma_cont->ebus_info, dir); |
| 1952 | } |
| 1953 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1954 | static unsigned int _ebus_dma_addr(struct cs4231_dma_control *dma_cont) |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1955 | { |
| 1956 | return ebus_dma_addr(&dma_cont->ebus_info); |
| 1957 | } |
| 1958 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1959 | 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] | 1960 | { |
| 1961 | snd_pcm_lib_preallocate_pages_for_all(pcm, SNDRV_DMA_TYPE_DEV, |
| 1962 | snd_dma_pci_data(chip->dev_u.pdev), |
| 1963 | 64*1024, 128*1024); |
| 1964 | } |
| 1965 | |
| 1966 | /* |
| 1967 | * Init and exit routines |
| 1968 | */ |
| 1969 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1970 | static int snd_cs4231_ebus_free(struct snd_cs4231 *chip) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1971 | { |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1972 | if (chip->c_dma.ebus_info.regs) { |
| 1973 | ebus_dma_unregister(&chip->c_dma.ebus_info); |
| 1974 | iounmap(chip->c_dma.ebus_info.regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1975 | } |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 1976 | if (chip->p_dma.ebus_info.regs) { |
| 1977 | ebus_dma_unregister(&chip->p_dma.ebus_info); |
| 1978 | iounmap(chip->p_dma.ebus_info.regs); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1979 | } |
| 1980 | |
| 1981 | if (chip->port) |
| 1982 | iounmap(chip->port); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1983 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1984 | return 0; |
| 1985 | } |
| 1986 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1987 | static int snd_cs4231_ebus_dev_free(struct snd_device *device) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1988 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1989 | struct snd_cs4231 *cp = device->device_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1990 | |
| 1991 | return snd_cs4231_ebus_free(cp); |
| 1992 | } |
| 1993 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1994 | static struct snd_device_ops snd_cs4231_ebus_dev_ops = { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1995 | .dev_free = snd_cs4231_ebus_dev_free, |
| 1996 | }; |
| 1997 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 1998 | static int __init snd_cs4231_ebus_create(struct snd_card *card, |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 1999 | struct linux_ebus_device *edev, |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 2000 | int dev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2001 | { |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 2002 | struct snd_cs4231 *chip = card->private_data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2003 | int err; |
| 2004 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2005 | spin_lock_init(&chip->lock); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2006 | spin_lock_init(&chip->c_dma.ebus_info.lock); |
| 2007 | spin_lock_init(&chip->p_dma.ebus_info.lock); |
Ingo Molnar | 12aa757 | 2006-01-16 16:36:05 +0100 | [diff] [blame] | 2008 | mutex_init(&chip->mce_mutex); |
| 2009 | mutex_init(&chip->open_mutex); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2010 | chip->flags |= CS4231_FLAG_EBUS; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2011 | chip->dev_u.pdev = edev->bus->self; |
| 2012 | memcpy(&chip->image, &snd_cs4231_original_image, |
| 2013 | sizeof(snd_cs4231_original_image)); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2014 | strcpy(chip->c_dma.ebus_info.name, "cs4231(capture)"); |
| 2015 | chip->c_dma.ebus_info.flags = EBUS_DMA_FLAG_USE_EBDMA_HANDLER; |
| 2016 | chip->c_dma.ebus_info.callback = snd_cs4231_ebus_capture_callback; |
| 2017 | chip->c_dma.ebus_info.client_cookie = chip; |
| 2018 | chip->c_dma.ebus_info.irq = edev->irqs[0]; |
| 2019 | strcpy(chip->p_dma.ebus_info.name, "cs4231(play)"); |
| 2020 | chip->p_dma.ebus_info.flags = EBUS_DMA_FLAG_USE_EBDMA_HANDLER; |
| 2021 | chip->p_dma.ebus_info.callback = snd_cs4231_ebus_play_callback; |
| 2022 | chip->p_dma.ebus_info.client_cookie = chip; |
| 2023 | chip->p_dma.ebus_info.irq = edev->irqs[1]; |
| 2024 | |
| 2025 | chip->p_dma.prepare = _ebus_dma_prepare; |
| 2026 | chip->p_dma.enable = _ebus_dma_enable; |
| 2027 | chip->p_dma.request = _ebus_dma_request; |
| 2028 | chip->p_dma.address = _ebus_dma_addr; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2029 | chip->p_dma.preallocate = _ebus_dma_preallocate; |
| 2030 | |
| 2031 | chip->c_dma.prepare = _ebus_dma_prepare; |
| 2032 | chip->c_dma.enable = _ebus_dma_enable; |
| 2033 | chip->c_dma.request = _ebus_dma_request; |
| 2034 | chip->c_dma.address = _ebus_dma_addr; |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2035 | chip->c_dma.preallocate = _ebus_dma_preallocate; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2036 | |
| 2037 | chip->port = ioremap(edev->resource[0].start, 0x10); |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2038 | chip->p_dma.ebus_info.regs = ioremap(edev->resource[1].start, 0x10); |
| 2039 | chip->c_dma.ebus_info.regs = ioremap(edev->resource[2].start, 0x10); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 2040 | if (!chip->port || !chip->p_dma.ebus_info.regs || |
| 2041 | !chip->c_dma.ebus_info.regs) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2042 | snd_cs4231_ebus_free(chip); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 2043 | snd_printdd("cs4231-%d: Unable to map chip registers.\n", dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2044 | return -EIO; |
| 2045 | } |
| 2046 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2047 | if (ebus_dma_register(&chip->c_dma.ebus_info)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2048 | snd_cs4231_ebus_free(chip); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 2049 | snd_printdd("cs4231-%d: Unable to register EBUS capture DMA\n", |
| 2050 | dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2051 | return -EBUSY; |
| 2052 | } |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2053 | if (ebus_dma_irq_enable(&chip->c_dma.ebus_info, 1)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2054 | snd_cs4231_ebus_free(chip); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 2055 | snd_printdd("cs4231-%d: Unable to enable EBUS capture IRQ\n", |
| 2056 | dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2057 | return -EBUSY; |
| 2058 | } |
| 2059 | |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2060 | if (ebus_dma_register(&chip->p_dma.ebus_info)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2061 | snd_cs4231_ebus_free(chip); |
Krzysztof Helt | 9e9abb4 | 2007-09-10 23:06:55 +0200 | [diff] [blame] | 2062 | snd_printdd("cs4231-%d: Unable to register EBUS play DMA\n", |
| 2063 | dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2064 | return -EBUSY; |
| 2065 | } |
Georg Chini | b128254 | 2005-11-07 14:09:19 -0800 | [diff] [blame] | 2066 | if (ebus_dma_irq_enable(&chip->p_dma.ebus_info, 1)) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2067 | snd_cs4231_ebus_free(chip); |
Christopher Zimmermann | a131430 | 2005-09-21 00:41:22 -0700 | [diff] [blame] | 2068 | snd_printdd("cs4231-%d: Unable to enable EBUS play IRQ\n", dev); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2069 | return -EBUSY; |
| 2070 | } |
| 2071 | |
| 2072 | if (snd_cs4231_probe(chip) < 0) { |
| 2073 | snd_cs4231_ebus_free(chip); |
| 2074 | return -ENODEV; |
| 2075 | } |
| 2076 | snd_cs4231_init(chip); |
| 2077 | |
| 2078 | if ((err = snd_device_new(card, SNDRV_DEV_LOWLEVEL, |
| 2079 | chip, &snd_cs4231_ebus_dev_ops)) < 0) { |
| 2080 | snd_cs4231_ebus_free(chip); |
| 2081 | return err; |
| 2082 | } |
| 2083 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2084 | return 0; |
| 2085 | } |
| 2086 | |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 2087 | static int __init cs4231_ebus_attach(struct linux_ebus_device *edev) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2088 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 2089 | struct snd_card *card; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2090 | int err; |
| 2091 | |
| 2092 | err = cs4231_attach_begin(&card); |
| 2093 | if (err) |
| 2094 | return err; |
| 2095 | |
David S. Miller | c6387a4 | 2006-06-20 01:21:29 -0700 | [diff] [blame] | 2096 | sprintf(card->longname, "%s at 0x%lx, irq %d", |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2097 | card->shortname, |
| 2098 | edev->resource[0].start, |
David S. Miller | c6387a4 | 2006-06-20 01:21:29 -0700 | [diff] [blame] | 2099 | edev->irqs[0]); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2100 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 2101 | err = snd_cs4231_ebus_create(card, edev, dev); |
| 2102 | if (err < 0) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2103 | snd_card_free(card); |
| 2104 | return err; |
| 2105 | } |
| 2106 | |
Krzysztof Helt | c6c2d57 | 2007-09-04 13:08:24 +0200 | [diff] [blame] | 2107 | return cs4231_attach_finish(card); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2108 | } |
| 2109 | #endif |
| 2110 | |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 2111 | #ifdef SBUS_SUPPORT |
| 2112 | static struct of_device_id cs4231_match[] = { |
| 2113 | { |
| 2114 | .name = "SUNW,CS4231", |
| 2115 | }, |
| 2116 | {}, |
| 2117 | }; |
| 2118 | |
| 2119 | MODULE_DEVICE_TABLE(of, cs4231_match); |
| 2120 | |
| 2121 | static struct of_platform_driver cs4231_driver = { |
| 2122 | .name = "audio", |
| 2123 | .match_table = cs4231_match, |
| 2124 | .probe = cs4231_probe, |
| 2125 | }; |
| 2126 | #endif |
| 2127 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2128 | static int __init cs4231_init(void) |
| 2129 | { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2130 | #ifdef EBUS_SUPPORT |
| 2131 | struct linux_ebus *ebus; |
| 2132 | struct linux_ebus_device *edev; |
| 2133 | #endif |
| 2134 | int found; |
| 2135 | |
| 2136 | found = 0; |
| 2137 | |
| 2138 | #ifdef SBUS_SUPPORT |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 2139 | { |
| 2140 | int err = of_register_driver(&cs4231_driver, &of_bus_type); |
| 2141 | if (err) |
| 2142 | return err; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2143 | } |
| 2144 | #endif |
| 2145 | #ifdef EBUS_SUPPORT |
| 2146 | for_each_ebus(ebus) { |
| 2147 | for_each_ebusdev(edev, ebus) { |
| 2148 | int match = 0; |
| 2149 | |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 2150 | if (!strcmp(edev->prom_node->name, "SUNW,CS4231")) { |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2151 | match = 1; |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 2152 | } else if (!strcmp(edev->prom_node->name, "audio")) { |
Stephen Rothwell | 3198514 | 2007-03-29 00:50:57 -0700 | [diff] [blame] | 2153 | const char *compat; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2154 | |
David S. Miller | 690c8fd | 2006-06-22 19:12:03 -0700 | [diff] [blame] | 2155 | compat = of_get_property(edev->prom_node, |
| 2156 | "compatible", NULL); |
| 2157 | if (compat && !strcmp(compat, "SUNW,CS4231")) |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2158 | match = 1; |
| 2159 | } |
| 2160 | |
| 2161 | if (match && |
| 2162 | cs4231_ebus_attach(edev) == 0) |
| 2163 | found++; |
| 2164 | } |
| 2165 | } |
| 2166 | #endif |
| 2167 | |
| 2168 | |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 2169 | return 0; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2170 | } |
| 2171 | |
| 2172 | static void __exit cs4231_exit(void) |
| 2173 | { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 2174 | struct snd_cs4231 *p = cs4231_list; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2175 | |
David S. Miller | ae25103 | 2008-08-27 18:24:01 -0700 | [diff] [blame] | 2176 | #ifdef SBUS_SUPPORT |
| 2177 | of_unregister_driver(&cs4231_driver); |
| 2178 | #endif |
| 2179 | |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2180 | while (p != NULL) { |
Takashi Iwai | be9b7e8 | 2006-01-03 13:42:38 +0100 | [diff] [blame] | 2181 | struct snd_cs4231 *next = p->next; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 2182 | |
| 2183 | snd_card_free(p->card); |
| 2184 | |
| 2185 | p = next; |
| 2186 | } |
| 2187 | |
| 2188 | cs4231_list = NULL; |
| 2189 | } |
| 2190 | |
| 2191 | module_init(cs4231_init); |
| 2192 | module_exit(cs4231_exit); |