1b7482f52SPhilipp Zabel /* 2b7482f52SPhilipp Zabel * uda1380.c - Philips UDA1380 ALSA SoC audio driver 3b7482f52SPhilipp Zabel * 4b7482f52SPhilipp Zabel * This program is free software; you can redistribute it and/or modify 5b7482f52SPhilipp Zabel * it under the terms of the GNU General Public License version 2 as 6b7482f52SPhilipp Zabel * published by the Free Software Foundation. 7b7482f52SPhilipp Zabel * 8*1abd9184SPhilipp Zabel * Copyright (c) 2007-2009 Philipp Zabel <philipp.zabel@gmail.com> 9b7482f52SPhilipp Zabel * 10b7482f52SPhilipp Zabel * Modified by Richard Purdie <richard@openedhand.com> to fit into SoC 11b7482f52SPhilipp Zabel * codec model. 12b7482f52SPhilipp Zabel * 13b7482f52SPhilipp Zabel * Copyright (c) 2005 Giorgio Padrin <giorgio@mandarinlogiq.org> 14b7482f52SPhilipp Zabel * Copyright 2005 Openedhand Ltd. 15b7482f52SPhilipp Zabel */ 16b7482f52SPhilipp Zabel 17b7482f52SPhilipp Zabel #include <linux/module.h> 18b7482f52SPhilipp Zabel #include <linux/init.h> 19b7482f52SPhilipp Zabel #include <linux/types.h> 20b7482f52SPhilipp Zabel #include <linux/slab.h> 21b7482f52SPhilipp Zabel #include <linux/errno.h> 22*1abd9184SPhilipp Zabel #include <linux/gpio.h> 23b7482f52SPhilipp Zabel #include <linux/delay.h> 24b7482f52SPhilipp Zabel #include <linux/i2c.h> 25ef9e5e5cSPhilipp Zabel #include <linux/workqueue.h> 26b7482f52SPhilipp Zabel #include <sound/core.h> 27b7482f52SPhilipp Zabel #include <sound/control.h> 28b7482f52SPhilipp Zabel #include <sound/initval.h> 29b7482f52SPhilipp Zabel #include <sound/soc.h> 30b7482f52SPhilipp Zabel #include <sound/soc-dapm.h> 31b7482f52SPhilipp Zabel #include <sound/tlv.h> 32*1abd9184SPhilipp Zabel #include <sound/uda1380.h> 33b7482f52SPhilipp Zabel 34b7482f52SPhilipp Zabel #include "uda1380.h" 35b7482f52SPhilipp Zabel 36ef9e5e5cSPhilipp Zabel static struct snd_soc_codec *uda1380_codec; 37ef9e5e5cSPhilipp Zabel 38*1abd9184SPhilipp Zabel /* codec private data */ 39*1abd9184SPhilipp Zabel struct uda1380_priv { 40*1abd9184SPhilipp Zabel struct snd_soc_codec codec; 41*1abd9184SPhilipp Zabel u16 reg_cache[UDA1380_CACHEREGNUM]; 42*1abd9184SPhilipp Zabel unsigned int dac_clk; 43*1abd9184SPhilipp Zabel struct work_struct work; 44*1abd9184SPhilipp Zabel }; 45*1abd9184SPhilipp Zabel 46b7482f52SPhilipp Zabel /* 47b7482f52SPhilipp Zabel * uda1380 register cache 48b7482f52SPhilipp Zabel */ 49b7482f52SPhilipp Zabel static const u16 uda1380_reg[UDA1380_CACHEREGNUM] = { 50b7482f52SPhilipp Zabel 0x0502, 0x0000, 0x0000, 0x3f3f, 51b7482f52SPhilipp Zabel 0x0202, 0x0000, 0x0000, 0x0000, 52b7482f52SPhilipp Zabel 0x0000, 0x0000, 0x0000, 0x0000, 53b7482f52SPhilipp Zabel 0x0000, 0x0000, 0x0000, 0x0000, 54b7482f52SPhilipp Zabel 0x0000, 0xff00, 0x0000, 0x4800, 55b7482f52SPhilipp Zabel 0x0000, 0x0000, 0x0000, 0x0000, 56b7482f52SPhilipp Zabel 0x0000, 0x0000, 0x0000, 0x0000, 57b7482f52SPhilipp Zabel 0x0000, 0x0000, 0x0000, 0x0000, 58b7482f52SPhilipp Zabel 0x0000, 0x8000, 0x0002, 0x0000, 59b7482f52SPhilipp Zabel }; 60b7482f52SPhilipp Zabel 61ef9e5e5cSPhilipp Zabel static unsigned long uda1380_cache_dirty; 62ef9e5e5cSPhilipp Zabel 63b7482f52SPhilipp Zabel /* 64b7482f52SPhilipp Zabel * read uda1380 register cache 65b7482f52SPhilipp Zabel */ 66b7482f52SPhilipp Zabel static inline unsigned int uda1380_read_reg_cache(struct snd_soc_codec *codec, 67b7482f52SPhilipp Zabel unsigned int reg) 68b7482f52SPhilipp Zabel { 69b7482f52SPhilipp Zabel u16 *cache = codec->reg_cache; 70b7482f52SPhilipp Zabel if (reg == UDA1380_RESET) 71b7482f52SPhilipp Zabel return 0; 72b7482f52SPhilipp Zabel if (reg >= UDA1380_CACHEREGNUM) 73b7482f52SPhilipp Zabel return -1; 74b7482f52SPhilipp Zabel return cache[reg]; 75b7482f52SPhilipp Zabel } 76b7482f52SPhilipp Zabel 77b7482f52SPhilipp Zabel /* 78b7482f52SPhilipp Zabel * write uda1380 register cache 79b7482f52SPhilipp Zabel */ 80b7482f52SPhilipp Zabel static inline void uda1380_write_reg_cache(struct snd_soc_codec *codec, 81b7482f52SPhilipp Zabel u16 reg, unsigned int value) 82b7482f52SPhilipp Zabel { 83b7482f52SPhilipp Zabel u16 *cache = codec->reg_cache; 84ef9e5e5cSPhilipp Zabel 85b7482f52SPhilipp Zabel if (reg >= UDA1380_CACHEREGNUM) 86b7482f52SPhilipp Zabel return; 87ef9e5e5cSPhilipp Zabel if ((reg >= 0x10) && (cache[reg] != value)) 88ef9e5e5cSPhilipp Zabel set_bit(reg - 0x10, &uda1380_cache_dirty); 89b7482f52SPhilipp Zabel cache[reg] = value; 90b7482f52SPhilipp Zabel } 91b7482f52SPhilipp Zabel 92b7482f52SPhilipp Zabel /* 93b7482f52SPhilipp Zabel * write to the UDA1380 register space 94b7482f52SPhilipp Zabel */ 95b7482f52SPhilipp Zabel static int uda1380_write(struct snd_soc_codec *codec, unsigned int reg, 96b7482f52SPhilipp Zabel unsigned int value) 97b7482f52SPhilipp Zabel { 98b7482f52SPhilipp Zabel u8 data[3]; 99b7482f52SPhilipp Zabel 100b7482f52SPhilipp Zabel /* data is 101b7482f52SPhilipp Zabel * data[0] is register offset 102b7482f52SPhilipp Zabel * data[1] is MS byte 103b7482f52SPhilipp Zabel * data[2] is LS byte 104b7482f52SPhilipp Zabel */ 105b7482f52SPhilipp Zabel data[0] = reg; 106b7482f52SPhilipp Zabel data[1] = (value & 0xff00) >> 8; 107b7482f52SPhilipp Zabel data[2] = value & 0x00ff; 108b7482f52SPhilipp Zabel 109b7482f52SPhilipp Zabel uda1380_write_reg_cache(codec, reg, value); 110b7482f52SPhilipp Zabel 111b7482f52SPhilipp Zabel /* the interpolator & decimator regs must only be written when the 112b7482f52SPhilipp Zabel * codec DAI is active. 113b7482f52SPhilipp Zabel */ 114b7482f52SPhilipp Zabel if (!codec->active && (reg >= UDA1380_MVOL)) 115b7482f52SPhilipp Zabel return 0; 116b7482f52SPhilipp Zabel pr_debug("uda1380: hw write %x val %x\n", reg, value); 117b7482f52SPhilipp Zabel if (codec->hw_write(codec->control_data, data, 3) == 3) { 118b7482f52SPhilipp Zabel unsigned int val; 119b7482f52SPhilipp Zabel i2c_master_send(codec->control_data, data, 1); 120b7482f52SPhilipp Zabel i2c_master_recv(codec->control_data, data, 2); 121b7482f52SPhilipp Zabel val = (data[0]<<8) | data[1]; 122b7482f52SPhilipp Zabel if (val != value) { 123b7482f52SPhilipp Zabel pr_debug("uda1380: READ BACK VAL %x\n", 124b7482f52SPhilipp Zabel (data[0]<<8) | data[1]); 125b7482f52SPhilipp Zabel return -EIO; 126b7482f52SPhilipp Zabel } 127ef9e5e5cSPhilipp Zabel if (reg >= 0x10) 128ef9e5e5cSPhilipp Zabel clear_bit(reg - 0x10, &uda1380_cache_dirty); 129b7482f52SPhilipp Zabel return 0; 130b7482f52SPhilipp Zabel } else 131b7482f52SPhilipp Zabel return -EIO; 132b7482f52SPhilipp Zabel } 133b7482f52SPhilipp Zabel 134b7482f52SPhilipp Zabel #define uda1380_reset(c) uda1380_write(c, UDA1380_RESET, 0) 135b7482f52SPhilipp Zabel 136ef9e5e5cSPhilipp Zabel static void uda1380_flush_work(struct work_struct *work) 137ef9e5e5cSPhilipp Zabel { 138ef9e5e5cSPhilipp Zabel int bit, reg; 139ef9e5e5cSPhilipp Zabel 140ef9e5e5cSPhilipp Zabel for_each_bit(bit, &uda1380_cache_dirty, UDA1380_CACHEREGNUM - 0x10) { 141ef9e5e5cSPhilipp Zabel reg = 0x10 + bit; 142ef9e5e5cSPhilipp Zabel pr_debug("uda1380: flush reg %x val %x:\n", reg, 143ef9e5e5cSPhilipp Zabel uda1380_read_reg_cache(uda1380_codec, reg)); 144ef9e5e5cSPhilipp Zabel uda1380_write(uda1380_codec, reg, 145ef9e5e5cSPhilipp Zabel uda1380_read_reg_cache(uda1380_codec, reg)); 146ef9e5e5cSPhilipp Zabel clear_bit(bit, &uda1380_cache_dirty); 147ef9e5e5cSPhilipp Zabel } 148ef9e5e5cSPhilipp Zabel } 149ef9e5e5cSPhilipp Zabel 150b7482f52SPhilipp Zabel /* declarations of ALSA reg_elem_REAL controls */ 151b7482f52SPhilipp Zabel static const char *uda1380_deemp[] = { 152b7482f52SPhilipp Zabel "None", 153b7482f52SPhilipp Zabel "32kHz", 154b7482f52SPhilipp Zabel "44.1kHz", 155b7482f52SPhilipp Zabel "48kHz", 156b7482f52SPhilipp Zabel "96kHz", 157b7482f52SPhilipp Zabel }; 158b7482f52SPhilipp Zabel static const char *uda1380_input_sel[] = { 159b7482f52SPhilipp Zabel "Line", 160b7482f52SPhilipp Zabel "Mic + Line R", 161b7482f52SPhilipp Zabel "Line L", 162b7482f52SPhilipp Zabel "Mic", 163b7482f52SPhilipp Zabel }; 164b7482f52SPhilipp Zabel static const char *uda1380_output_sel[] = { 165b7482f52SPhilipp Zabel "DAC", 166b7482f52SPhilipp Zabel "Analog Mixer", 167b7482f52SPhilipp Zabel }; 168b7482f52SPhilipp Zabel static const char *uda1380_spf_mode[] = { 169b7482f52SPhilipp Zabel "Flat", 170b7482f52SPhilipp Zabel "Minimum1", 171b7482f52SPhilipp Zabel "Minimum2", 172b7482f52SPhilipp Zabel "Maximum" 173b7482f52SPhilipp Zabel }; 174b7482f52SPhilipp Zabel static const char *uda1380_capture_sel[] = { 175b7482f52SPhilipp Zabel "ADC", 176b7482f52SPhilipp Zabel "Digital Mixer" 177b7482f52SPhilipp Zabel }; 178b7482f52SPhilipp Zabel static const char *uda1380_sel_ns[] = { 179b7482f52SPhilipp Zabel "3rd-order", 180b7482f52SPhilipp Zabel "5th-order" 181b7482f52SPhilipp Zabel }; 182b7482f52SPhilipp Zabel static const char *uda1380_mix_control[] = { 183b7482f52SPhilipp Zabel "off", 184b7482f52SPhilipp Zabel "PCM only", 185b7482f52SPhilipp Zabel "before sound processing", 186b7482f52SPhilipp Zabel "after sound processing" 187b7482f52SPhilipp Zabel }; 188b7482f52SPhilipp Zabel static const char *uda1380_sdet_setting[] = { 189b7482f52SPhilipp Zabel "3200", 190b7482f52SPhilipp Zabel "4800", 191b7482f52SPhilipp Zabel "9600", 192b7482f52SPhilipp Zabel "19200" 193b7482f52SPhilipp Zabel }; 194b7482f52SPhilipp Zabel static const char *uda1380_os_setting[] = { 195b7482f52SPhilipp Zabel "single-speed", 196b7482f52SPhilipp Zabel "double-speed (no mixing)", 197b7482f52SPhilipp Zabel "quad-speed (no mixing)" 198b7482f52SPhilipp Zabel }; 199b7482f52SPhilipp Zabel 200b7482f52SPhilipp Zabel static const struct soc_enum uda1380_deemp_enum[] = { 201b7482f52SPhilipp Zabel SOC_ENUM_SINGLE(UDA1380_DEEMP, 8, 5, uda1380_deemp), 202b7482f52SPhilipp Zabel SOC_ENUM_SINGLE(UDA1380_DEEMP, 0, 5, uda1380_deemp), 203b7482f52SPhilipp Zabel }; 204b7482f52SPhilipp Zabel static const struct soc_enum uda1380_input_sel_enum = 205b7482f52SPhilipp Zabel SOC_ENUM_SINGLE(UDA1380_ADC, 2, 4, uda1380_input_sel); /* SEL_MIC, SEL_LNA */ 206b7482f52SPhilipp Zabel static const struct soc_enum uda1380_output_sel_enum = 207b7482f52SPhilipp Zabel SOC_ENUM_SINGLE(UDA1380_PM, 7, 2, uda1380_output_sel); /* R02_EN_AVC */ 208b7482f52SPhilipp Zabel static const struct soc_enum uda1380_spf_enum = 209b7482f52SPhilipp Zabel SOC_ENUM_SINGLE(UDA1380_MODE, 14, 4, uda1380_spf_mode); /* M */ 210b7482f52SPhilipp Zabel static const struct soc_enum uda1380_capture_sel_enum = 211b7482f52SPhilipp Zabel SOC_ENUM_SINGLE(UDA1380_IFACE, 6, 2, uda1380_capture_sel); /* SEL_SOURCE */ 212b7482f52SPhilipp Zabel static const struct soc_enum uda1380_sel_ns_enum = 213b7482f52SPhilipp Zabel SOC_ENUM_SINGLE(UDA1380_MIXER, 14, 2, uda1380_sel_ns); /* SEL_NS */ 214b7482f52SPhilipp Zabel static const struct soc_enum uda1380_mix_enum = 215b7482f52SPhilipp Zabel SOC_ENUM_SINGLE(UDA1380_MIXER, 12, 4, uda1380_mix_control); /* MIX, MIX_POS */ 216b7482f52SPhilipp Zabel static const struct soc_enum uda1380_sdet_enum = 217b7482f52SPhilipp Zabel SOC_ENUM_SINGLE(UDA1380_MIXER, 4, 4, uda1380_sdet_setting); /* SD_VALUE */ 218b7482f52SPhilipp Zabel static const struct soc_enum uda1380_os_enum = 219b7482f52SPhilipp Zabel SOC_ENUM_SINGLE(UDA1380_MIXER, 0, 3, uda1380_os_setting); /* OS */ 220b7482f52SPhilipp Zabel 221b7482f52SPhilipp Zabel /* 222b7482f52SPhilipp Zabel * from -48 dB in 1.5 dB steps (mute instead of -49.5 dB) 223b7482f52SPhilipp Zabel */ 224b7482f52SPhilipp Zabel static DECLARE_TLV_DB_SCALE(amix_tlv, -4950, 150, 1); 225b7482f52SPhilipp Zabel 226b7482f52SPhilipp Zabel /* 227b7482f52SPhilipp Zabel * from -78 dB in 1 dB steps (3 dB steps, really. LSB are ignored), 228b7482f52SPhilipp Zabel * from -66 dB in 0.5 dB steps (2 dB steps, really) and 229b7482f52SPhilipp Zabel * from -52 dB in 0.25 dB steps 230b7482f52SPhilipp Zabel */ 231b7482f52SPhilipp Zabel static const unsigned int mvol_tlv[] = { 232b7482f52SPhilipp Zabel TLV_DB_RANGE_HEAD(3), 233b7482f52SPhilipp Zabel 0, 15, TLV_DB_SCALE_ITEM(-8200, 100, 1), 234b7482f52SPhilipp Zabel 16, 43, TLV_DB_SCALE_ITEM(-6600, 50, 0), 235b7482f52SPhilipp Zabel 44, 252, TLV_DB_SCALE_ITEM(-5200, 25, 0), 236b7482f52SPhilipp Zabel }; 237b7482f52SPhilipp Zabel 238b7482f52SPhilipp Zabel /* 239b7482f52SPhilipp Zabel * from -72 dB in 1.5 dB steps (6 dB steps really), 240b7482f52SPhilipp Zabel * from -66 dB in 0.75 dB steps (3 dB steps really), 241b7482f52SPhilipp Zabel * from -60 dB in 0.5 dB steps (2 dB steps really) and 242b7482f52SPhilipp Zabel * from -46 dB in 0.25 dB steps 243b7482f52SPhilipp Zabel */ 244b7482f52SPhilipp Zabel static const unsigned int vc_tlv[] = { 245b7482f52SPhilipp Zabel TLV_DB_RANGE_HEAD(4), 246b7482f52SPhilipp Zabel 0, 7, TLV_DB_SCALE_ITEM(-7800, 150, 1), 247b7482f52SPhilipp Zabel 8, 15, TLV_DB_SCALE_ITEM(-6600, 75, 0), 248b7482f52SPhilipp Zabel 16, 43, TLV_DB_SCALE_ITEM(-6000, 50, 0), 249b7482f52SPhilipp Zabel 44, 228, TLV_DB_SCALE_ITEM(-4600, 25, 0), 250b7482f52SPhilipp Zabel }; 251b7482f52SPhilipp Zabel 252b7482f52SPhilipp Zabel /* from 0 to 6 dB in 2 dB steps if SPF mode != flat */ 253b7482f52SPhilipp Zabel static DECLARE_TLV_DB_SCALE(tr_tlv, 0, 200, 0); 254b7482f52SPhilipp Zabel 255b7482f52SPhilipp Zabel /* from 0 to 24 dB in 2 dB steps, if SPF mode == maximum, otherwise cuts 256b7482f52SPhilipp Zabel * off at 18 dB max) */ 257b7482f52SPhilipp Zabel static DECLARE_TLV_DB_SCALE(bb_tlv, 0, 200, 0); 258b7482f52SPhilipp Zabel 259b7482f52SPhilipp Zabel /* from -63 to 24 dB in 0.5 dB steps (-128...48) */ 260b7482f52SPhilipp Zabel static DECLARE_TLV_DB_SCALE(dec_tlv, -6400, 50, 1); 261b7482f52SPhilipp Zabel 262b7482f52SPhilipp Zabel /* from 0 to 24 dB in 3 dB steps */ 263b7482f52SPhilipp Zabel static DECLARE_TLV_DB_SCALE(pga_tlv, 0, 300, 0); 264b7482f52SPhilipp Zabel 265b7482f52SPhilipp Zabel /* from 0 to 30 dB in 2 dB steps */ 266b7482f52SPhilipp Zabel static DECLARE_TLV_DB_SCALE(vga_tlv, 0, 200, 0); 267b7482f52SPhilipp Zabel 268b7482f52SPhilipp Zabel static const struct snd_kcontrol_new uda1380_snd_controls[] = { 269b7482f52SPhilipp Zabel SOC_DOUBLE_TLV("Analog Mixer Volume", UDA1380_AMIX, 0, 8, 44, 1, amix_tlv), /* AVCR, AVCL */ 270b7482f52SPhilipp Zabel SOC_DOUBLE_TLV("Master Playback Volume", UDA1380_MVOL, 0, 8, 252, 1, mvol_tlv), /* MVCL, MVCR */ 271b7482f52SPhilipp Zabel SOC_SINGLE_TLV("ADC Playback Volume", UDA1380_MIXVOL, 8, 228, 1, vc_tlv), /* VC2 */ 272b7482f52SPhilipp Zabel SOC_SINGLE_TLV("PCM Playback Volume", UDA1380_MIXVOL, 0, 228, 1, vc_tlv), /* VC1 */ 273b7482f52SPhilipp Zabel SOC_ENUM("Sound Processing Filter", uda1380_spf_enum), /* M */ 274b7482f52SPhilipp Zabel SOC_DOUBLE_TLV("Tone Control - Treble", UDA1380_MODE, 4, 12, 3, 0, tr_tlv), /* TRL, TRR */ 275b7482f52SPhilipp Zabel SOC_DOUBLE_TLV("Tone Control - Bass", UDA1380_MODE, 0, 8, 15, 0, bb_tlv), /* BBL, BBR */ 276b7482f52SPhilipp Zabel /**/ SOC_SINGLE("Master Playback Switch", UDA1380_DEEMP, 14, 1, 1), /* MTM */ 277b7482f52SPhilipp Zabel SOC_SINGLE("ADC Playback Switch", UDA1380_DEEMP, 11, 1, 1), /* MT2 from decimation filter */ 278b7482f52SPhilipp Zabel SOC_ENUM("ADC Playback De-emphasis", uda1380_deemp_enum[0]), /* DE2 */ 279b7482f52SPhilipp Zabel SOC_SINGLE("PCM Playback Switch", UDA1380_DEEMP, 3, 1, 1), /* MT1, from digital data input */ 280b7482f52SPhilipp Zabel SOC_ENUM("PCM Playback De-emphasis", uda1380_deemp_enum[1]), /* DE1 */ 281b7482f52SPhilipp Zabel SOC_SINGLE("DAC Polarity inverting Switch", UDA1380_MIXER, 15, 1, 0), /* DA_POL_INV */ 282b7482f52SPhilipp Zabel SOC_ENUM("Noise Shaper", uda1380_sel_ns_enum), /* SEL_NS */ 283b7482f52SPhilipp Zabel SOC_ENUM("Digital Mixer Signal Control", uda1380_mix_enum), /* MIX_POS, MIX */ 284b7482f52SPhilipp Zabel SOC_SINGLE("Silence Detector Switch", UDA1380_MIXER, 6, 1, 0), /* SDET_ON */ 285b7482f52SPhilipp Zabel SOC_ENUM("Silence Detector Setting", uda1380_sdet_enum), /* SD_VALUE */ 286b7482f52SPhilipp Zabel SOC_ENUM("Oversampling Input", uda1380_os_enum), /* OS */ 287b7482f52SPhilipp Zabel SOC_DOUBLE_S8_TLV("ADC Capture Volume", UDA1380_DEC, -128, 48, dec_tlv), /* ML_DEC, MR_DEC */ 288b7482f52SPhilipp Zabel /**/ SOC_SINGLE("ADC Capture Switch", UDA1380_PGA, 15, 1, 1), /* MT_ADC */ 289b7482f52SPhilipp Zabel SOC_DOUBLE_TLV("Line Capture Volume", UDA1380_PGA, 0, 8, 8, 0, pga_tlv), /* PGA_GAINCTRLL, PGA_GAINCTRLR */ 290b7482f52SPhilipp Zabel SOC_SINGLE("ADC Polarity inverting Switch", UDA1380_ADC, 12, 1, 0), /* ADCPOL_INV */ 291b7482f52SPhilipp Zabel SOC_SINGLE_TLV("Mic Capture Volume", UDA1380_ADC, 8, 15, 0, vga_tlv), /* VGA_CTRL */ 292b7482f52SPhilipp Zabel SOC_SINGLE("DC Filter Bypass Switch", UDA1380_ADC, 1, 1, 0), /* SKIP_DCFIL (before decimator) */ 293b7482f52SPhilipp Zabel SOC_SINGLE("DC Filter Enable Switch", UDA1380_ADC, 0, 1, 0), /* EN_DCFIL (at output of decimator) */ 294b7482f52SPhilipp Zabel SOC_SINGLE("AGC Timing", UDA1380_AGC, 8, 7, 0), /* TODO: enum, see table 62 */ 295b7482f52SPhilipp Zabel SOC_SINGLE("AGC Target level", UDA1380_AGC, 2, 3, 1), /* AGC_LEVEL */ 296b7482f52SPhilipp Zabel /* -5.5, -8, -11.5, -14 dBFS */ 297b7482f52SPhilipp Zabel SOC_SINGLE("AGC Switch", UDA1380_AGC, 0, 1, 0), 298b7482f52SPhilipp Zabel }; 299b7482f52SPhilipp Zabel 300b7482f52SPhilipp Zabel /* Input mux */ 301b7482f52SPhilipp Zabel static const struct snd_kcontrol_new uda1380_input_mux_control = 302b7482f52SPhilipp Zabel SOC_DAPM_ENUM("Route", uda1380_input_sel_enum); 303b7482f52SPhilipp Zabel 304b7482f52SPhilipp Zabel /* Output mux */ 305b7482f52SPhilipp Zabel static const struct snd_kcontrol_new uda1380_output_mux_control = 306b7482f52SPhilipp Zabel SOC_DAPM_ENUM("Route", uda1380_output_sel_enum); 307b7482f52SPhilipp Zabel 308b7482f52SPhilipp Zabel /* Capture mux */ 309b7482f52SPhilipp Zabel static const struct snd_kcontrol_new uda1380_capture_mux_control = 310b7482f52SPhilipp Zabel SOC_DAPM_ENUM("Route", uda1380_capture_sel_enum); 311b7482f52SPhilipp Zabel 312b7482f52SPhilipp Zabel 313b7482f52SPhilipp Zabel static const struct snd_soc_dapm_widget uda1380_dapm_widgets[] = { 314b7482f52SPhilipp Zabel SND_SOC_DAPM_MUX("Input Mux", SND_SOC_NOPM, 0, 0, 315b7482f52SPhilipp Zabel &uda1380_input_mux_control), 316b7482f52SPhilipp Zabel SND_SOC_DAPM_MUX("Output Mux", SND_SOC_NOPM, 0, 0, 317b7482f52SPhilipp Zabel &uda1380_output_mux_control), 318b7482f52SPhilipp Zabel SND_SOC_DAPM_MUX("Capture Mux", SND_SOC_NOPM, 0, 0, 319b7482f52SPhilipp Zabel &uda1380_capture_mux_control), 320b7482f52SPhilipp Zabel SND_SOC_DAPM_PGA("Left PGA", UDA1380_PM, 3, 0, NULL, 0), 321b7482f52SPhilipp Zabel SND_SOC_DAPM_PGA("Right PGA", UDA1380_PM, 1, 0, NULL, 0), 322b7482f52SPhilipp Zabel SND_SOC_DAPM_PGA("Mic LNA", UDA1380_PM, 4, 0, NULL, 0), 323b7482f52SPhilipp Zabel SND_SOC_DAPM_ADC("Left ADC", "Left Capture", UDA1380_PM, 2, 0), 324b7482f52SPhilipp Zabel SND_SOC_DAPM_ADC("Right ADC", "Right Capture", UDA1380_PM, 0, 0), 325b7482f52SPhilipp Zabel SND_SOC_DAPM_INPUT("VINM"), 326b7482f52SPhilipp Zabel SND_SOC_DAPM_INPUT("VINL"), 327b7482f52SPhilipp Zabel SND_SOC_DAPM_INPUT("VINR"), 328b7482f52SPhilipp Zabel SND_SOC_DAPM_MIXER("Analog Mixer", UDA1380_PM, 6, 0, NULL, 0), 329b7482f52SPhilipp Zabel SND_SOC_DAPM_OUTPUT("VOUTLHP"), 330b7482f52SPhilipp Zabel SND_SOC_DAPM_OUTPUT("VOUTRHP"), 331b7482f52SPhilipp Zabel SND_SOC_DAPM_OUTPUT("VOUTL"), 332b7482f52SPhilipp Zabel SND_SOC_DAPM_OUTPUT("VOUTR"), 333b7482f52SPhilipp Zabel SND_SOC_DAPM_DAC("DAC", "Playback", UDA1380_PM, 10, 0), 334b7482f52SPhilipp Zabel SND_SOC_DAPM_PGA("HeadPhone Driver", UDA1380_PM, 13, 0, NULL, 0), 335b7482f52SPhilipp Zabel }; 336b7482f52SPhilipp Zabel 337b7482f52SPhilipp Zabel static const struct snd_soc_dapm_route audio_map[] = { 338b7482f52SPhilipp Zabel 339b7482f52SPhilipp Zabel /* output mux */ 340b7482f52SPhilipp Zabel {"HeadPhone Driver", NULL, "Output Mux"}, 341b7482f52SPhilipp Zabel {"VOUTR", NULL, "Output Mux"}, 342b7482f52SPhilipp Zabel {"VOUTL", NULL, "Output Mux"}, 343b7482f52SPhilipp Zabel 344b7482f52SPhilipp Zabel {"Analog Mixer", NULL, "VINR"}, 345b7482f52SPhilipp Zabel {"Analog Mixer", NULL, "VINL"}, 346b7482f52SPhilipp Zabel {"Analog Mixer", NULL, "DAC"}, 347b7482f52SPhilipp Zabel 348b7482f52SPhilipp Zabel {"Output Mux", "DAC", "DAC"}, 349b7482f52SPhilipp Zabel {"Output Mux", "Analog Mixer", "Analog Mixer"}, 350b7482f52SPhilipp Zabel 351b7482f52SPhilipp Zabel /* {"DAC", "Digital Mixer", "I2S" } */ 352b7482f52SPhilipp Zabel 353b7482f52SPhilipp Zabel /* headphone driver */ 354b7482f52SPhilipp Zabel {"VOUTLHP", NULL, "HeadPhone Driver"}, 355b7482f52SPhilipp Zabel {"VOUTRHP", NULL, "HeadPhone Driver"}, 356b7482f52SPhilipp Zabel 357b7482f52SPhilipp Zabel /* input mux */ 358b7482f52SPhilipp Zabel {"Left ADC", NULL, "Input Mux"}, 359b7482f52SPhilipp Zabel {"Input Mux", "Mic", "Mic LNA"}, 360b7482f52SPhilipp Zabel {"Input Mux", "Mic + Line R", "Mic LNA"}, 361b7482f52SPhilipp Zabel {"Input Mux", "Line L", "Left PGA"}, 362b7482f52SPhilipp Zabel {"Input Mux", "Line", "Left PGA"}, 363b7482f52SPhilipp Zabel 364b7482f52SPhilipp Zabel /* right input */ 365b7482f52SPhilipp Zabel {"Right ADC", "Mic + Line R", "Right PGA"}, 366b7482f52SPhilipp Zabel {"Right ADC", "Line", "Right PGA"}, 367b7482f52SPhilipp Zabel 368b7482f52SPhilipp Zabel /* inputs */ 369b7482f52SPhilipp Zabel {"Mic LNA", NULL, "VINM"}, 370b7482f52SPhilipp Zabel {"Left PGA", NULL, "VINL"}, 371b7482f52SPhilipp Zabel {"Right PGA", NULL, "VINR"}, 372b7482f52SPhilipp Zabel }; 373b7482f52SPhilipp Zabel 374b7482f52SPhilipp Zabel static int uda1380_add_widgets(struct snd_soc_codec *codec) 375b7482f52SPhilipp Zabel { 376b7482f52SPhilipp Zabel snd_soc_dapm_new_controls(codec, uda1380_dapm_widgets, 377b7482f52SPhilipp Zabel ARRAY_SIZE(uda1380_dapm_widgets)); 378b7482f52SPhilipp Zabel 379b7482f52SPhilipp Zabel snd_soc_dapm_add_routes(codec, audio_map, ARRAY_SIZE(audio_map)); 380b7482f52SPhilipp Zabel 381b7482f52SPhilipp Zabel snd_soc_dapm_new_widgets(codec); 382b7482f52SPhilipp Zabel return 0; 383b7482f52SPhilipp Zabel } 384b7482f52SPhilipp Zabel 3855b247442SPhilipp Zabel static int uda1380_set_dai_fmt_both(struct snd_soc_dai *codec_dai, 386b7482f52SPhilipp Zabel unsigned int fmt) 387b7482f52SPhilipp Zabel { 388b7482f52SPhilipp Zabel struct snd_soc_codec *codec = codec_dai->codec; 389b7482f52SPhilipp Zabel int iface; 390b7482f52SPhilipp Zabel 391b7482f52SPhilipp Zabel /* set up DAI based upon fmt */ 392b7482f52SPhilipp Zabel iface = uda1380_read_reg_cache(codec, UDA1380_IFACE); 393b7482f52SPhilipp Zabel iface &= ~(R01_SFORI_MASK | R01_SIM | R01_SFORO_MASK); 394b7482f52SPhilipp Zabel 395b7482f52SPhilipp Zabel switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { 396b7482f52SPhilipp Zabel case SND_SOC_DAIFMT_I2S: 397b7482f52SPhilipp Zabel iface |= R01_SFORI_I2S | R01_SFORO_I2S; 398b7482f52SPhilipp Zabel break; 399b7482f52SPhilipp Zabel case SND_SOC_DAIFMT_LSB: 4005b247442SPhilipp Zabel iface |= R01_SFORI_LSB16 | R01_SFORO_LSB16; 401b7482f52SPhilipp Zabel break; 402b7482f52SPhilipp Zabel case SND_SOC_DAIFMT_MSB: 4035b247442SPhilipp Zabel iface |= R01_SFORI_MSB | R01_SFORO_MSB; 4045b247442SPhilipp Zabel } 4055b247442SPhilipp Zabel 4065f2a9384SPhilipp Zabel /* DATAI is slave only, so in single-link mode, this has to be slave */ 4075f2a9384SPhilipp Zabel if ((fmt & SND_SOC_DAIFMT_MASTER_MASK) != SND_SOC_DAIFMT_CBS_CFS) 4085f2a9384SPhilipp Zabel return -EINVAL; 4095b247442SPhilipp Zabel 4105b247442SPhilipp Zabel uda1380_write(codec, UDA1380_IFACE, iface); 4115b247442SPhilipp Zabel 4125b247442SPhilipp Zabel return 0; 4135b247442SPhilipp Zabel } 4145b247442SPhilipp Zabel 4155b247442SPhilipp Zabel static int uda1380_set_dai_fmt_playback(struct snd_soc_dai *codec_dai, 4165b247442SPhilipp Zabel unsigned int fmt) 4175b247442SPhilipp Zabel { 4185b247442SPhilipp Zabel struct snd_soc_codec *codec = codec_dai->codec; 4195b247442SPhilipp Zabel int iface; 4205b247442SPhilipp Zabel 4215b247442SPhilipp Zabel /* set up DAI based upon fmt */ 4225b247442SPhilipp Zabel iface = uda1380_read_reg_cache(codec, UDA1380_IFACE); 4235b247442SPhilipp Zabel iface &= ~R01_SFORI_MASK; 4245b247442SPhilipp Zabel 4255b247442SPhilipp Zabel switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { 4265b247442SPhilipp Zabel case SND_SOC_DAIFMT_I2S: 4275b247442SPhilipp Zabel iface |= R01_SFORI_I2S; 4285b247442SPhilipp Zabel break; 4295b247442SPhilipp Zabel case SND_SOC_DAIFMT_LSB: 4305b247442SPhilipp Zabel iface |= R01_SFORI_LSB16; 4315b247442SPhilipp Zabel break; 4325b247442SPhilipp Zabel case SND_SOC_DAIFMT_MSB: 4335b247442SPhilipp Zabel iface |= R01_SFORI_MSB; 4345b247442SPhilipp Zabel } 4355b247442SPhilipp Zabel 4365f2a9384SPhilipp Zabel /* DATAI is slave only, so this has to be slave */ 4375f2a9384SPhilipp Zabel if ((fmt & SND_SOC_DAIFMT_MASTER_MASK) != SND_SOC_DAIFMT_CBS_CFS) 4385f2a9384SPhilipp Zabel return -EINVAL; 4395f2a9384SPhilipp Zabel 4405b247442SPhilipp Zabel uda1380_write(codec, UDA1380_IFACE, iface); 4415b247442SPhilipp Zabel 4425b247442SPhilipp Zabel return 0; 4435b247442SPhilipp Zabel } 4445b247442SPhilipp Zabel 4455b247442SPhilipp Zabel static int uda1380_set_dai_fmt_capture(struct snd_soc_dai *codec_dai, 4465b247442SPhilipp Zabel unsigned int fmt) 4475b247442SPhilipp Zabel { 4485b247442SPhilipp Zabel struct snd_soc_codec *codec = codec_dai->codec; 4495b247442SPhilipp Zabel int iface; 4505b247442SPhilipp Zabel 4515b247442SPhilipp Zabel /* set up DAI based upon fmt */ 4525b247442SPhilipp Zabel iface = uda1380_read_reg_cache(codec, UDA1380_IFACE); 4535b247442SPhilipp Zabel iface &= ~(R01_SIM | R01_SFORO_MASK); 4545b247442SPhilipp Zabel 4555b247442SPhilipp Zabel switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) { 4565b247442SPhilipp Zabel case SND_SOC_DAIFMT_I2S: 4575b247442SPhilipp Zabel iface |= R01_SFORO_I2S; 4585b247442SPhilipp Zabel break; 4595b247442SPhilipp Zabel case SND_SOC_DAIFMT_LSB: 4605b247442SPhilipp Zabel iface |= R01_SFORO_LSB16; 4615b247442SPhilipp Zabel break; 4625b247442SPhilipp Zabel case SND_SOC_DAIFMT_MSB: 4635b247442SPhilipp Zabel iface |= R01_SFORO_MSB; 464b7482f52SPhilipp Zabel } 465b7482f52SPhilipp Zabel 466b7482f52SPhilipp Zabel if ((fmt & SND_SOC_DAIFMT_MASTER_MASK) == SND_SOC_DAIFMT_CBM_CFM) 467b7482f52SPhilipp Zabel iface |= R01_SIM; 468b7482f52SPhilipp Zabel 469b7482f52SPhilipp Zabel uda1380_write(codec, UDA1380_IFACE, iface); 470b7482f52SPhilipp Zabel 471b7482f52SPhilipp Zabel return 0; 472b7482f52SPhilipp Zabel } 473b7482f52SPhilipp Zabel 474ef9e5e5cSPhilipp Zabel static int uda1380_trigger(struct snd_pcm_substream *substream, int cmd, 475dee89c4dSMark Brown struct snd_soc_dai *dai) 476b7482f52SPhilipp Zabel { 477b7482f52SPhilipp Zabel struct snd_soc_pcm_runtime *rtd = substream->private_data; 478b7482f52SPhilipp Zabel struct snd_soc_device *socdev = rtd->socdev; 4796627a653SMark Brown struct snd_soc_codec *codec = socdev->card->codec; 480*1abd9184SPhilipp Zabel struct uda1380_priv *uda1380 = codec->private_data; 481ef9e5e5cSPhilipp Zabel int mixer = uda1380_read_reg_cache(codec, UDA1380_MIXER); 482b7482f52SPhilipp Zabel 483ef9e5e5cSPhilipp Zabel switch (cmd) { 484ef9e5e5cSPhilipp Zabel case SNDRV_PCM_TRIGGER_START: 485ef9e5e5cSPhilipp Zabel case SNDRV_PCM_TRIGGER_PAUSE_RELEASE: 486ef9e5e5cSPhilipp Zabel uda1380_write_reg_cache(codec, UDA1380_MIXER, 487ef9e5e5cSPhilipp Zabel mixer & ~R14_SILENCE); 488*1abd9184SPhilipp Zabel schedule_work(&uda1380->work); 489ef9e5e5cSPhilipp Zabel break; 490ef9e5e5cSPhilipp Zabel case SNDRV_PCM_TRIGGER_STOP: 491ef9e5e5cSPhilipp Zabel case SNDRV_PCM_TRIGGER_PAUSE_PUSH: 492ef9e5e5cSPhilipp Zabel uda1380_write_reg_cache(codec, UDA1380_MIXER, 493ef9e5e5cSPhilipp Zabel mixer | R14_SILENCE); 494*1abd9184SPhilipp Zabel schedule_work(&uda1380->work); 495ef9e5e5cSPhilipp Zabel break; 496b7482f52SPhilipp Zabel } 497b7482f52SPhilipp Zabel return 0; 498b7482f52SPhilipp Zabel } 499b7482f52SPhilipp Zabel 500b7482f52SPhilipp Zabel static int uda1380_pcm_hw_params(struct snd_pcm_substream *substream, 501dee89c4dSMark Brown struct snd_pcm_hw_params *params, 502dee89c4dSMark Brown struct snd_soc_dai *dai) 503b7482f52SPhilipp Zabel { 504b7482f52SPhilipp Zabel struct snd_soc_pcm_runtime *rtd = substream->private_data; 505b7482f52SPhilipp Zabel struct snd_soc_device *socdev = rtd->socdev; 5066627a653SMark Brown struct snd_soc_codec *codec = socdev->card->codec; 507b7482f52SPhilipp Zabel u16 clk = uda1380_read_reg_cache(codec, UDA1380_CLK); 508b7482f52SPhilipp Zabel 509b7482f52SPhilipp Zabel /* set WSPLL power and divider if running from this clock */ 510b7482f52SPhilipp Zabel if (clk & R00_DAC_CLK) { 511b7482f52SPhilipp Zabel int rate = params_rate(params); 512b7482f52SPhilipp Zabel u16 pm = uda1380_read_reg_cache(codec, UDA1380_PM); 513b7482f52SPhilipp Zabel clk &= ~0x3; /* clear SEL_LOOP_DIV */ 514b7482f52SPhilipp Zabel switch (rate) { 515b7482f52SPhilipp Zabel case 6250 ... 12500: 516b7482f52SPhilipp Zabel clk |= 0x0; 517b7482f52SPhilipp Zabel break; 518b7482f52SPhilipp Zabel case 12501 ... 25000: 519b7482f52SPhilipp Zabel clk |= 0x1; 520b7482f52SPhilipp Zabel break; 521b7482f52SPhilipp Zabel case 25001 ... 50000: 522b7482f52SPhilipp Zabel clk |= 0x2; 523b7482f52SPhilipp Zabel break; 524b7482f52SPhilipp Zabel case 50001 ... 100000: 525b7482f52SPhilipp Zabel clk |= 0x3; 526b7482f52SPhilipp Zabel break; 527b7482f52SPhilipp Zabel } 528b7482f52SPhilipp Zabel uda1380_write(codec, UDA1380_PM, R02_PON_PLL | pm); 529b7482f52SPhilipp Zabel } 530b7482f52SPhilipp Zabel 531b7482f52SPhilipp Zabel if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 532b7482f52SPhilipp Zabel clk |= R00_EN_DAC | R00_EN_INT; 533b7482f52SPhilipp Zabel else 534b7482f52SPhilipp Zabel clk |= R00_EN_ADC | R00_EN_DEC; 535b7482f52SPhilipp Zabel 536b7482f52SPhilipp Zabel uda1380_write(codec, UDA1380_CLK, clk); 537b7482f52SPhilipp Zabel return 0; 538b7482f52SPhilipp Zabel } 539b7482f52SPhilipp Zabel 540dee89c4dSMark Brown static void uda1380_pcm_shutdown(struct snd_pcm_substream *substream, 541dee89c4dSMark Brown struct snd_soc_dai *dai) 542b7482f52SPhilipp Zabel { 543b7482f52SPhilipp Zabel struct snd_soc_pcm_runtime *rtd = substream->private_data; 544b7482f52SPhilipp Zabel struct snd_soc_device *socdev = rtd->socdev; 5456627a653SMark Brown struct snd_soc_codec *codec = socdev->card->codec; 546b7482f52SPhilipp Zabel u16 clk = uda1380_read_reg_cache(codec, UDA1380_CLK); 547b7482f52SPhilipp Zabel 548b7482f52SPhilipp Zabel /* shut down WSPLL power if running from this clock */ 549b7482f52SPhilipp Zabel if (clk & R00_DAC_CLK) { 550b7482f52SPhilipp Zabel u16 pm = uda1380_read_reg_cache(codec, UDA1380_PM); 551b7482f52SPhilipp Zabel uda1380_write(codec, UDA1380_PM, ~R02_PON_PLL & pm); 552b7482f52SPhilipp Zabel } 553b7482f52SPhilipp Zabel 554b7482f52SPhilipp Zabel if (substream->stream == SNDRV_PCM_STREAM_PLAYBACK) 555b7482f52SPhilipp Zabel clk &= ~(R00_EN_DAC | R00_EN_INT); 556b7482f52SPhilipp Zabel else 557b7482f52SPhilipp Zabel clk &= ~(R00_EN_ADC | R00_EN_DEC); 558b7482f52SPhilipp Zabel 559b7482f52SPhilipp Zabel uda1380_write(codec, UDA1380_CLK, clk); 560b7482f52SPhilipp Zabel } 561b7482f52SPhilipp Zabel 562b7482f52SPhilipp Zabel static int uda1380_set_bias_level(struct snd_soc_codec *codec, 563b7482f52SPhilipp Zabel enum snd_soc_bias_level level) 564b7482f52SPhilipp Zabel { 565b7482f52SPhilipp Zabel int pm = uda1380_read_reg_cache(codec, UDA1380_PM); 566b7482f52SPhilipp Zabel 567b7482f52SPhilipp Zabel switch (level) { 568b7482f52SPhilipp Zabel case SND_SOC_BIAS_ON: 569b7482f52SPhilipp Zabel case SND_SOC_BIAS_PREPARE: 570b7482f52SPhilipp Zabel uda1380_write(codec, UDA1380_PM, R02_PON_BIAS | pm); 571b7482f52SPhilipp Zabel break; 572b7482f52SPhilipp Zabel case SND_SOC_BIAS_STANDBY: 573b7482f52SPhilipp Zabel uda1380_write(codec, UDA1380_PM, R02_PON_BIAS); 574b7482f52SPhilipp Zabel break; 575b7482f52SPhilipp Zabel case SND_SOC_BIAS_OFF: 576b7482f52SPhilipp Zabel uda1380_write(codec, UDA1380_PM, 0x0); 577b7482f52SPhilipp Zabel break; 578b7482f52SPhilipp Zabel } 579b7482f52SPhilipp Zabel codec->bias_level = level; 580b7482f52SPhilipp Zabel return 0; 581b7482f52SPhilipp Zabel } 582b7482f52SPhilipp Zabel 583b7482f52SPhilipp Zabel #define UDA1380_RATES (SNDRV_PCM_RATE_8000 | SNDRV_PCM_RATE_11025 |\ 584b7482f52SPhilipp Zabel SNDRV_PCM_RATE_16000 | SNDRV_PCM_RATE_22050 |\ 585b7482f52SPhilipp Zabel SNDRV_PCM_RATE_44100 | SNDRV_PCM_RATE_48000) 586b7482f52SPhilipp Zabel 5876335d055SEric Miao static struct snd_soc_dai_ops uda1380_dai_ops = { 5886335d055SEric Miao .hw_params = uda1380_pcm_hw_params, 5896335d055SEric Miao .shutdown = uda1380_pcm_shutdown, 59065ec1cd1SMark Brown .trigger = uda1380_trigger, 5916335d055SEric Miao .set_fmt = uda1380_set_dai_fmt_both, 5926335d055SEric Miao }; 5936335d055SEric Miao 5946335d055SEric Miao static struct snd_soc_dai_ops uda1380_dai_ops_playback = { 5956335d055SEric Miao .hw_params = uda1380_pcm_hw_params, 5966335d055SEric Miao .shutdown = uda1380_pcm_shutdown, 59765ec1cd1SMark Brown .trigger = uda1380_trigger, 5986335d055SEric Miao .set_fmt = uda1380_set_dai_fmt_playback, 5996335d055SEric Miao }; 6006335d055SEric Miao 6016335d055SEric Miao static struct snd_soc_dai_ops uda1380_dai_ops_capture = { 6026335d055SEric Miao .hw_params = uda1380_pcm_hw_params, 6036335d055SEric Miao .shutdown = uda1380_pcm_shutdown, 60465ec1cd1SMark Brown .trigger = uda1380_trigger, 6056335d055SEric Miao .set_fmt = uda1380_set_dai_fmt_capture, 6066335d055SEric Miao }; 6076335d055SEric Miao 608e550e17fSLiam Girdwood struct snd_soc_dai uda1380_dai[] = { 609b7482f52SPhilipp Zabel { 610b7482f52SPhilipp Zabel .name = "UDA1380", 611b7482f52SPhilipp Zabel .playback = { 612b7482f52SPhilipp Zabel .stream_name = "Playback", 613b7482f52SPhilipp Zabel .channels_min = 1, 614b7482f52SPhilipp Zabel .channels_max = 2, 615b7482f52SPhilipp Zabel .rates = UDA1380_RATES, 616b7482f52SPhilipp Zabel .formats = SNDRV_PCM_FMTBIT_S16_LE,}, 617b7482f52SPhilipp Zabel .capture = { 618b7482f52SPhilipp Zabel .stream_name = "Capture", 619b7482f52SPhilipp Zabel .channels_min = 1, 620b7482f52SPhilipp Zabel .channels_max = 2, 621b7482f52SPhilipp Zabel .rates = UDA1380_RATES, 622b7482f52SPhilipp Zabel .formats = SNDRV_PCM_FMTBIT_S16_LE,}, 6236335d055SEric Miao .ops = &uda1380_dai_ops, 624b7482f52SPhilipp Zabel }, 625b7482f52SPhilipp Zabel { /* playback only - dual interface */ 626b7482f52SPhilipp Zabel .name = "UDA1380", 627b7482f52SPhilipp Zabel .playback = { 628b7482f52SPhilipp Zabel .stream_name = "Playback", 629b7482f52SPhilipp Zabel .channels_min = 1, 630b7482f52SPhilipp Zabel .channels_max = 2, 631b7482f52SPhilipp Zabel .rates = UDA1380_RATES, 632b7482f52SPhilipp Zabel .formats = SNDRV_PCM_FMTBIT_S16_LE, 633b7482f52SPhilipp Zabel }, 6346335d055SEric Miao .ops = &uda1380_dai_ops_playback, 635b7482f52SPhilipp Zabel }, 636b7482f52SPhilipp Zabel { /* capture only - dual interface*/ 637b7482f52SPhilipp Zabel .name = "UDA1380", 638b7482f52SPhilipp Zabel .capture = { 639b7482f52SPhilipp Zabel .stream_name = "Capture", 640b7482f52SPhilipp Zabel .channels_min = 1, 641b7482f52SPhilipp Zabel .channels_max = 2, 642b7482f52SPhilipp Zabel .rates = UDA1380_RATES, 643b7482f52SPhilipp Zabel .formats = SNDRV_PCM_FMTBIT_S16_LE, 644b7482f52SPhilipp Zabel }, 6456335d055SEric Miao .ops = &uda1380_dai_ops_capture, 646b7482f52SPhilipp Zabel }, 647b7482f52SPhilipp Zabel }; 648b7482f52SPhilipp Zabel EXPORT_SYMBOL_GPL(uda1380_dai); 649b7482f52SPhilipp Zabel 650b7482f52SPhilipp Zabel static int uda1380_suspend(struct platform_device *pdev, pm_message_t state) 651b7482f52SPhilipp Zabel { 652b7482f52SPhilipp Zabel struct snd_soc_device *socdev = platform_get_drvdata(pdev); 6536627a653SMark Brown struct snd_soc_codec *codec = socdev->card->codec; 654b7482f52SPhilipp Zabel 655b7482f52SPhilipp Zabel uda1380_set_bias_level(codec, SND_SOC_BIAS_OFF); 656b7482f52SPhilipp Zabel return 0; 657b7482f52SPhilipp Zabel } 658b7482f52SPhilipp Zabel 659b7482f52SPhilipp Zabel static int uda1380_resume(struct platform_device *pdev) 660b7482f52SPhilipp Zabel { 661b7482f52SPhilipp Zabel struct snd_soc_device *socdev = platform_get_drvdata(pdev); 6626627a653SMark Brown struct snd_soc_codec *codec = socdev->card->codec; 663b7482f52SPhilipp Zabel int i; 664b7482f52SPhilipp Zabel u8 data[2]; 665b7482f52SPhilipp Zabel u16 *cache = codec->reg_cache; 666b7482f52SPhilipp Zabel 667b7482f52SPhilipp Zabel /* Sync reg_cache with the hardware */ 668b7482f52SPhilipp Zabel for (i = 0; i < ARRAY_SIZE(uda1380_reg); i++) { 669b7482f52SPhilipp Zabel data[0] = (i << 1) | ((cache[i] >> 8) & 0x0001); 670b7482f52SPhilipp Zabel data[1] = cache[i] & 0x00ff; 671b7482f52SPhilipp Zabel codec->hw_write(codec->control_data, data, 2); 672b7482f52SPhilipp Zabel } 673b7482f52SPhilipp Zabel uda1380_set_bias_level(codec, SND_SOC_BIAS_STANDBY); 674b7482f52SPhilipp Zabel uda1380_set_bias_level(codec, codec->suspend_bias_level); 675b7482f52SPhilipp Zabel return 0; 676b7482f52SPhilipp Zabel } 677b7482f52SPhilipp Zabel 678*1abd9184SPhilipp Zabel static int uda1380_probe(struct platform_device *pdev) 679b7482f52SPhilipp Zabel { 680*1abd9184SPhilipp Zabel struct snd_soc_device *socdev = platform_get_drvdata(pdev); 681*1abd9184SPhilipp Zabel struct snd_soc_codec *codec; 682*1abd9184SPhilipp Zabel struct uda1380_platform_data *pdata; 683b7482f52SPhilipp Zabel int ret = 0; 684b7482f52SPhilipp Zabel 685*1abd9184SPhilipp Zabel if (uda1380_codec == NULL) { 686*1abd9184SPhilipp Zabel dev_err(&pdev->dev, "Codec device not registered\n"); 687*1abd9184SPhilipp Zabel return -ENODEV; 688*1abd9184SPhilipp Zabel } 689b7482f52SPhilipp Zabel 690*1abd9184SPhilipp Zabel socdev->card->codec = uda1380_codec; 691*1abd9184SPhilipp Zabel codec = uda1380_codec; 692*1abd9184SPhilipp Zabel pdata = codec->dev->platform_data; 693ef9e5e5cSPhilipp Zabel 694b7482f52SPhilipp Zabel /* register pcms */ 695b7482f52SPhilipp Zabel ret = snd_soc_new_pcms(socdev, SNDRV_DEFAULT_IDX1, SNDRV_DEFAULT_STR1); 696b7482f52SPhilipp Zabel if (ret < 0) { 697*1abd9184SPhilipp Zabel dev_err(codec->dev, "failed to create pcms: %d\n", ret); 698b7482f52SPhilipp Zabel goto pcm_err; 699b7482f52SPhilipp Zabel } 700b7482f52SPhilipp Zabel 701b7482f52SPhilipp Zabel /* power on device */ 702b7482f52SPhilipp Zabel uda1380_set_bias_level(codec, SND_SOC_BIAS_STANDBY); 703b7482f52SPhilipp Zabel /* set clock input */ 704*1abd9184SPhilipp Zabel switch (pdata->dac_clk) { 705b7482f52SPhilipp Zabel case UDA1380_DAC_CLK_SYSCLK: 706b7482f52SPhilipp Zabel uda1380_write(codec, UDA1380_CLK, 0); 707b7482f52SPhilipp Zabel break; 708b7482f52SPhilipp Zabel case UDA1380_DAC_CLK_WSPLL: 709b7482f52SPhilipp Zabel uda1380_write(codec, UDA1380_CLK, R00_DAC_CLK); 710b7482f52SPhilipp Zabel break; 711b7482f52SPhilipp Zabel } 712b7482f52SPhilipp Zabel 7133e8e1952SIan Molton snd_soc_add_controls(codec, uda1380_snd_controls, 7143e8e1952SIan Molton ARRAY_SIZE(uda1380_snd_controls)); 715b7482f52SPhilipp Zabel uda1380_add_widgets(codec); 716968a6025SMark Brown ret = snd_soc_init_card(socdev); 717b7482f52SPhilipp Zabel if (ret < 0) { 718*1abd9184SPhilipp Zabel dev_err(codec->dev, "failed to register card: %d\n", ret); 719b7482f52SPhilipp Zabel goto card_err; 720b7482f52SPhilipp Zabel } 721b7482f52SPhilipp Zabel 722b7482f52SPhilipp Zabel return ret; 723b7482f52SPhilipp Zabel 724b7482f52SPhilipp Zabel card_err: 725b7482f52SPhilipp Zabel snd_soc_free_pcms(socdev); 726b7482f52SPhilipp Zabel snd_soc_dapm_free(socdev); 727b7482f52SPhilipp Zabel pcm_err: 728b7482f52SPhilipp Zabel return ret; 729b7482f52SPhilipp Zabel } 730b7482f52SPhilipp Zabel 731*1abd9184SPhilipp Zabel /* power down chip */ 732*1abd9184SPhilipp Zabel static int uda1380_remove(struct platform_device *pdev) 733*1abd9184SPhilipp Zabel { 734*1abd9184SPhilipp Zabel struct snd_soc_device *socdev = platform_get_drvdata(pdev); 735*1abd9184SPhilipp Zabel struct snd_soc_codec *codec = socdev->card->codec; 736*1abd9184SPhilipp Zabel 737*1abd9184SPhilipp Zabel if (codec->control_data) 738*1abd9184SPhilipp Zabel uda1380_set_bias_level(codec, SND_SOC_BIAS_OFF); 739*1abd9184SPhilipp Zabel 740*1abd9184SPhilipp Zabel snd_soc_free_pcms(socdev); 741*1abd9184SPhilipp Zabel snd_soc_dapm_free(socdev); 742*1abd9184SPhilipp Zabel 743*1abd9184SPhilipp Zabel return 0; 744*1abd9184SPhilipp Zabel } 745*1abd9184SPhilipp Zabel 746*1abd9184SPhilipp Zabel struct snd_soc_codec_device soc_codec_dev_uda1380 = { 747*1abd9184SPhilipp Zabel .probe = uda1380_probe, 748*1abd9184SPhilipp Zabel .remove = uda1380_remove, 749*1abd9184SPhilipp Zabel .suspend = uda1380_suspend, 750*1abd9184SPhilipp Zabel .resume = uda1380_resume, 751*1abd9184SPhilipp Zabel }; 752*1abd9184SPhilipp Zabel EXPORT_SYMBOL_GPL(soc_codec_dev_uda1380); 753*1abd9184SPhilipp Zabel 754*1abd9184SPhilipp Zabel static int uda1380_register(struct uda1380_priv *uda1380) 755*1abd9184SPhilipp Zabel { 756*1abd9184SPhilipp Zabel int ret, i; 757*1abd9184SPhilipp Zabel struct snd_soc_codec *codec = &uda1380->codec; 758*1abd9184SPhilipp Zabel struct uda1380_platform_data *pdata = codec->dev->platform_data; 759*1abd9184SPhilipp Zabel 760*1abd9184SPhilipp Zabel if (uda1380_codec) { 761*1abd9184SPhilipp Zabel dev_err(codec->dev, "Another UDA1380 is registered\n"); 762*1abd9184SPhilipp Zabel return -EINVAL; 763*1abd9184SPhilipp Zabel } 764*1abd9184SPhilipp Zabel 765*1abd9184SPhilipp Zabel if (!pdata || !pdata->gpio_power || !pdata->gpio_reset) 766*1abd9184SPhilipp Zabel return -EINVAL; 767*1abd9184SPhilipp Zabel 768*1abd9184SPhilipp Zabel ret = gpio_request(pdata->gpio_power, "uda1380 power"); 769*1abd9184SPhilipp Zabel if (ret) 770*1abd9184SPhilipp Zabel goto err_out; 771*1abd9184SPhilipp Zabel ret = gpio_request(pdata->gpio_reset, "uda1380 reset"); 772*1abd9184SPhilipp Zabel if (ret) 773*1abd9184SPhilipp Zabel goto err_gpio; 774*1abd9184SPhilipp Zabel 775*1abd9184SPhilipp Zabel gpio_direction_output(pdata->gpio_power, 1); 776*1abd9184SPhilipp Zabel 777*1abd9184SPhilipp Zabel /* we may need to have the clock running here - pH5 */ 778*1abd9184SPhilipp Zabel gpio_direction_output(pdata->gpio_reset, 1); 779*1abd9184SPhilipp Zabel udelay(5); 780*1abd9184SPhilipp Zabel gpio_set_value(pdata->gpio_reset, 0); 781*1abd9184SPhilipp Zabel 782*1abd9184SPhilipp Zabel mutex_init(&codec->mutex); 783*1abd9184SPhilipp Zabel INIT_LIST_HEAD(&codec->dapm_widgets); 784*1abd9184SPhilipp Zabel INIT_LIST_HEAD(&codec->dapm_paths); 785*1abd9184SPhilipp Zabel 786*1abd9184SPhilipp Zabel codec->private_data = uda1380; 787*1abd9184SPhilipp Zabel codec->name = "UDA1380"; 788*1abd9184SPhilipp Zabel codec->owner = THIS_MODULE; 789*1abd9184SPhilipp Zabel codec->read = uda1380_read_reg_cache; 790*1abd9184SPhilipp Zabel codec->write = uda1380_write; 791*1abd9184SPhilipp Zabel codec->bias_level = SND_SOC_BIAS_OFF; 792*1abd9184SPhilipp Zabel codec->set_bias_level = uda1380_set_bias_level; 793*1abd9184SPhilipp Zabel codec->dai = uda1380_dai; 794*1abd9184SPhilipp Zabel codec->num_dai = ARRAY_SIZE(uda1380_dai); 795*1abd9184SPhilipp Zabel codec->reg_cache_size = ARRAY_SIZE(uda1380_reg); 796*1abd9184SPhilipp Zabel codec->reg_cache = &uda1380->reg_cache; 797*1abd9184SPhilipp Zabel codec->reg_cache_step = 1; 798*1abd9184SPhilipp Zabel 799*1abd9184SPhilipp Zabel memcpy(codec->reg_cache, uda1380_reg, sizeof(uda1380_reg)); 800*1abd9184SPhilipp Zabel 801*1abd9184SPhilipp Zabel ret = uda1380_reset(codec); 802*1abd9184SPhilipp Zabel if (ret < 0) { 803*1abd9184SPhilipp Zabel dev_err(codec->dev, "Failed to issue reset\n"); 804*1abd9184SPhilipp Zabel goto err_reset; 805*1abd9184SPhilipp Zabel } 806*1abd9184SPhilipp Zabel 807*1abd9184SPhilipp Zabel INIT_WORK(&uda1380->work, uda1380_flush_work); 808*1abd9184SPhilipp Zabel 809*1abd9184SPhilipp Zabel for (i = 0; i < ARRAY_SIZE(uda1380_dai); i++) 810*1abd9184SPhilipp Zabel uda1380_dai[i].dev = codec->dev; 811*1abd9184SPhilipp Zabel 812*1abd9184SPhilipp Zabel uda1380_codec = codec; 813*1abd9184SPhilipp Zabel 814*1abd9184SPhilipp Zabel ret = snd_soc_register_codec(codec); 815*1abd9184SPhilipp Zabel if (ret != 0) { 816*1abd9184SPhilipp Zabel dev_err(codec->dev, "Failed to register codec: %d\n", ret); 817*1abd9184SPhilipp Zabel goto err_reset; 818*1abd9184SPhilipp Zabel } 819*1abd9184SPhilipp Zabel 820*1abd9184SPhilipp Zabel ret = snd_soc_register_dais(uda1380_dai, ARRAY_SIZE(uda1380_dai)); 821*1abd9184SPhilipp Zabel if (ret != 0) { 822*1abd9184SPhilipp Zabel dev_err(codec->dev, "Failed to register DAIs: %d\n", ret); 823*1abd9184SPhilipp Zabel goto err_dai; 824*1abd9184SPhilipp Zabel } 825*1abd9184SPhilipp Zabel 826*1abd9184SPhilipp Zabel return 0; 827*1abd9184SPhilipp Zabel 828*1abd9184SPhilipp Zabel err_dai: 829*1abd9184SPhilipp Zabel snd_soc_unregister_codec(codec); 830*1abd9184SPhilipp Zabel err_reset: 831*1abd9184SPhilipp Zabel gpio_set_value(pdata->gpio_power, 0); 832*1abd9184SPhilipp Zabel gpio_free(pdata->gpio_reset); 833*1abd9184SPhilipp Zabel err_gpio: 834*1abd9184SPhilipp Zabel gpio_free(pdata->gpio_power); 835*1abd9184SPhilipp Zabel err_out: 836*1abd9184SPhilipp Zabel return ret; 837*1abd9184SPhilipp Zabel } 838*1abd9184SPhilipp Zabel 839*1abd9184SPhilipp Zabel static void uda1380_unregister(struct uda1380_priv *uda1380) 840*1abd9184SPhilipp Zabel { 841*1abd9184SPhilipp Zabel struct snd_soc_codec *codec = &uda1380->codec; 842*1abd9184SPhilipp Zabel struct uda1380_platform_data *pdata = codec->dev->platform_data; 843*1abd9184SPhilipp Zabel 844*1abd9184SPhilipp Zabel snd_soc_unregister_dais(uda1380_dai, ARRAY_SIZE(uda1380_dai)); 845*1abd9184SPhilipp Zabel snd_soc_unregister_codec(&uda1380->codec); 846*1abd9184SPhilipp Zabel 847*1abd9184SPhilipp Zabel gpio_set_value(pdata->gpio_power, 0); 848*1abd9184SPhilipp Zabel gpio_free(pdata->gpio_reset); 849*1abd9184SPhilipp Zabel gpio_free(pdata->gpio_power); 850*1abd9184SPhilipp Zabel 851*1abd9184SPhilipp Zabel kfree(uda1380); 852*1abd9184SPhilipp Zabel uda1380_codec = NULL; 853*1abd9184SPhilipp Zabel } 854b7482f52SPhilipp Zabel 855b7482f52SPhilipp Zabel #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) 856*1abd9184SPhilipp Zabel static __devinit int uda1380_i2c_probe(struct i2c_client *i2c, 85788fc39d7SJean Delvare const struct i2c_device_id *id) 858b7482f52SPhilipp Zabel { 859*1abd9184SPhilipp Zabel struct uda1380_priv *uda1380; 860*1abd9184SPhilipp Zabel struct snd_soc_codec *codec; 861b7482f52SPhilipp Zabel int ret; 862b7482f52SPhilipp Zabel 863*1abd9184SPhilipp Zabel uda1380 = kzalloc(sizeof(struct uda1380_priv), GFP_KERNEL); 864*1abd9184SPhilipp Zabel if (uda1380 == NULL) 865*1abd9184SPhilipp Zabel return -ENOMEM; 866*1abd9184SPhilipp Zabel 867*1abd9184SPhilipp Zabel codec = &uda1380->codec; 868*1abd9184SPhilipp Zabel codec->hw_write = (hw_write_t)i2c_master_send; 869*1abd9184SPhilipp Zabel 870*1abd9184SPhilipp Zabel i2c_set_clientdata(i2c, uda1380); 871b7482f52SPhilipp Zabel codec->control_data = i2c; 872b7482f52SPhilipp Zabel 873*1abd9184SPhilipp Zabel codec->dev = &i2c->dev; 874*1abd9184SPhilipp Zabel 875*1abd9184SPhilipp Zabel ret = uda1380_register(uda1380); 876*1abd9184SPhilipp Zabel if (ret != 0) 877*1abd9184SPhilipp Zabel kfree(uda1380); 878b7482f52SPhilipp Zabel 879b7482f52SPhilipp Zabel return ret; 880b7482f52SPhilipp Zabel } 881b7482f52SPhilipp Zabel 882*1abd9184SPhilipp Zabel static int __devexit uda1380_i2c_remove(struct i2c_client *i2c) 883b7482f52SPhilipp Zabel { 884*1abd9184SPhilipp Zabel struct uda1380_priv *uda1380 = i2c_get_clientdata(i2c); 885*1abd9184SPhilipp Zabel uda1380_unregister(uda1380); 886b7482f52SPhilipp Zabel return 0; 887b7482f52SPhilipp Zabel } 888b7482f52SPhilipp Zabel 88988fc39d7SJean Delvare static const struct i2c_device_id uda1380_i2c_id[] = { 89088fc39d7SJean Delvare { "uda1380", 0 }, 89188fc39d7SJean Delvare { } 89288fc39d7SJean Delvare }; 89388fc39d7SJean Delvare MODULE_DEVICE_TABLE(i2c, uda1380_i2c_id); 894b7482f52SPhilipp Zabel 895b7482f52SPhilipp Zabel static struct i2c_driver uda1380_i2c_driver = { 896b7482f52SPhilipp Zabel .driver = { 897b7482f52SPhilipp Zabel .name = "UDA1380 I2C Codec", 898b7482f52SPhilipp Zabel .owner = THIS_MODULE, 899b7482f52SPhilipp Zabel }, 90088fc39d7SJean Delvare .probe = uda1380_i2c_probe, 901*1abd9184SPhilipp Zabel .remove = __devexit_p(uda1380_i2c_remove), 90288fc39d7SJean Delvare .id_table = uda1380_i2c_id, 903b7482f52SPhilipp Zabel }; 904b7482f52SPhilipp Zabel #endif 905b7482f52SPhilipp Zabel 906c9b3a40fSTakashi Iwai static int __init uda1380_modinit(void) 90764089b84SMark Brown { 908*1abd9184SPhilipp Zabel int ret; 909*1abd9184SPhilipp Zabel #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) 910*1abd9184SPhilipp Zabel ret = i2c_add_driver(&uda1380_i2c_driver); 911*1abd9184SPhilipp Zabel if (ret != 0) 912*1abd9184SPhilipp Zabel pr_err("Failed to register UDA1380 I2C driver: %d\n", ret); 913*1abd9184SPhilipp Zabel #endif 914*1abd9184SPhilipp Zabel return 0; 91564089b84SMark Brown } 91664089b84SMark Brown module_init(uda1380_modinit); 91764089b84SMark Brown 91864089b84SMark Brown static void __exit uda1380_exit(void) 91964089b84SMark Brown { 920*1abd9184SPhilipp Zabel #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) 921*1abd9184SPhilipp Zabel i2c_del_driver(&uda1380_i2c_driver); 922*1abd9184SPhilipp Zabel #endif 92364089b84SMark Brown } 92464089b84SMark Brown module_exit(uda1380_exit); 92564089b84SMark Brown 926b7482f52SPhilipp Zabel MODULE_AUTHOR("Giorgio Padrin"); 927b7482f52SPhilipp Zabel MODULE_DESCRIPTION("Audio support for codec Philips UDA1380"); 928b7482f52SPhilipp Zabel MODULE_LICENSE("GPL"); 929