diff options
| author | Misael Lopez Cruz <x0052729@ti.com> | 2010-02-23 19:10:19 -0500 |
|---|---|---|
| committer | Mark Brown <broonie@opensource.wolfsonmicro.com> | 2010-02-24 08:17:03 -0500 |
| commit | d62abe563fa4718e7f85f3e871655434db92366d (patch) | |
| tree | 153ad96ce6a786fd3af9f2512ac6246cc35d7fa5 | |
| parent | 47fc9a0a808f23b7b305f6c018e4882118b88d92 (diff) | |
OMAP4: PMIC: Add support for twl6030 codec
In order to have TWL6030 CODEC driver as a platform driver, codec data
should be passed through twl_platform_data structure.
For twl6030 audio codec, the following data may be passed:
- audpwron_gpio: gpio line used to power-up/down the codec. A low-to-high
transition powers codec up. Setting audpwron_gpio to a negative value
means that codec will use manual power sequence instead of automatic
sequence
- naudint_irq: irq line for audio interrupt. twl6030 drives NAUDINT line
to low when an interrupt (codec ready, plug insertion/removal, etc) is
detected
However, codec driver can operate if any or none of them are passed.
Signed-off-by: Misael Lopez Cruz <x0052729@ti.com>
Signed-off-by: Margarita Olaya Cabrera <magi.olaya@ti.com>
Signed-off-by: Jorge Eduardo Candelaria <jorge.candelaria@ti.com>
Acked-by: Samuel Ortiz <sameo@linux.intel.com>
Acked-by: Liam Girdwood <lrg@slimlogic.co.uk>
Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com>
| -rw-r--r-- | drivers/mfd/twl-core.c | 18 | ||||
| -rw-r--r-- | include/linux/i2c/twl.h | 4 |
2 files changed, 19 insertions, 3 deletions
diff --git a/drivers/mfd/twl-core.c b/drivers/mfd/twl-core.c index 2a7606534196..19a930d06241 100644 --- a/drivers/mfd/twl-core.c +++ b/drivers/mfd/twl-core.c | |||
| @@ -115,7 +115,8 @@ | |||
| 115 | #define twl_has_watchdog() false | 115 | #define twl_has_watchdog() false |
| 116 | #endif | 116 | #endif |
| 117 | 117 | ||
| 118 | #if defined(CONFIG_TWL4030_CODEC) || defined(CONFIG_TWL4030_CODEC_MODULE) | 118 | #if defined(CONFIG_TWL4030_CODEC) || defined(CONFIG_TWL4030_CODEC_MODULE) ||\ |
| 119 | defined(CONFIG_SND_SOC_TWL6030) || defined(CONFIG_SND_SOC_TWL6030_MODULE) | ||
| 119 | #define twl_has_codec() true | 120 | #define twl_has_codec() true |
| 120 | #else | 121 | #else |
| 121 | #define twl_has_codec() false | 122 | #define twl_has_codec() false |
| @@ -711,8 +712,19 @@ add_children(struct twl4030_platform_data *pdata, unsigned long features) | |||
| 711 | return PTR_ERR(child); | 712 | return PTR_ERR(child); |
| 712 | } | 713 | } |
| 713 | 714 | ||
| 714 | if (twl_has_codec() && pdata->codec) { | 715 | if (twl_has_codec() && pdata->codec && twl_class_is_4030()) { |
| 715 | child = add_child(1, "twl4030_codec", | 716 | sub_chip_id = twl_map[TWL_MODULE_AUDIO_VOICE].sid; |
| 717 | child = add_child(sub_chip_id, "twl4030_codec", | ||
| 718 | pdata->codec, sizeof(*pdata->codec), | ||
| 719 | false, 0, 0); | ||
| 720 | if (IS_ERR(child)) | ||
| 721 | return PTR_ERR(child); | ||
| 722 | } | ||
| 723 | |||
| 724 | /* Phoenix*/ | ||
| 725 | if (twl_has_codec() && pdata->codec && twl_class_is_6030()) { | ||
| 726 | sub_chip_id = twl_map[TWL_MODULE_AUDIO_VOICE].sid; | ||
| 727 | child = add_child(sub_chip_id, "twl6030_codec", | ||
| 716 | pdata->codec, sizeof(*pdata->codec), | 728 | pdata->codec, sizeof(*pdata->codec), |
| 717 | false, 0, 0); | 729 | false, 0, 0); |
| 718 | if (IS_ERR(child)) | 730 | if (IS_ERR(child)) |
diff --git a/include/linux/i2c/twl.h b/include/linux/i2c/twl.h index bf1c5be1f5b6..7897f3096560 100644 --- a/include/linux/i2c/twl.h +++ b/include/linux/i2c/twl.h | |||
| @@ -547,6 +547,10 @@ struct twl4030_codec_data { | |||
| 547 | unsigned int audio_mclk; | 547 | unsigned int audio_mclk; |
| 548 | struct twl4030_codec_audio_data *audio; | 548 | struct twl4030_codec_audio_data *audio; |
| 549 | struct twl4030_codec_vibra_data *vibra; | 549 | struct twl4030_codec_vibra_data *vibra; |
| 550 | |||
| 551 | /* twl6030 */ | ||
| 552 | int audpwron_gpio; /* audio power-on gpio */ | ||
| 553 | int naudint_irq; /* audio interrupt */ | ||
| 550 | }; | 554 | }; |
| 551 | 555 | ||
| 552 | struct twl4030_platform_data { | 556 | struct twl4030_platform_data { |
