2 * wm0010.c -- WM0010 DSP Driver
4 * Copyright 2012 Wolfson Microelectronics PLC.
6 * Authors: Mark Brown <broonie@opensource.wolfsonmicro.com>
7 * Dimitris Papastamos <dp@opensource.wolfsonmicro.com>
8 * Scott Ling <sl@opensource.wolfsonmicro.com>
10 * This program is free software; you can redistribute it and/or modify
11 * it under the terms of the GNU General Public License version 2 as
12 * published by the Free Software Foundation.
15 #include <linux/module.h>
16 #include <linux/moduleparam.h>
17 #include <linux/irqreturn.h>
18 #include <linux/init.h>
19 #include <linux/spi/spi.h>
20 #include <linux/firmware.h>
21 #include <linux/delay.h>
23 #include <linux/miscdevice.h>
24 #include <linux/gpio.h>
25 #include <linux/regulator/consumer.h>
26 #include <linux/mutex.h>
27 #include <linux/workqueue.h>
29 #include <sound/soc.h>
30 #include <sound/wm0010.h>
32 #define DEVICE_ID_WM0010 10
34 /* We only support v1 of the .dfw INFO record */
35 #define INFO_VERSION 1
54 u8 tool_major_version
;
55 u8 tool_minor_version
;
71 static struct pll_clock_map
{
73 int max_pll_spi_speed
;
75 } pll_clock_map
[] = { /* Dividers */
76 { 22000000, 26000000, 0x00201f11 }, /* 2,32,2 */
77 { 18000000, 26000000, 0x00203f21 }, /* 2,64,4 */
78 { 14000000, 26000000, 0x00202620 }, /* 1,39,4 */
79 { 10000000, 22000000, 0x00203120 }, /* 1,50,4 */
80 { 6500000, 22000000, 0x00204520 }, /* 1,70,4 */
81 { 5500000, 22000000, 0x00103f10 }, /* 1,64,2 */
93 struct snd_soc_codec
*codec
;
98 struct wm0010_pdata pdata
;
101 int gpio_reset_value
;
103 struct regulator_bulk_data core_supplies
[2];
104 struct regulator
*dbvdd
;
108 enum wm0010_state state
;
113 int board_max_spi_speed
;
119 struct completion boot_completion
;
122 struct wm0010_spi_msg
{
123 struct spi_message m
;
124 struct spi_transfer t
;
130 static const struct snd_soc_dapm_widget wm0010_dapm_widgets
[] = {
131 SND_SOC_DAPM_SUPPLY("CLKIN", SND_SOC_NOPM
, 0, 0, NULL
, 0),
134 static const struct snd_soc_dapm_route wm0010_dapm_routes
[] = {
135 { "SDI2 Capture", NULL
, "SDI1 Playback" },
136 { "SDI1 Capture", NULL
, "SDI2 Playback" },
138 { "SDI1 Capture", NULL
, "CLKIN" },
139 { "SDI2 Capture", NULL
, "CLKIN" },
140 { "SDI1 Playback", NULL
, "CLKIN" },
141 { "SDI2 Playback", NULL
, "CLKIN" },
144 static const char *wm0010_state_to_str(enum wm0010_state state
)
146 const char *state_to_str
[] = {
154 if (state
< 0 || state
>= ARRAY_SIZE(state_to_str
))
156 return state_to_str
[state
];
159 /* Called with wm0010->lock held */
160 static void wm0010_halt(struct snd_soc_codec
*codec
)
162 struct wm0010_priv
*wm0010
= snd_soc_codec_get_drvdata(codec
);
164 enum wm0010_state state
;
166 /* Fetch the wm0010 state */
167 spin_lock_irqsave(&wm0010
->irq_lock
, flags
);
168 state
= wm0010
->state
;
169 spin_unlock_irqrestore(&wm0010
->irq_lock
, flags
);
172 case WM0010_POWER_OFF
:
173 /* If there's nothing to do, bail out */
175 case WM0010_OUT_OF_RESET
:
178 case WM0010_FIRMWARE
:
179 /* Remember to put chip back into reset */
180 gpio_set_value_cansleep(wm0010
->gpio_reset
,
181 wm0010
->gpio_reset_value
);
182 /* Disable the regulators */
183 regulator_disable(wm0010
->dbvdd
);
184 regulator_bulk_disable(ARRAY_SIZE(wm0010
->core_supplies
),
185 wm0010
->core_supplies
);
189 spin_lock_irqsave(&wm0010
->irq_lock
, flags
);
190 wm0010
->state
= WM0010_POWER_OFF
;
191 spin_unlock_irqrestore(&wm0010
->irq_lock
, flags
);
194 struct wm0010_boot_xfer
{
195 struct list_head list
;
196 struct snd_soc_codec
*codec
;
197 struct completion
*done
;
198 struct spi_message m
;
199 struct spi_transfer t
;
202 /* Called with wm0010->lock held */
203 static void wm0010_mark_boot_failure(struct wm0010_priv
*wm0010
)
205 enum wm0010_state state
;
208 spin_lock_irqsave(&wm0010
->irq_lock
, flags
);
209 state
= wm0010
->state
;
210 spin_unlock_irqrestore(&wm0010
->irq_lock
, flags
);
212 dev_err(wm0010
->dev
, "Failed to transition from `%s' state to `%s' state\n",
213 wm0010_state_to_str(state
), wm0010_state_to_str(state
+ 1));
215 wm0010
->boot_failed
= true;
218 static void wm0010_boot_xfer_complete(void *data
)
220 struct wm0010_boot_xfer
*xfer
= data
;
221 struct snd_soc_codec
*codec
= xfer
->codec
;
222 struct wm0010_priv
*wm0010
= snd_soc_codec_get_drvdata(codec
);
223 u32
*out32
= xfer
->t
.rx_buf
;
226 if (xfer
->m
.status
!= 0) {
227 dev_err(codec
->dev
, "SPI transfer failed: %d\n",
229 wm0010_mark_boot_failure(wm0010
);
231 complete(xfer
->done
);
235 for (i
= 0; i
< xfer
->t
.len
/ 4; i
++) {
236 dev_dbg(codec
->dev
, "%d: %04x\n", i
, out32
[i
]);
238 switch (be32_to_cpu(out32
[i
])) {
241 "%d: ROM error reported in stage 2\n", i
);
242 wm0010_mark_boot_failure(wm0010
);
246 if (wm0010
->state
< WM0010_STAGE2
)
249 "%d: ROM bootloader running in stage 2\n", i
);
250 wm0010_mark_boot_failure(wm0010
);
254 dev_dbg(codec
->dev
, "Stage2 loader running\n");
258 dev_dbg(codec
->dev
, "CODE_HDR packet received\n");
262 dev_dbg(codec
->dev
, "CODE_DATA packet received\n");
266 dev_dbg(codec
->dev
, "Download complete\n");
270 dev_dbg(codec
->dev
, "Application start\n");
274 dev_dbg(codec
->dev
, "PLL packet received\n");
275 wm0010
->pll_running
= true;
279 dev_err(codec
->dev
, "Device reports image too long\n");
280 wm0010_mark_boot_failure(wm0010
);
284 dev_err(codec
->dev
, "Device reports bad SPI packet\n");
285 wm0010_mark_boot_failure(wm0010
);
289 dev_err(codec
->dev
, "Device reports SPI read overflow\n");
290 wm0010_mark_boot_failure(wm0010
);
294 dev_err(codec
->dev
, "Device reports SPI underclock\n");
295 wm0010_mark_boot_failure(wm0010
);
299 dev_err(codec
->dev
, "Device reports bad header packet\n");
300 wm0010_mark_boot_failure(wm0010
);
304 dev_err(codec
->dev
, "Device reports invalid packet type\n");
305 wm0010_mark_boot_failure(wm0010
);
309 dev_err(codec
->dev
, "Device reports data before header error\n");
310 wm0010_mark_boot_failure(wm0010
);
314 dev_err(codec
->dev
, "Device reports invalid PLL packet\n");
318 dev_err(codec
->dev
, "Device reports packet alignment error\n");
319 wm0010_mark_boot_failure(wm0010
);
323 dev_err(codec
->dev
, "Unrecognised return 0x%x\n",
324 be32_to_cpu(out32
[i
]));
325 wm0010_mark_boot_failure(wm0010
);
329 if (wm0010
->boot_failed
)
334 complete(xfer
->done
);
337 static void byte_swap_64(u64
*data_in
, u64
*data_out
, u32 len
)
341 for (i
= 0; i
< len
/ 8; i
++)
342 data_out
[i
] = cpu_to_be64(le64_to_cpu(data_in
[i
]));
345 static int wm0010_firmware_load(char *name
, struct snd_soc_codec
*codec
)
347 struct spi_device
*spi
= to_spi_device(codec
->dev
);
348 struct wm0010_priv
*wm0010
= snd_soc_codec_get_drvdata(codec
);
349 struct list_head xfer_list
;
350 struct wm0010_boot_xfer
*xfer
;
352 struct completion done
;
353 const struct firmware
*fw
;
354 const struct dfw_binrec
*rec
;
355 const struct dfw_inforec
*inforec
;
360 INIT_LIST_HEAD(&xfer_list
);
362 ret
= request_firmware(&fw
, name
, codec
->dev
);
364 dev_err(codec
->dev
, "Failed to request application: %d\n",
369 rec
= (const struct dfw_binrec
*)fw
->data
;
370 inforec
= (const struct dfw_inforec
*)rec
->data
;
372 dsp
= inforec
->dsp_target
;
373 wm0010
->boot_failed
= false;
374 BUG_ON(!list_empty(&xfer_list
));
375 init_completion(&done
);
377 /* First record should be INFO */
378 if (rec
->command
!= DFW_CMD_INFO
) {
379 dev_err(codec
->dev
, "First record not INFO\r\n");
384 if (inforec
->info_version
!= INFO_VERSION
) {
386 "Unsupported version (%02d) of INFO record\r\n",
387 inforec
->info_version
);
392 dev_dbg(codec
->dev
, "Version v%02d INFO record found\r\n",
393 inforec
->info_version
);
395 /* Check it's a DSP file */
396 if (dsp
!= DEVICE_ID_WM0010
) {
397 dev_err(codec
->dev
, "Not a WM0010 firmware file.\r\n");
402 /* Skip the info record as we don't need to send it */
403 offset
+= ((rec
->length
) + 8);
404 rec
= (void *)&rec
->data
[rec
->length
];
406 while (offset
< fw
->size
) {
408 "Packet: command %d, data length = 0x%x\r\n",
409 rec
->command
, rec
->length
);
410 len
= rec
->length
+ 8;
412 out
= kzalloc(len
, GFP_KERNEL
);
415 "Failed to allocate RX buffer\n");
420 img
= kzalloc(len
, GFP_KERNEL
);
423 "Failed to allocate image buffer\n");
428 byte_swap_64((u64
*)&rec
->command
, img
, len
);
430 xfer
= kzalloc(sizeof(*xfer
), GFP_KERNEL
);
432 dev_err(codec
->dev
, "Failed to allocate xfer\n");
438 list_add_tail(&xfer
->list
, &xfer_list
);
440 spi_message_init(&xfer
->m
);
441 xfer
->m
.complete
= wm0010_boot_xfer_complete
;
442 xfer
->m
.context
= xfer
;
443 xfer
->t
.tx_buf
= img
;
444 xfer
->t
.rx_buf
= out
;
446 xfer
->t
.bits_per_word
= 8;
448 if (!wm0010
->pll_running
) {
449 xfer
->t
.speed_hz
= wm0010
->sysclk
/ 6;
451 xfer
->t
.speed_hz
= wm0010
->max_spi_freq
;
453 if (wm0010
->board_max_spi_speed
&&
454 (wm0010
->board_max_spi_speed
< wm0010
->max_spi_freq
))
455 xfer
->t
.speed_hz
= wm0010
->board_max_spi_speed
;
458 /* Store max usable spi frequency for later use */
459 wm0010
->max_spi_freq
= xfer
->t
.speed_hz
;
461 spi_message_add_tail(&xfer
->t
, &xfer
->m
);
463 offset
+= ((rec
->length
) + 8);
464 rec
= (void *)&rec
->data
[rec
->length
];
466 if (offset
>= fw
->size
) {
467 dev_dbg(codec
->dev
, "All transfers scheduled\n");
471 ret
= spi_async(spi
, &xfer
->m
);
473 dev_err(codec
->dev
, "Write failed: %d\n", ret
);
477 if (wm0010
->boot_failed
) {
478 dev_dbg(codec
->dev
, "Boot fail!\n");
484 wait_for_completion(&done
);
489 while (!list_empty(&xfer_list
)) {
490 xfer
= list_first_entry(&xfer_list
, struct wm0010_boot_xfer
,
492 kfree(xfer
->t
.rx_buf
);
493 kfree(xfer
->t
.tx_buf
);
494 list_del(&xfer
->list
);
499 release_firmware(fw
);
503 static int wm0010_stage2_load(struct snd_soc_codec
*codec
)
505 struct spi_device
*spi
= to_spi_device(codec
->dev
);
506 struct wm0010_priv
*wm0010
= snd_soc_codec_get_drvdata(codec
);
507 const struct firmware
*fw
;
508 struct spi_message m
;
509 struct spi_transfer t
;
515 ret
= request_firmware(&fw
, "wm0010_stage2.bin", codec
->dev
);
517 dev_err(codec
->dev
, "Failed to request stage2 loader: %d\n",
522 dev_dbg(codec
->dev
, "Downloading %zu byte stage 2 loader\n", fw
->size
);
524 /* Copy to local buffer first as vmalloc causes problems for dma */
525 img
= kzalloc(fw
->size
, GFP_KERNEL
);
527 dev_err(codec
->dev
, "Failed to allocate image buffer\n");
532 out
= kzalloc(fw
->size
, GFP_KERNEL
);
534 dev_err(codec
->dev
, "Failed to allocate output buffer\n");
539 memcpy(img
, &fw
->data
[0], fw
->size
);
541 spi_message_init(&m
);
542 memset(&t
, 0, sizeof(t
));
547 t
.speed_hz
= wm0010
->sysclk
/ 10;
548 spi_message_add_tail(&t
, &m
);
550 dev_dbg(codec
->dev
, "Starting initial download at %dHz\n",
553 ret
= spi_sync(spi
, &m
);
555 dev_err(codec
->dev
, "Initial download failed: %d\n", ret
);
559 /* Look for errors from the boot ROM */
560 for (i
= 0; i
< fw
->size
; i
++) {
561 if (out
[i
] != 0x55) {
562 dev_err(codec
->dev
, "Boot ROM error: %x in %d\n",
564 wm0010_mark_boot_failure(wm0010
);
574 release_firmware(fw
);
579 static int wm0010_boot(struct snd_soc_codec
*codec
)
581 struct spi_device
*spi
= to_spi_device(codec
->dev
);
582 struct wm0010_priv
*wm0010
= snd_soc_codec_get_drvdata(codec
);
585 const struct firmware
*fw
;
586 struct spi_message m
;
587 struct spi_transfer t
;
588 struct dfw_pllrec pll_rec
;
594 spin_lock_irqsave(&wm0010
->irq_lock
, flags
);
595 if (wm0010
->state
!= WM0010_POWER_OFF
)
596 dev_warn(wm0010
->dev
, "DSP already powered up!\n");
597 spin_unlock_irqrestore(&wm0010
->irq_lock
, flags
);
599 if (wm0010
->sysclk
> 26000000) {
600 dev_err(codec
->dev
, "Max DSP clock frequency is 26MHz\n");
605 mutex_lock(&wm0010
->lock
);
606 wm0010
->pll_running
= false;
608 dev_dbg(codec
->dev
, "max_spi_freq: %d\n", wm0010
->max_spi_freq
);
610 ret
= regulator_bulk_enable(ARRAY_SIZE(wm0010
->core_supplies
),
611 wm0010
->core_supplies
);
613 dev_err(&spi
->dev
, "Failed to enable core supplies: %d\n",
615 mutex_unlock(&wm0010
->lock
);
619 ret
= regulator_enable(wm0010
->dbvdd
);
621 dev_err(&spi
->dev
, "Failed to enable DBVDD: %d\n", ret
);
626 gpio_set_value_cansleep(wm0010
->gpio_reset
, !wm0010
->gpio_reset_value
);
627 spin_lock_irqsave(&wm0010
->irq_lock
, flags
);
628 wm0010
->state
= WM0010_OUT_OF_RESET
;
629 spin_unlock_irqrestore(&wm0010
->irq_lock
, flags
);
631 /* First the bootloader */
632 ret
= request_firmware(&fw
, "wm0010_stage2.bin", codec
->dev
);
634 dev_err(codec
->dev
, "Failed to request stage2 loader: %d\n",
639 if (!wait_for_completion_timeout(&wm0010
->boot_completion
,
640 msecs_to_jiffies(20)))
641 dev_err(codec
->dev
, "Failed to get interrupt from DSP\n");
643 spin_lock_irqsave(&wm0010
->irq_lock
, flags
);
644 wm0010
->state
= WM0010_BOOTROM
;
645 spin_unlock_irqrestore(&wm0010
->irq_lock
, flags
);
647 ret
= wm0010_stage2_load(codec
);
651 if (!wait_for_completion_timeout(&wm0010
->boot_completion
,
652 msecs_to_jiffies(20)))
653 dev_err(codec
->dev
, "Failed to get interrupt from DSP loader.\n");
655 spin_lock_irqsave(&wm0010
->irq_lock
, flags
);
656 wm0010
->state
= WM0010_STAGE2
;
657 spin_unlock_irqrestore(&wm0010
->irq_lock
, flags
);
659 /* Only initialise PLL if max_spi_freq initialised */
660 if (wm0010
->max_spi_freq
) {
662 /* Initialise a PLL record */
663 memset(&pll_rec
, 0, sizeof(pll_rec
));
664 pll_rec
.command
= DFW_CMD_PLL
;
665 pll_rec
.length
= (sizeof(pll_rec
) - 8);
667 /* On wm0010 only the CLKCTRL1 value is used */
668 pll_rec
.clkctrl1
= wm0010
->pll_clkctrl1
;
670 len
= pll_rec
.length
+ 8;
671 out
= kzalloc(len
, GFP_KERNEL
);
674 "Failed to allocate RX buffer\n");
678 img_swap
= kzalloc(len
, GFP_KERNEL
);
681 "Failed to allocate image buffer\n");
685 /* We need to re-order for 0010 */
686 byte_swap_64((u64
*)&pll_rec
, img_swap
, len
);
688 spi_message_init(&m
);
689 memset(&t
, 0, sizeof(t
));
694 t
.speed_hz
= wm0010
->sysclk
/ 6;
695 spi_message_add_tail(&t
, &m
);
697 ret
= spi_sync(spi
, &m
);
699 dev_err(codec
->dev
, "First PLL write failed: %d\n", ret
);
703 /* Use a second send of the message to get the return status */
704 ret
= spi_sync(spi
, &m
);
706 dev_err(codec
->dev
, "Second PLL write failed: %d\n", ret
);
712 /* Look for PLL active code from the DSP */
713 for (i
= 0; i
< len
/ 4; i
++) {
714 if (*p
== 0x0e00ed0f) {
715 dev_dbg(codec
->dev
, "PLL packet received\n");
716 wm0010
->pll_running
= true;
725 dev_dbg(codec
->dev
, "Not enabling DSP PLL.");
727 ret
= wm0010_firmware_load("wm0010.dfw", codec
);
732 spin_lock_irqsave(&wm0010
->irq_lock
, flags
);
733 wm0010
->state
= WM0010_FIRMWARE
;
734 spin_unlock_irqrestore(&wm0010
->irq_lock
, flags
);
736 mutex_unlock(&wm0010
->lock
);
741 /* Put the chip back into reset */
743 mutex_unlock(&wm0010
->lock
);
747 mutex_unlock(&wm0010
->lock
);
748 regulator_bulk_disable(ARRAY_SIZE(wm0010
->core_supplies
),
749 wm0010
->core_supplies
);
754 static int wm0010_set_bias_level(struct snd_soc_codec
*codec
,
755 enum snd_soc_bias_level level
)
757 struct wm0010_priv
*wm0010
= snd_soc_codec_get_drvdata(codec
);
760 case SND_SOC_BIAS_ON
:
761 if (codec
->dapm
.bias_level
== SND_SOC_BIAS_PREPARE
)
764 case SND_SOC_BIAS_PREPARE
:
766 case SND_SOC_BIAS_STANDBY
:
767 if (codec
->dapm
.bias_level
== SND_SOC_BIAS_PREPARE
) {
768 mutex_lock(&wm0010
->lock
);
770 mutex_unlock(&wm0010
->lock
);
773 case SND_SOC_BIAS_OFF
:
777 codec
->dapm
.bias_level
= level
;
782 static int wm0010_set_sysclk(struct snd_soc_codec
*codec
, int source
,
783 int clk_id
, unsigned int freq
, int dir
)
785 struct wm0010_priv
*wm0010
= snd_soc_codec_get_drvdata(codec
);
788 wm0010
->sysclk
= freq
;
790 if (freq
< pll_clock_map
[ARRAY_SIZE(pll_clock_map
)-1].max_sysclk
) {
791 wm0010
->max_spi_freq
= 0;
793 for (i
= 0; i
< ARRAY_SIZE(pll_clock_map
); i
++)
794 if (freq
>= pll_clock_map
[i
].max_sysclk
)
797 wm0010
->max_spi_freq
= pll_clock_map
[i
].max_pll_spi_speed
;
798 wm0010
->pll_clkctrl1
= pll_clock_map
[i
].pll_clkctrl1
;
804 static int wm0010_probe(struct snd_soc_codec
*codec
);
806 static struct snd_soc_codec_driver soc_codec_dev_wm0010
= {
807 .probe
= wm0010_probe
,
808 .set_bias_level
= wm0010_set_bias_level
,
809 .set_sysclk
= wm0010_set_sysclk
,
810 .idle_bias_off
= true,
812 .dapm_widgets
= wm0010_dapm_widgets
,
813 .num_dapm_widgets
= ARRAY_SIZE(wm0010_dapm_widgets
),
814 .dapm_routes
= wm0010_dapm_routes
,
815 .num_dapm_routes
= ARRAY_SIZE(wm0010_dapm_routes
),
818 #define WM0010_RATES (SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000)
819 #define WM0010_FORMATS (SNDRV_PCM_FMTBIT_S8 | SNDRV_PCM_FMTBIT_S16_LE |\
820 SNDRV_PCM_FMTBIT_S20_3LE | SNDRV_PCM_FMTBIT_S24_LE |\
821 SNDRV_PCM_FMTBIT_S32_LE)
823 static struct snd_soc_dai_driver wm0010_dai
[] = {
825 .name
= "wm0010-sdi1",
827 .stream_name
= "SDI1 Playback",
830 .rates
= WM0010_RATES
,
831 .formats
= WM0010_FORMATS
,
834 .stream_name
= "SDI1 Capture",
837 .rates
= WM0010_RATES
,
838 .formats
= WM0010_FORMATS
,
842 .name
= "wm0010-sdi2",
844 .stream_name
= "SDI2 Playback",
847 .rates
= WM0010_RATES
,
848 .formats
= WM0010_FORMATS
,
851 .stream_name
= "SDI2 Capture",
854 .rates
= WM0010_RATES
,
855 .formats
= WM0010_FORMATS
,
860 static irqreturn_t
wm0010_irq(int irq
, void *data
)
862 struct wm0010_priv
*wm0010
= data
;
864 switch (wm0010
->state
) {
865 case WM0010_OUT_OF_RESET
:
868 spin_lock(&wm0010
->irq_lock
);
869 complete(&wm0010
->boot_completion
);
870 spin_unlock(&wm0010
->irq_lock
);
879 static int wm0010_probe(struct snd_soc_codec
*codec
)
881 struct wm0010_priv
*wm0010
= snd_soc_codec_get_drvdata(codec
);
883 wm0010
->codec
= codec
;
888 static int wm0010_spi_probe(struct spi_device
*spi
)
890 unsigned long gpio_flags
;
894 struct wm0010_priv
*wm0010
;
896 wm0010
= devm_kzalloc(&spi
->dev
, sizeof(*wm0010
),
901 mutex_init(&wm0010
->lock
);
902 spin_lock_init(&wm0010
->irq_lock
);
904 spi_set_drvdata(spi
, wm0010
);
905 wm0010
->dev
= &spi
->dev
;
907 if (dev_get_platdata(&spi
->dev
))
908 memcpy(&wm0010
->pdata
, dev_get_platdata(&spi
->dev
),
909 sizeof(wm0010
->pdata
));
911 init_completion(&wm0010
->boot_completion
);
913 wm0010
->core_supplies
[0].supply
= "AVDD";
914 wm0010
->core_supplies
[1].supply
= "DCVDD";
915 ret
= devm_regulator_bulk_get(wm0010
->dev
, ARRAY_SIZE(wm0010
->core_supplies
),
916 wm0010
->core_supplies
);
918 dev_err(wm0010
->dev
, "Failed to obtain core supplies: %d\n",
923 wm0010
->dbvdd
= devm_regulator_get(wm0010
->dev
, "DBVDD");
924 if (IS_ERR(wm0010
->dbvdd
)) {
925 ret
= PTR_ERR(wm0010
->dbvdd
);
926 dev_err(wm0010
->dev
, "Failed to obtain DBVDD: %d\n", ret
);
930 if (wm0010
->pdata
.gpio_reset
) {
931 wm0010
->gpio_reset
= wm0010
->pdata
.gpio_reset
;
933 if (wm0010
->pdata
.reset_active_high
)
934 wm0010
->gpio_reset_value
= 1;
936 wm0010
->gpio_reset_value
= 0;
938 if (wm0010
->gpio_reset_value
)
939 gpio_flags
= GPIOF_OUT_INIT_HIGH
;
941 gpio_flags
= GPIOF_OUT_INIT_LOW
;
943 ret
= devm_gpio_request_one(wm0010
->dev
, wm0010
->gpio_reset
,
944 gpio_flags
, "wm0010 reset");
947 "Failed to request GPIO for DSP reset: %d\n",
952 dev_err(wm0010
->dev
, "No reset GPIO configured\n");
956 wm0010
->state
= WM0010_POWER_OFF
;
959 if (wm0010
->pdata
.irq_flags
)
960 trigger
= wm0010
->pdata
.irq_flags
;
962 trigger
= IRQF_TRIGGER_FALLING
;
963 trigger
|= IRQF_ONESHOT
;
965 ret
= request_threaded_irq(irq
, NULL
, wm0010_irq
, trigger
| IRQF_ONESHOT
,
968 dev_err(wm0010
->dev
, "Failed to request IRQ %d: %d\n",
974 if (spi
->max_speed_hz
)
975 wm0010
->board_max_spi_speed
= spi
->max_speed_hz
;
977 wm0010
->board_max_spi_speed
= 0;
979 ret
= snd_soc_register_codec(&spi
->dev
,
980 &soc_codec_dev_wm0010
, wm0010_dai
,
981 ARRAY_SIZE(wm0010_dai
));
988 static int wm0010_spi_remove(struct spi_device
*spi
)
990 struct wm0010_priv
*wm0010
= spi_get_drvdata(spi
);
992 snd_soc_unregister_codec(&spi
->dev
);
994 gpio_set_value_cansleep(wm0010
->gpio_reset
,
995 wm0010
->gpio_reset_value
);
998 free_irq(wm0010
->irq
, wm0010
);
1003 static struct spi_driver wm0010_spi_driver
= {
1006 .bus
= &spi_bus_type
,
1007 .owner
= THIS_MODULE
,
1009 .probe
= wm0010_spi_probe
,
1010 .remove
= wm0010_spi_remove
,
1013 module_spi_driver(wm0010_spi_driver
);
1015 MODULE_DESCRIPTION("ASoC WM0010 driver");
1016 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
1017 MODULE_LICENSE("GPL");