Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 1 | /* |
| 2 | * ad73311.c -- ALSA Soc AD73311 codec support |
| 3 | * |
| 4 | * Copyright: Analog Device Inc. |
| 5 | * Author: Cliff Cai <cliff.cai@analog.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or modify it |
| 8 | * under the terms of the GNU General Public License as published by the |
| 9 | * Free Software Foundation; either version 2 of the License, or (at your |
| 10 | * option) any later version. |
Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 11 | */ |
| 12 | |
| 13 | #include <linux/init.h> |
Tejun Heo | 5a0e3ad | 2010-03-24 17:04:11 +0900 | [diff] [blame] | 14 | #include <linux/slab.h> |
Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 15 | #include <linux/module.h> |
Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 16 | #include <linux/kernel.h> |
| 17 | #include <linux/device.h> |
| 18 | #include <sound/core.h> |
| 19 | #include <sound/pcm.h> |
| 20 | #include <sound/ac97_codec.h> |
| 21 | #include <sound/initval.h> |
| 22 | #include <sound/soc.h> |
| 23 | |
| 24 | #include "ad73311.h" |
| 25 | |
Mark Brown | 827d22f | 2013-08-07 17:59:51 +0100 | [diff] [blame] | 26 | static const struct snd_soc_dapm_widget ad73311_dapm_widgets[] = { |
| 27 | SND_SOC_DAPM_INPUT("VINP"), |
| 28 | SND_SOC_DAPM_INPUT("VINN"), |
| 29 | SND_SOC_DAPM_OUTPUT("VOUTN"), |
| 30 | SND_SOC_DAPM_OUTPUT("VOUTP"), |
| 31 | }; |
| 32 | |
| 33 | static const struct snd_soc_dapm_route ad73311_dapm_routes[] = { |
| 34 | { "Capture", NULL, "VINP" }, |
| 35 | { "Capture", NULL, "VINN" }, |
| 36 | |
| 37 | { "VOUTN", NULL, "Playback" }, |
| 38 | { "VOUTP", NULL, "Playback" }, |
| 39 | }; |
| 40 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 41 | static struct snd_soc_dai_driver ad73311_dai = { |
| 42 | .name = "ad73311-hifi", |
Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 43 | .playback = { |
| 44 | .stream_name = "Playback", |
| 45 | .channels_min = 1, |
| 46 | .channels_max = 1, |
| 47 | .rates = SNDRV_PCM_RATE_8000, |
| 48 | .formats = SNDRV_PCM_FMTBIT_S16_LE, }, |
| 49 | .capture = { |
| 50 | .stream_name = "Capture", |
| 51 | .channels_min = 1, |
| 52 | .channels_max = 1, |
| 53 | .rates = SNDRV_PCM_RATE_8000, |
| 54 | .formats = SNDRV_PCM_FMTBIT_S16_LE, }, |
| 55 | }; |
Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 56 | |
Mark Brown | 827d22f | 2013-08-07 17:59:51 +0100 | [diff] [blame] | 57 | static struct snd_soc_codec_driver soc_codec_dev_ad73311 = { |
| 58 | .dapm_widgets = ad73311_dapm_widgets, |
| 59 | .num_dapm_widgets = ARRAY_SIZE(ad73311_dapm_widgets), |
| 60 | .dapm_routes = ad73311_dapm_routes, |
| 61 | .num_dapm_routes = ARRAY_SIZE(ad73311_dapm_routes), |
| 62 | }; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 63 | |
| 64 | static int ad73311_probe(struct platform_device *pdev) |
Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 65 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 66 | return snd_soc_register_codec(&pdev->dev, |
| 67 | &soc_codec_dev_ad73311, &ad73311_dai, 1); |
Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 68 | } |
| 69 | |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 70 | static int ad73311_remove(struct platform_device *pdev) |
Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 71 | { |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 72 | snd_soc_unregister_codec(&pdev->dev); |
Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 73 | return 0; |
| 74 | } |
| 75 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 76 | static struct platform_driver ad73311_codec_driver = { |
| 77 | .driver = { |
Mike Frysinger | 370fd17 | 2011-03-27 00:44:11 -0400 | [diff] [blame] | 78 | .name = "ad73311", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 79 | .owner = THIS_MODULE, |
| 80 | }, |
| 81 | |
| 82 | .probe = ad73311_probe, |
Bill Pemberton | 7a79e94 | 2012-12-07 09:26:37 -0500 | [diff] [blame] | 83 | .remove = ad73311_remove, |
Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 84 | }; |
Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 85 | |
Mark Brown | 5bbcc3c | 2011-11-23 22:52:08 +0000 | [diff] [blame] | 86 | module_platform_driver(ad73311_codec_driver); |
Mark Brown | 64089b8 | 2008-12-08 19:17:58 +0000 | [diff] [blame] | 87 | |
Cliff Cai | 0e77e78 | 2008-09-27 16:57:26 +0800 | [diff] [blame] | 88 | MODULE_DESCRIPTION("ASoC ad73311 driver"); |
| 89 | MODULE_AUTHOR("Cliff Cai "); |
| 90 | MODULE_LICENSE("GPL"); |