Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 1 | /* |
| 2 | * smdk_wm9713.c -- SoC audio for SMDK |
| 3 | * |
| 4 | * Copyright 2010 Samsung Electronics Co. Ltd. |
| 5 | * Author: Jaswinder Singh Brar <jassi.brar@samsung.com> |
| 6 | * |
| 7 | * This program is free software; you can redistribute it and/or |
| 8 | * modify it under the terms of the GNU General Public License as |
| 9 | * published by the Free Software Foundation; either version 2 of the |
| 10 | * License, or (at your option) any later version. |
| 11 | * |
| 12 | */ |
| 13 | |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 14 | #include <sound/soc.h> |
| 15 | |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 16 | static struct snd_soc_card smdk; |
| 17 | |
| 18 | /* |
Mark Brown | 583b2be | 2010-01-27 20:54:13 +0000 | [diff] [blame] | 19 | * Default CFG switch settings to use this driver: |
| 20 | * |
| 21 | * SMDK6410: Set CFG1 1-3 On, CFG2 1-4 Off |
Jassi Brar | 3dedece | 2010-05-27 12:11:31 +0900 | [diff] [blame] | 22 | * SMDKC100: Set CFG6 1-3 On, CFG7 1 On |
Jassi Brar | ce1f7d3 | 2010-05-27 12:11:44 +0900 | [diff] [blame] | 23 | * SMDKC110: Set CFGB10 1-2 Off, CFGB12 1-3 On |
| 24 | * SMDKV210: Set CFGB10 1-2 Off, CFGB12 1-3 On |
Jassi Brar | 4d81acf | 2010-12-20 11:05:56 +0900 | [diff] [blame] | 25 | * SMDKV310: Set CFG2 1-2 Off, CFG4 All On, CFG7 All Off, CFG8 1-On |
Mark Brown | 583b2be | 2010-01-27 20:54:13 +0000 | [diff] [blame] | 26 | */ |
| 27 | |
| 28 | /* |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 29 | Playback (HeadPhone):- |
Jassi Brar | 9e9d04c0 | 2010-01-29 10:57:07 +0900 | [diff] [blame] | 30 | $ amixer sset 'Headphone' unmute |
| 31 | $ amixer sset 'Right Headphone Out Mux' 'Headphone' |
| 32 | $ amixer sset 'Left Headphone Out Mux' 'Headphone' |
| 33 | $ amixer sset 'Right HP Mixer PCM' unmute |
| 34 | $ amixer sset 'Left HP Mixer PCM' unmute |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 35 | |
| 36 | Capture (LineIn):- |
Jassi Brar | 9e9d04c0 | 2010-01-29 10:57:07 +0900 | [diff] [blame] | 37 | $ amixer sset 'Right Capture Source' 'Line' |
| 38 | $ amixer sset 'Left Capture Source' 'Line' |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 39 | */ |
| 40 | |
| 41 | static struct snd_soc_dai_link smdk_dai = { |
| 42 | .name = "AC97", |
| 43 | .stream_name = "AC97 PCM", |
Jassi Brar | 58bb407 | 2010-11-22 15:35:50 +0900 | [diff] [blame] | 44 | .platform_name = "samsung-audio", |
Jassi Brar | e610467 | 2010-11-22 15:36:00 +0900 | [diff] [blame] | 45 | .cpu_dai_name = "samsung-ac97", |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 46 | .codec_dai_name = "wm9713-hifi", |
| 47 | .codec_name = "wm9713-codec", |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 48 | }; |
| 49 | |
| 50 | static struct snd_soc_card smdk = { |
Mark Brown | 9fab963 | 2010-09-22 19:44:13 +0100 | [diff] [blame] | 51 | .name = "SMDK WM9713", |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 52 | .dai_link = &smdk_dai, |
| 53 | .num_links = 1, |
| 54 | }; |
| 55 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 56 | static struct platform_device *smdk_snd_wm9713_device; |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 57 | static struct platform_device *smdk_snd_ac97_device; |
| 58 | |
| 59 | static int __init smdk_init(void) |
| 60 | { |
| 61 | int ret; |
| 62 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 63 | smdk_snd_wm9713_device = platform_device_alloc("wm9713-codec", -1); |
| 64 | if (!smdk_snd_wm9713_device) |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 65 | return -ENOMEM; |
| 66 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 67 | ret = platform_device_add(smdk_snd_wm9713_device); |
| 68 | if (ret) |
Axel Lin | b26bb71 | 2010-11-25 15:11:45 +0800 | [diff] [blame] | 69 | goto err1; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 70 | |
| 71 | smdk_snd_ac97_device = platform_device_alloc("soc-audio", -1); |
| 72 | if (!smdk_snd_ac97_device) { |
| 73 | ret = -ENOMEM; |
Axel Lin | b26bb71 | 2010-11-25 15:11:45 +0800 | [diff] [blame] | 74 | goto err2; |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 75 | } |
| 76 | |
| 77 | platform_set_drvdata(smdk_snd_ac97_device, &smdk); |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 78 | |
| 79 | ret = platform_device_add(smdk_snd_ac97_device); |
Axel Lin | b26bb71 | 2010-11-25 15:11:45 +0800 | [diff] [blame] | 80 | if (ret) |
| 81 | goto err3; |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 82 | |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 83 | return 0; |
Axel Lin | b26bb71 | 2010-11-25 15:11:45 +0800 | [diff] [blame] | 84 | |
| 85 | err3: |
| 86 | platform_device_put(smdk_snd_ac97_device); |
| 87 | err2: |
| 88 | platform_device_del(smdk_snd_wm9713_device); |
| 89 | err1: |
Liam Girdwood | f0fba2a | 2010-03-17 20:15:21 +0000 | [diff] [blame] | 90 | platform_device_put(smdk_snd_wm9713_device); |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 91 | return ret; |
| 92 | } |
| 93 | |
| 94 | static void __exit smdk_exit(void) |
| 95 | { |
| 96 | platform_device_unregister(smdk_snd_ac97_device); |
Mark Brown | 97daff3 | 2010-09-23 15:28:14 +0100 | [diff] [blame] | 97 | platform_device_unregister(smdk_snd_wm9713_device); |
Jassi Brar | ff6e64d | 2010-01-27 14:59:19 +0900 | [diff] [blame] | 98 | } |
| 99 | |
| 100 | module_init(smdk_init); |
| 101 | module_exit(smdk_exit); |
| 102 | |
| 103 | /* Module information */ |
| 104 | MODULE_AUTHOR("Jaswinder Singh Brar, jassi.brar@samsung.com"); |
| 105 | MODULE_DESCRIPTION("ALSA SoC SMDK+WM9713"); |
| 106 | MODULE_LICENSE("GPL"); |