Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 1 | /* |
| 2 | * File: sound/soc/blackfin/bf5xx-ad1836.c |
| 3 | * Author: Barry Song <Barry.Song@analog.com> |
| 4 | * |
| 5 | * Created: Aug 4 2009 |
| 6 | * Description: Board driver for ad1836 sound chip |
| 7 | * |
| 8 | * Bugs: Enter bugs at http://blackfin.uclinux.org/ |
| 9 | * |
| 10 | * This program is free software; you can redistribute it and/or modify |
| 11 | * it under the terms of the GNU General Public License as published by |
| 12 | * the Free Software Foundation; either version 2 of the License, or |
| 13 | * (at your option) any later version. |
| 14 | * |
| 15 | */ |
| 16 | |
| 17 | #include <linux/module.h> |
| 18 | #include <linux/moduleparam.h> |
| 19 | #include <linux/device.h> |
| 20 | #include <sound/core.h> |
| 21 | #include <sound/pcm.h> |
| 22 | #include <sound/soc.h> |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 23 | #include <sound/pcm_params.h> |
| 24 | |
| 25 | #include <asm/blackfin.h> |
| 26 | #include <asm/cacheflush.h> |
| 27 | #include <asm/irq.h> |
| 28 | #include <asm/dma.h> |
| 29 | #include <asm/portmux.h> |
| 30 | |
| 31 | #include "../codecs/ad1836.h" |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 32 | |
| 33 | #include "bf5xx-tdm-pcm.h" |
| 34 | #include "bf5xx-tdm.h" |
| 35 | |
| 36 | static struct snd_soc_card bf5xx_ad1836; |
| 37 | |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 38 | static int bf5xx_ad1836_hw_params(struct snd_pcm_substream *substream, |
| 39 | struct snd_pcm_hw_params *params) |
| 40 | { |
| 41 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 42 | struct snd_soc_dai *cpu_dai = rtd->cpu_dai; |
Barry Song | 08db48f | 2009-09-15 11:24:52 +0800 | [diff] [blame] | 43 | unsigned int channel_map[] = {0, 4, 1, 5, 2, 6, 3, 7}; |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 44 | int ret = 0; |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 45 | |
Barry Song | 08db48f | 2009-09-15 11:24:52 +0800 | [diff] [blame] | 46 | /* set cpu DAI channel mapping */ |
| 47 | ret = snd_soc_dai_set_channel_map(cpu_dai, ARRAY_SIZE(channel_map), |
| 48 | channel_map, ARRAY_SIZE(channel_map), channel_map); |
| 49 | if (ret < 0) |
| 50 | return ret; |
| 51 | |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 52 | return 0; |
| 53 | } |
| 54 | |
| 55 | static struct snd_soc_ops bf5xx_ad1836_ops = { |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 56 | .hw_params = bf5xx_ad1836_hw_params, |
| 57 | }; |
| 58 | |
Lars-Peter Clausen | 980b0bc | 2012-02-01 19:24:21 +0100 | [diff] [blame] | 59 | #define BF5XX_AD1836_DAIFMT (SND_SOC_DAIFMT_DSP_A | SND_SOC_DAIFMT_IB_IF | \ |
| 60 | SND_SOC_DAIFMT_CBM_CFM) |
| 61 | |
Scott Jiang | d14a13d | 2012-08-10 18:06:08 -0400 | [diff] [blame] | 62 | static struct snd_soc_dai_link bf5xx_ad1836_dai = { |
| 63 | .name = "ad1836", |
| 64 | .stream_name = "AD1836", |
| 65 | .codec_dai_name = "ad1836-hifi", |
| 66 | .platform_name = "bfin-tdm-pcm-audio", |
| 67 | .ops = &bf5xx_ad1836_ops, |
| 68 | .dai_fmt = BF5XX_AD1836_DAIFMT, |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 69 | }; |
| 70 | |
| 71 | static struct snd_soc_card bf5xx_ad1836 = { |
Mike Frysinger | bfe4ee0 | 2011-03-28 01:45:09 -0400 | [diff] [blame] | 72 | .name = "bfin-ad1836", |
Axel Lin | 30e4953 | 2011-12-22 21:17:22 +0800 | [diff] [blame] | 73 | .owner = THIS_MODULE, |
Scott Jiang | d14a13d | 2012-08-10 18:06:08 -0400 | [diff] [blame] | 74 | .dai_link = &bf5xx_ad1836_dai, |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 75 | .num_links = 1, |
| 76 | }; |
| 77 | |
Bill Pemberton | dca66da | 2012-12-07 09:26:13 -0500 | [diff] [blame^] | 78 | static int bf5xx_ad1836_driver_probe(struct platform_device *pdev) |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 79 | { |
Scott Jiang | d14a13d | 2012-08-10 18:06:08 -0400 | [diff] [blame] | 80 | struct snd_soc_card *card = &bf5xx_ad1836; |
| 81 | const char **link_name; |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 82 | int ret; |
| 83 | |
Scott Jiang | d14a13d | 2012-08-10 18:06:08 -0400 | [diff] [blame] | 84 | link_name = pdev->dev.platform_data; |
| 85 | if (!link_name) { |
| 86 | dev_err(&pdev->dev, "No platform data supplied\n"); |
| 87 | return -EINVAL; |
| 88 | } |
| 89 | bf5xx_ad1836_dai.cpu_dai_name = link_name[0]; |
| 90 | bf5xx_ad1836_dai.codec_name = link_name[1]; |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 91 | |
Scott Jiang | d14a13d | 2012-08-10 18:06:08 -0400 | [diff] [blame] | 92 | card->dev = &pdev->dev; |
| 93 | platform_set_drvdata(pdev, card); |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 94 | |
Scott Jiang | d14a13d | 2012-08-10 18:06:08 -0400 | [diff] [blame] | 95 | ret = snd_soc_register_card(card); |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 96 | if (ret) |
Scott Jiang | d14a13d | 2012-08-10 18:06:08 -0400 | [diff] [blame] | 97 | dev_err(&pdev->dev, "Failed to register card\n"); |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 98 | return ret; |
| 99 | } |
| 100 | |
Bill Pemberton | dca66da | 2012-12-07 09:26:13 -0500 | [diff] [blame^] | 101 | static int bf5xx_ad1836_driver_remove(struct platform_device *pdev) |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 102 | { |
Scott Jiang | d14a13d | 2012-08-10 18:06:08 -0400 | [diff] [blame] | 103 | struct snd_soc_card *card = platform_get_drvdata(pdev); |
| 104 | |
| 105 | snd_soc_unregister_card(card); |
| 106 | return 0; |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 107 | } |
| 108 | |
Scott Jiang | d14a13d | 2012-08-10 18:06:08 -0400 | [diff] [blame] | 109 | static struct platform_driver bf5xx_ad1836_driver = { |
| 110 | .driver = { |
| 111 | .name = "bfin-snd-ad1836", |
| 112 | .owner = THIS_MODULE, |
| 113 | .pm = &snd_soc_pm_ops, |
| 114 | }, |
| 115 | .probe = bf5xx_ad1836_driver_probe, |
Bill Pemberton | dca66da | 2012-12-07 09:26:13 -0500 | [diff] [blame^] | 116 | .remove = bf5xx_ad1836_driver_remove, |
Scott Jiang | d14a13d | 2012-08-10 18:06:08 -0400 | [diff] [blame] | 117 | }; |
| 118 | module_platform_driver(bf5xx_ad1836_driver); |
Barry Song | dce944d | 2009-09-01 12:45:14 +0800 | [diff] [blame] | 119 | |
| 120 | /* Module information */ |
| 121 | MODULE_AUTHOR("Barry Song"); |
| 122 | MODULE_DESCRIPTION("ALSA SoC AD1836 board driver"); |
| 123 | MODULE_LICENSE("GPL"); |
| 124 | |