diff options
Diffstat (limited to 'sound/soc/codecs/ssm2602.c')
-rw-r--r-- | sound/soc/codecs/ssm2602.c | 464 |
1 files changed, 256 insertions, 208 deletions
diff --git a/sound/soc/codecs/ssm2602.c b/sound/soc/codecs/ssm2602.c index b04d28039c16..84f4ad568556 100644 --- a/sound/soc/codecs/ssm2602.c +++ b/sound/soc/codecs/ssm2602.c | |||
@@ -32,6 +32,7 @@ | |||
32 | #include <linux/delay.h> | 32 | #include <linux/delay.h> |
33 | #include <linux/pm.h> | 33 | #include <linux/pm.h> |
34 | #include <linux/i2c.h> | 34 | #include <linux/i2c.h> |
35 | #include <linux/spi/spi.h> | ||
35 | #include <linux/platform_device.h> | 36 | #include <linux/platform_device.h> |
36 | #include <linux/slab.h> | 37 | #include <linux/slab.h> |
37 | #include <sound/core.h> | 38 | #include <sound/core.h> |
@@ -39,18 +40,25 @@ | |||
39 | #include <sound/pcm_params.h> | 40 | #include <sound/pcm_params.h> |
40 | #include <sound/soc.h> | 41 | #include <sound/soc.h> |
41 | #include <sound/initval.h> | 42 | #include <sound/initval.h> |
43 | #include <sound/tlv.h> | ||
42 | 44 | ||
43 | #include "ssm2602.h" | 45 | #include "ssm2602.h" |
44 | 46 | ||
45 | #define SSM2602_VERSION "0.1" | 47 | #define SSM2602_VERSION "0.1" |
46 | 48 | ||
49 | enum ssm2602_type { | ||
50 | SSM2602, | ||
51 | SSM2604, | ||
52 | }; | ||
53 | |||
47 | /* codec private data */ | 54 | /* codec private data */ |
48 | struct ssm2602_priv { | 55 | struct ssm2602_priv { |
49 | unsigned int sysclk; | 56 | unsigned int sysclk; |
50 | enum snd_soc_control_type control_type; | 57 | enum snd_soc_control_type control_type; |
51 | void *control_data; | ||
52 | struct snd_pcm_substream *master_substream; | 58 | struct snd_pcm_substream *master_substream; |
53 | struct snd_pcm_substream *slave_substream; | 59 | struct snd_pcm_substream *slave_substream; |
60 | |||
61 | enum ssm2602_type type; | ||
54 | }; | 62 | }; |
55 | 63 | ||
56 | /* | 64 | /* |
@@ -60,60 +68,12 @@ struct ssm2602_priv { | |||
60 | * There is no point in caching the reset register | 68 | * There is no point in caching the reset register |
61 | */ | 69 | */ |
62 | static const u16 ssm2602_reg[SSM2602_CACHEREGNUM] = { | 70 | static const u16 ssm2602_reg[SSM2602_CACHEREGNUM] = { |
63 | 0x0017, 0x0017, 0x0079, 0x0079, | 71 | 0x0097, 0x0097, 0x0079, 0x0079, |
64 | 0x0000, 0x0000, 0x0000, 0x000a, | 72 | 0x000a, 0x0008, 0x009f, 0x000a, |
65 | 0x0000, 0x0000 | 73 | 0x0000, 0x0000 |
66 | }; | 74 | }; |
67 | 75 | ||
68 | /* | 76 | #define ssm2602_reset(c) snd_soc_write(c, SSM2602_RESET, 0) |
69 | * read ssm2602 register cache | ||
70 | */ | ||
71 | static inline unsigned int ssm2602_read_reg_cache(struct snd_soc_codec *codec, | ||
72 | unsigned int reg) | ||
73 | { | ||
74 | u16 *cache = codec->reg_cache; | ||
75 | if (reg == SSM2602_RESET) | ||
76 | return 0; | ||
77 | if (reg >= SSM2602_CACHEREGNUM) | ||
78 | return -1; | ||
79 | return cache[reg]; | ||
80 | } | ||
81 | |||
82 | /* | ||
83 | * write ssm2602 register cache | ||
84 | */ | ||
85 | static inline void ssm2602_write_reg_cache(struct snd_soc_codec *codec, | ||
86 | u16 reg, unsigned int value) | ||
87 | { | ||
88 | u16 *cache = codec->reg_cache; | ||
89 | if (reg >= SSM2602_CACHEREGNUM) | ||
90 | return; | ||
91 | cache[reg] = value; | ||
92 | } | ||
93 | |||
94 | /* | ||
95 | * write to the ssm2602 register space | ||
96 | */ | ||
97 | static int ssm2602_write(struct snd_soc_codec *codec, unsigned int reg, | ||
98 | unsigned int value) | ||
99 | { | ||
100 | u8 data[2]; | ||
101 | |||
102 | /* data is | ||
103 | * D15..D9 ssm2602 register offset | ||
104 | * D8...D0 register data | ||
105 | */ | ||
106 | data[0] = (reg << 1) | ((value >> 8) & 0x0001); | ||
107 | data[1] = value & 0x00ff; | ||
108 | |||
109 | ssm2602_write_reg_cache(codec, reg, value); | ||
110 | if (codec->hw_write(codec->control_data, data, 2) == 2) | ||
111 | return 0; | ||
112 | else | ||
113 | return -EIO; | ||
114 | } | ||
115 | |||
116 | #define ssm2602_reset(c) ssm2602_write(c, SSM2602_RESET, 0) | ||
117 | 77 | ||
118 | /*Appending several "None"s just for OSS mixer use*/ | 78 | /*Appending several "None"s just for OSS mixer use*/ |
119 | static const char *ssm2602_input_select[] = { | 79 | static const char *ssm2602_input_select[] = { |
@@ -128,174 +88,187 @@ static const struct soc_enum ssm2602_enum[] = { | |||
128 | SOC_ENUM_SINGLE(SSM2602_APDIGI, 1, 4, ssm2602_deemph), | 88 | SOC_ENUM_SINGLE(SSM2602_APDIGI, 1, 4, ssm2602_deemph), |
129 | }; | 89 | }; |
130 | 90 | ||
131 | static const struct snd_kcontrol_new ssm2602_snd_controls[] = { | 91 | static const unsigned int ssm260x_outmix_tlv[] = { |
92 | TLV_DB_RANGE_HEAD(2), | ||
93 | 0, 47, TLV_DB_SCALE_ITEM(TLV_DB_GAIN_MUTE, 0, 0), | ||
94 | 48, 127, TLV_DB_SCALE_ITEM(-7400, 100, 0), | ||
95 | }; | ||
132 | 96 | ||
133 | SOC_DOUBLE_R("Master Playback Volume", SSM2602_LOUT1V, SSM2602_ROUT1V, | 97 | static const DECLARE_TLV_DB_SCALE(ssm260x_inpga_tlv, -3450, 150, 0); |
134 | 0, 127, 0), | 98 | static const DECLARE_TLV_DB_SCALE(ssm260x_sidetone_tlv, -1500, 300, 0); |
135 | SOC_DOUBLE_R("Master Playback ZC Switch", SSM2602_LOUT1V, SSM2602_ROUT1V, | ||
136 | 7, 1, 0), | ||
137 | 99 | ||
138 | SOC_DOUBLE_R("Capture Volume", SSM2602_LINVOL, SSM2602_RINVOL, 0, 31, 0), | 100 | static const struct snd_kcontrol_new ssm260x_snd_controls[] = { |
101 | SOC_DOUBLE_R_TLV("Capture Volume", SSM2602_LINVOL, SSM2602_RINVOL, 0, 45, 0, | ||
102 | ssm260x_inpga_tlv), | ||
139 | SOC_DOUBLE_R("Capture Switch", SSM2602_LINVOL, SSM2602_RINVOL, 7, 1, 1), | 103 | SOC_DOUBLE_R("Capture Switch", SSM2602_LINVOL, SSM2602_RINVOL, 7, 1, 1), |
140 | 104 | ||
141 | SOC_SINGLE("Mic Boost (+20dB)", SSM2602_APANA, 0, 1, 0), | ||
142 | SOC_SINGLE("Mic Boost2 (+20dB)", SSM2602_APANA, 8, 1, 0), | ||
143 | SOC_SINGLE("Mic Switch", SSM2602_APANA, 1, 1, 1), | ||
144 | |||
145 | SOC_SINGLE("Sidetone Playback Volume", SSM2602_APANA, 6, 3, 1), | ||
146 | |||
147 | SOC_SINGLE("ADC High Pass Filter Switch", SSM2602_APDIGI, 0, 1, 1), | 105 | SOC_SINGLE("ADC High Pass Filter Switch", SSM2602_APDIGI, 0, 1, 1), |
148 | SOC_SINGLE("Store DC Offset Switch", SSM2602_APDIGI, 4, 1, 0), | 106 | SOC_SINGLE("Store DC Offset Switch", SSM2602_APDIGI, 4, 1, 0), |
149 | 107 | ||
150 | SOC_ENUM("Capture Source", ssm2602_enum[0]), | ||
151 | |||
152 | SOC_ENUM("Playback De-emphasis", ssm2602_enum[1]), | 108 | SOC_ENUM("Playback De-emphasis", ssm2602_enum[1]), |
153 | }; | 109 | }; |
154 | 110 | ||
111 | static const struct snd_kcontrol_new ssm2602_snd_controls[] = { | ||
112 | SOC_DOUBLE_R_TLV("Master Playback Volume", SSM2602_LOUT1V, SSM2602_ROUT1V, | ||
113 | 0, 127, 0, ssm260x_outmix_tlv), | ||
114 | SOC_DOUBLE_R("Master Playback ZC Switch", SSM2602_LOUT1V, SSM2602_ROUT1V, | ||
115 | 7, 1, 0), | ||
116 | SOC_SINGLE_TLV("Sidetone Playback Volume", SSM2602_APANA, 6, 3, 1, | ||
117 | ssm260x_sidetone_tlv), | ||
118 | |||
119 | SOC_SINGLE("Mic Boost (+20dB)", SSM2602_APANA, 0, 1, 0), | ||
120 | SOC_SINGLE("Mic Boost2 (+20dB)", SSM2602_APANA, 8, 1, 0), | ||
121 | SOC_SINGLE("Mic Switch", SSM2602_APANA, 1, 1, 1), | ||
122 | }; | ||
123 | |||
155 | /* Output Mixer */ | 124 | /* Output Mixer */ |
156 | static const struct snd_kcontrol_new ssm2602_output_mixer_controls[] = { | 125 | static const struct snd_kcontrol_new ssm260x_output_mixer_controls[] = { |
157 | SOC_DAPM_SINGLE("Line Bypass Switch", SSM2602_APANA, 3, 1, 0), | 126 | SOC_DAPM_SINGLE("Line Bypass Switch", SSM2602_APANA, 3, 1, 0), |
158 | SOC_DAPM_SINGLE("Mic Sidetone Switch", SSM2602_APANA, 5, 1, 0), | ||
159 | SOC_DAPM_SINGLE("HiFi Playback Switch", SSM2602_APANA, 4, 1, 0), | 127 | SOC_DAPM_SINGLE("HiFi Playback Switch", SSM2602_APANA, 4, 1, 0), |
128 | SOC_DAPM_SINGLE("Mic Sidetone Switch", SSM2602_APANA, 5, 1, 0), | ||
160 | }; | 129 | }; |
161 | 130 | ||
162 | /* Input mux */ | 131 | /* Input mux */ |
163 | static const struct snd_kcontrol_new ssm2602_input_mux_controls = | 132 | static const struct snd_kcontrol_new ssm2602_input_mux_controls = |
164 | SOC_DAPM_ENUM("Input Select", ssm2602_enum[0]); | 133 | SOC_DAPM_ENUM("Input Select", ssm2602_enum[0]); |
165 | 134 | ||
166 | static const struct snd_soc_dapm_widget ssm2602_dapm_widgets[] = { | 135 | static const struct snd_soc_dapm_widget ssm260x_dapm_widgets[] = { |
167 | SND_SOC_DAPM_MIXER("Output Mixer", SSM2602_PWR, 4, 1, | ||
168 | &ssm2602_output_mixer_controls[0], | ||
169 | ARRAY_SIZE(ssm2602_output_mixer_controls)), | ||
170 | SND_SOC_DAPM_DAC("DAC", "HiFi Playback", SSM2602_PWR, 3, 1), | 136 | SND_SOC_DAPM_DAC("DAC", "HiFi Playback", SSM2602_PWR, 3, 1), |
137 | SND_SOC_DAPM_ADC("ADC", "HiFi Capture", SSM2602_PWR, 2, 1), | ||
138 | SND_SOC_DAPM_PGA("Line Input", SSM2602_PWR, 0, 1, NULL, 0), | ||
139 | |||
140 | SND_SOC_DAPM_SUPPLY("Digital Core Power", SSM2602_ACTIVE, 0, 0, NULL, 0), | ||
141 | |||
171 | SND_SOC_DAPM_OUTPUT("LOUT"), | 142 | SND_SOC_DAPM_OUTPUT("LOUT"), |
172 | SND_SOC_DAPM_OUTPUT("LHPOUT"), | ||
173 | SND_SOC_DAPM_OUTPUT("ROUT"), | 143 | SND_SOC_DAPM_OUTPUT("ROUT"), |
174 | SND_SOC_DAPM_OUTPUT("RHPOUT"), | 144 | SND_SOC_DAPM_INPUT("RLINEIN"), |
175 | SND_SOC_DAPM_ADC("ADC", "HiFi Capture", SSM2602_PWR, 2, 1), | 145 | SND_SOC_DAPM_INPUT("LLINEIN"), |
146 | }; | ||
147 | |||
148 | static const struct snd_soc_dapm_widget ssm2602_dapm_widgets[] = { | ||
149 | SND_SOC_DAPM_MIXER("Output Mixer", SSM2602_PWR, 4, 1, | ||
150 | ssm260x_output_mixer_controls, | ||
151 | ARRAY_SIZE(ssm260x_output_mixer_controls)), | ||
152 | |||
176 | SND_SOC_DAPM_MUX("Input Mux", SND_SOC_NOPM, 0, 0, &ssm2602_input_mux_controls), | 153 | SND_SOC_DAPM_MUX("Input Mux", SND_SOC_NOPM, 0, 0, &ssm2602_input_mux_controls), |
177 | SND_SOC_DAPM_PGA("Line Input", SSM2602_PWR, 0, 1, NULL, 0), | ||
178 | SND_SOC_DAPM_MICBIAS("Mic Bias", SSM2602_PWR, 1, 1), | 154 | SND_SOC_DAPM_MICBIAS("Mic Bias", SSM2602_PWR, 1, 1), |
155 | |||
156 | SND_SOC_DAPM_OUTPUT("LHPOUT"), | ||
157 | SND_SOC_DAPM_OUTPUT("RHPOUT"), | ||
179 | SND_SOC_DAPM_INPUT("MICIN"), | 158 | SND_SOC_DAPM_INPUT("MICIN"), |
180 | SND_SOC_DAPM_INPUT("RLINEIN"), | ||
181 | SND_SOC_DAPM_INPUT("LLINEIN"), | ||
182 | }; | 159 | }; |
183 | 160 | ||
184 | static const struct snd_soc_dapm_route audio_conn[] = { | 161 | static const struct snd_soc_dapm_widget ssm2604_dapm_widgets[] = { |
185 | /* output mixer */ | 162 | SND_SOC_DAPM_MIXER("Output Mixer", SND_SOC_NOPM, 0, 0, |
163 | ssm260x_output_mixer_controls, | ||
164 | ARRAY_SIZE(ssm260x_output_mixer_controls) - 1), /* Last element is the mic */ | ||
165 | }; | ||
166 | |||
167 | static const struct snd_soc_dapm_route ssm260x_routes[] = { | ||
168 | {"DAC", NULL, "Digital Core Power"}, | ||
169 | {"ADC", NULL, "Digital Core Power"}, | ||
170 | |||
186 | {"Output Mixer", "Line Bypass Switch", "Line Input"}, | 171 | {"Output Mixer", "Line Bypass Switch", "Line Input"}, |
187 | {"Output Mixer", "HiFi Playback Switch", "DAC"}, | 172 | {"Output Mixer", "HiFi Playback Switch", "DAC"}, |
173 | |||
174 | {"ROUT", NULL, "Output Mixer"}, | ||
175 | {"LOUT", NULL, "Output Mixer"}, | ||
176 | |||
177 | {"Line Input", NULL, "LLINEIN"}, | ||
178 | {"Line Input", NULL, "RLINEIN"}, | ||
179 | }; | ||
180 | |||
181 | static const struct snd_soc_dapm_route ssm2602_routes[] = { | ||
188 | {"Output Mixer", "Mic Sidetone Switch", "Mic Bias"}, | 182 | {"Output Mixer", "Mic Sidetone Switch", "Mic Bias"}, |
189 | 183 | ||
190 | /* outputs */ | ||
191 | {"RHPOUT", NULL, "Output Mixer"}, | 184 | {"RHPOUT", NULL, "Output Mixer"}, |
192 | {"ROUT", NULL, "Output Mixer"}, | ||
193 | {"LHPOUT", NULL, "Output Mixer"}, | 185 | {"LHPOUT", NULL, "Output Mixer"}, |
194 | {"LOUT", NULL, "Output Mixer"}, | ||
195 | 186 | ||
196 | /* input mux */ | ||
197 | {"Input Mux", "Line", "Line Input"}, | 187 | {"Input Mux", "Line", "Line Input"}, |
198 | {"Input Mux", "Mic", "Mic Bias"}, | 188 | {"Input Mux", "Mic", "Mic Bias"}, |
199 | {"ADC", NULL, "Input Mux"}, | 189 | {"ADC", NULL, "Input Mux"}, |
200 | 190 | ||
201 | /* inputs */ | ||
202 | {"Line Input", NULL, "LLINEIN"}, | ||
203 | {"Line Input", NULL, "RLINEIN"}, | ||
204 | {"Mic Bias", NULL, "MICIN"}, | 191 | {"Mic Bias", NULL, "MICIN"}, |
205 | }; | 192 | }; |
206 | 193 | ||
207 | static int ssm2602_add_widgets(struct snd_soc_codec *codec) | 194 | static const struct snd_soc_dapm_route ssm2604_routes[] = { |
208 | { | 195 | {"ADC", NULL, "Line Input"}, |
209 | struct snd_soc_dapm_context *dapm = &codec->dapm; | 196 | }; |
210 | |||
211 | snd_soc_dapm_new_controls(dapm, ssm2602_dapm_widgets, | ||
212 | ARRAY_SIZE(ssm2602_dapm_widgets)); | ||
213 | snd_soc_dapm_add_routes(dapm, audio_conn, ARRAY_SIZE(audio_conn)); | ||
214 | |||
215 | return 0; | ||
216 | } | ||
217 | 197 | ||
218 | struct _coeff_div { | 198 | struct ssm2602_coeff { |
219 | u32 mclk; | 199 | u32 mclk; |
220 | u32 rate; | 200 | u32 rate; |
221 | u16 fs; | 201 | u8 srate; |
222 | u8 sr:4; | ||
223 | u8 bosr:1; | ||
224 | u8 usb:1; | ||
225 | }; | 202 | }; |
226 | 203 | ||
227 | /* codec mclk clock divider coefficients */ | 204 | #define SSM2602_COEFF_SRATE(sr, bosr, usb) (((sr) << 2) | ((bosr) << 1) | (usb)) |
228 | static const struct _coeff_div coeff_div[] = { | 205 | |
206 | /* codec mclk clock coefficients */ | ||
207 | static const struct ssm2602_coeff ssm2602_coeff_table[] = { | ||
229 | /* 48k */ | 208 | /* 48k */ |
230 | {12288000, 48000, 256, 0x0, 0x0, 0x0}, | 209 | {12288000, 48000, SSM2602_COEFF_SRATE(0x0, 0x0, 0x0)}, |
231 | {18432000, 48000, 384, 0x0, 0x1, 0x0}, | 210 | {18432000, 48000, SSM2602_COEFF_SRATE(0x0, 0x1, 0x0)}, |
232 | {12000000, 48000, 250, 0x0, 0x0, 0x1}, | 211 | {12000000, 48000, SSM2602_COEFF_SRATE(0x0, 0x0, 0x1)}, |
233 | 212 | ||
234 | /* 32k */ | 213 | /* 32k */ |
235 | {12288000, 32000, 384, 0x6, 0x0, 0x0}, | 214 | {12288000, 32000, SSM2602_COEFF_SRATE(0x6, 0x0, 0x0)}, |
236 | {18432000, 32000, 576, 0x6, 0x1, 0x0}, | 215 | {18432000, 32000, SSM2602_COEFF_SRATE(0x6, 0x1, 0x0)}, |
237 | {12000000, 32000, 375, 0x6, 0x0, 0x1}, | 216 | {12000000, 32000, SSM2602_COEFF_SRATE(0x6, 0x0, 0x1)}, |
238 | 217 | ||
239 | /* 8k */ | 218 | /* 8k */ |
240 | {12288000, 8000, 1536, 0x3, 0x0, 0x0}, | 219 | {12288000, 8000, SSM2602_COEFF_SRATE(0x3, 0x0, 0x0)}, |
241 | {18432000, 8000, 2304, 0x3, 0x1, 0x0}, | 220 | {18432000, 8000, SSM2602_COEFF_SRATE(0x3, 0x1, 0x0)}, |
242 | {11289600, 8000, 1408, 0xb, 0x0, 0x0}, | 221 | {11289600, 8000, SSM2602_COEFF_SRATE(0xb, 0x0, 0x0)}, |
243 | {16934400, 8000, 2112, 0xb, 0x1, 0x0}, | 222 | {16934400, 8000, SSM2602_COEFF_SRATE(0xb, 0x1, 0x0)}, |
244 | {12000000, 8000, 1500, 0x3, 0x0, 0x1}, | 223 | {12000000, 8000, SSM2602_COEFF_SRATE(0x3, 0x0, 0x1)}, |
245 | 224 | ||
246 | /* 96k */ | 225 | /* 96k */ |
247 | {12288000, 96000, 128, 0x7, 0x0, 0x0}, | 226 | {12288000, 96000, SSM2602_COEFF_SRATE(0x7, 0x0, 0x0)}, |
248 | {18432000, 96000, 192, 0x7, 0x1, 0x0}, | 227 | {18432000, 96000, SSM2602_COEFF_SRATE(0x7, 0x1, 0x0)}, |
249 | {12000000, 96000, 125, 0x7, 0x0, 0x1}, | 228 | {12000000, 96000, SSM2602_COEFF_SRATE(0x7, 0x0, 0x1)}, |
250 | 229 | ||
251 | /* 44.1k */ | 230 | /* 44.1k */ |
252 | {11289600, 44100, 256, 0x8, 0x0, 0x0}, | 231 | {11289600, 44100, SSM2602_COEFF_SRATE(0x8, 0x0, 0x0)}, |
253 | {16934400, 44100, 384, 0x8, 0x1, 0x0}, | 232 | {16934400, 44100, SSM2602_COEFF_SRATE(0x8, 0x1, 0x0)}, |
254 | {12000000, 44100, 272, 0x8, 0x1, 0x1}, | 233 | {12000000, 44100, SSM2602_COEFF_SRATE(0x8, 0x1, 0x1)}, |
255 | 234 | ||
256 | /* 88.2k */ | 235 | /* 88.2k */ |
257 | {11289600, 88200, 128, 0xf, 0x0, 0x0}, | 236 | {11289600, 88200, SSM2602_COEFF_SRATE(0xf, 0x0, 0x0)}, |
258 | {16934400, 88200, 192, 0xf, 0x1, 0x0}, | 237 | {16934400, 88200, SSM2602_COEFF_SRATE(0xf, 0x1, 0x0)}, |
259 | {12000000, 88200, 136, 0xf, 0x1, 0x1}, | 238 | {12000000, 88200, SSM2602_COEFF_SRATE(0xf, 0x1, 0x1)}, |
260 | }; | 239 | }; |
261 | 240 | ||
262 | static inline int get_coeff(int mclk, int rate) | 241 | static inline int ssm2602_get_coeff(int mclk, int rate) |
263 | { | 242 | { |
264 | int i; | 243 | int i; |
265 | 244 | ||
266 | for (i = 0; i < ARRAY_SIZE(coeff_div); i++) { | 245 | for (i = 0; i < ARRAY_SIZE(ssm2602_coeff_table); i++) { |
267 | if (coeff_div[i].rate == rate && coeff_div[i].mclk == mclk) | 246 | if (ssm2602_coeff_table[i].rate == rate && |
268 | return i; | 247 | ssm2602_coeff_table[i].mclk == mclk) |
248 | return ssm2602_coeff_table[i].srate; | ||
269 | } | 249 | } |
270 | return i; | 250 | return -EINVAL; |
271 | } | 251 | } |
272 | 252 | ||
273 | static int ssm2602_hw_params(struct snd_pcm_substream *substream, | 253 | static int ssm2602_hw_params(struct snd_pcm_substream *substream, |
274 | struct snd_pcm_hw_params *params, | 254 | struct snd_pcm_hw_params *params, |
275 | struct snd_soc_dai *dai) | 255 | struct snd_soc_dai *dai) |
276 | { | 256 | { |
277 | u16 srate; | ||
278 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | 257 | struct snd_soc_pcm_runtime *rtd = substream->private_data; |
279 | struct snd_soc_codec *codec = rtd->codec; | 258 | struct snd_soc_codec *codec = rtd->codec; |
280 | struct ssm2602_priv *ssm2602 = snd_soc_codec_get_drvdata(codec); | 259 | struct ssm2602_priv *ssm2602 = snd_soc_codec_get_drvdata(codec); |
281 | struct i2c_client *i2c = codec->control_data; | 260 | u16 iface = snd_soc_read(codec, SSM2602_IFACE) & 0xfff3; |
282 | u16 iface = ssm2602_read_reg_cache(codec, SSM2602_IFACE) & 0xfff3; | 261 | int srate = ssm2602_get_coeff(ssm2602->sysclk, params_rate(params)); |
283 | int i = get_coeff(ssm2602->sysclk, params_rate(params)); | ||
284 | 262 | ||
285 | if (substream == ssm2602->slave_substream) { | 263 | if (substream == ssm2602->slave_substream) { |
286 | dev_dbg(&i2c->dev, "Ignoring hw_params for slave substream\n"); | 264 | dev_dbg(codec->dev, "Ignoring hw_params for slave substream\n"); |
287 | return 0; | 265 | return 0; |
288 | } | 266 | } |
289 | 267 | ||
290 | /*no match is found*/ | 268 | if (srate < 0) |
291 | if (i == ARRAY_SIZE(coeff_div)) | 269 | return srate; |
292 | return -EINVAL; | ||
293 | 270 | ||
294 | srate = (coeff_div[i].sr << 2) | | 271 | snd_soc_write(codec, SSM2602_SRATE, srate); |
295 | (coeff_div[i].bosr << 1) | coeff_div[i].usb; | ||
296 | |||
297 | ssm2602_write(codec, SSM2602_ACTIVE, 0); | ||
298 | ssm2602_write(codec, SSM2602_SRATE, srate); | ||
299 | 272 | ||
300 | /* bit size */ | 273 | /* bit size */ |
301 | switch (params_format(params)) { | 274 | switch (params_format(params)) { |
@@ -311,8 +284,7 @@ static int ssm2602_hw_params(struct snd_pcm_substream *substream, | |||
311 | iface |= 0x000c; | 284 | iface |= 0x000c; |
312 | break; | 285 | break; |
313 | } | 286 | } |
314 | ssm2602_write(codec, SSM2602_IFACE, iface); | 287 | snd_soc_write(codec, SSM2602_IFACE, iface); |
315 | ssm2602_write(codec, SSM2602_ACTIVE, ACTIVE_ACTIVATE_CODEC); | ||
316 | return 0; | 288 | return 0; |
317 | } | 289 | } |
318 | 290 | ||
@@ -354,17 +326,6 @@ static int ssm2602_startup(struct snd_pcm_substream *substream, | |||
354 | return 0; | 326 | return 0; |
355 | } | 327 | } |
356 | 328 | ||
357 | static int ssm2602_pcm_prepare(struct snd_pcm_substream *substream, | ||
358 | struct snd_soc_dai *dai) | ||
359 | { | ||
360 | struct snd_soc_pcm_runtime *rtd = substream->private_data; | ||
361 | struct snd_soc_codec *codec = rtd->codec; | ||
362 | /* set active */ | ||
363 | ssm2602_write(codec, SSM2602_ACTIVE, ACTIVE_ACTIVATE_CODEC); | ||
364 | |||
365 | return 0; | ||
366 | } | ||
367 | |||
368 | static void ssm2602_shutdown(struct snd_pcm_substream *substream, | 329 | static void ssm2602_shutdown(struct snd_pcm_substream *substream, |
369 | struct snd_soc_dai *dai) | 330 | struct snd_soc_dai *dai) |
370 | { | 331 | { |
@@ -372,25 +333,22 @@ static void ssm2602_shutdown(struct snd_pcm_substream *substream, | |||
372 | struct snd_soc_codec *codec = rtd->codec; | 333 | struct snd_soc_codec *codec = rtd->codec; |
373 | struct ssm2602_priv *ssm2602 = snd_soc_codec_get_drvdata(codec); | 334 | struct ssm2602_priv *ssm2602 = snd_soc_codec_get_drvdata(codec); |
374 | 335 | ||
375 | /* deactivate */ | ||
376 | if (!codec->active) | ||
377 | ssm2602_write(codec, SSM2602_ACTIVE, 0); | ||
378 | |||
379 | if (ssm2602->master_substream == substream) | 336 | if (ssm2602->master_substream == substream) |
380 | ssm2602->master_substream = ssm2602->slave_substream; | 337 | ssm2602->master_substream = ssm2602->slave_substream; |
381 | 338 | ||
382 | ssm2602->slave_substream = NULL; | 339 | ssm2602->slave_substream = NULL; |
383 | } | 340 | } |
384 | 341 | ||
342 | |||
385 | static int ssm2602_mute(struct snd_soc_dai *dai, int mute) | 343 | static int ssm2602_mute(struct snd_soc_dai *dai, int mute) |
386 | { | 344 | { |
387 | struct snd_soc_codec *codec = dai->codec; | 345 | struct snd_soc_codec *codec = dai->codec; |
388 | u16 mute_reg = ssm2602_read_reg_cache(codec, SSM2602_APDIGI) & ~APDIGI_ENABLE_DAC_MUTE; | 346 | u16 mute_reg = snd_soc_read(codec, SSM2602_APDIGI) & ~APDIGI_ENABLE_DAC_MUTE; |
389 | if (mute) | 347 | if (mute) |
390 | ssm2602_write(codec, SSM2602_APDIGI, | 348 | snd_soc_write(codec, SSM2602_APDIGI, |
391 | mute_reg | APDIGI_ENABLE_DAC_MUTE); | 349 | mute_reg | APDIGI_ENABLE_DAC_MUTE); |
392 | else | 350 | else |
393 | ssm2602_write(codec, SSM2602_APDIGI, mute_reg); | 351 | snd_soc_write(codec, SSM2602_APDIGI, mute_reg); |
394 | return 0; | 352 | return 0; |
395 | } | 353 | } |
396 | 354 | ||
@@ -466,30 +424,29 @@ static int ssm2602_set_dai_fmt(struct snd_soc_dai *codec_dai, | |||
466 | } | 424 | } |
467 | 425 | ||
468 | /* set iface */ | 426 | /* set iface */ |
469 | ssm2602_write(codec, SSM2602_IFACE, iface); | 427 | snd_soc_write(codec, SSM2602_IFACE, iface); |
470 | return 0; | 428 | return 0; |
471 | } | 429 | } |
472 | 430 | ||
473 | static int ssm2602_set_bias_level(struct snd_soc_codec *codec, | 431 | static int ssm2602_set_bias_level(struct snd_soc_codec *codec, |
474 | enum snd_soc_bias_level level) | 432 | enum snd_soc_bias_level level) |
475 | { | 433 | { |
476 | u16 reg = ssm2602_read_reg_cache(codec, SSM2602_PWR) & 0xff7f; | 434 | u16 reg = snd_soc_read(codec, SSM2602_PWR) & 0xff7f; |
477 | 435 | ||
478 | switch (level) { | 436 | switch (level) { |
479 | case SND_SOC_BIAS_ON: | 437 | case SND_SOC_BIAS_ON: |
480 | /* vref/mid, osc on, dac unmute */ | 438 | /* vref/mid, osc on, dac unmute */ |
481 | ssm2602_write(codec, SSM2602_PWR, reg); | 439 | snd_soc_write(codec, SSM2602_PWR, reg); |
482 | break; | 440 | break; |
483 | case SND_SOC_BIAS_PREPARE: | 441 | case SND_SOC_BIAS_PREPARE: |
484 | break; | 442 | break; |
485 | case SND_SOC_BIAS_STANDBY: | 443 | case SND_SOC_BIAS_STANDBY: |
486 | /* everything off except vref/vmid, */ | 444 | /* everything off except vref/vmid, */ |
487 | ssm2602_write(codec, SSM2602_PWR, reg | PWR_CLK_OUT_PDN); | 445 | snd_soc_write(codec, SSM2602_PWR, reg | PWR_CLK_OUT_PDN); |
488 | break; | 446 | break; |
489 | case SND_SOC_BIAS_OFF: | 447 | case SND_SOC_BIAS_OFF: |
490 | /* everything off, dac mute, inactive */ | 448 | /* everything off, dac mute, inactive */ |
491 | ssm2602_write(codec, SSM2602_ACTIVE, 0); | 449 | snd_soc_write(codec, SSM2602_PWR, 0xffff); |
492 | ssm2602_write(codec, SSM2602_PWR, 0xffff); | ||
493 | break; | 450 | break; |
494 | 451 | ||
495 | } | 452 | } |
@@ -506,7 +463,6 @@ static int ssm2602_set_bias_level(struct snd_soc_codec *codec, | |||
506 | 463 | ||
507 | static struct snd_soc_dai_ops ssm2602_dai_ops = { | 464 | static struct snd_soc_dai_ops ssm2602_dai_ops = { |
508 | .startup = ssm2602_startup, | 465 | .startup = ssm2602_startup, |
509 | .prepare = ssm2602_pcm_prepare, | ||
510 | .hw_params = ssm2602_hw_params, | 466 | .hw_params = ssm2602_hw_params, |
511 | .shutdown = ssm2602_shutdown, | 467 | .shutdown = ssm2602_shutdown, |
512 | .digital_mute = ssm2602_mute, | 468 | .digital_mute = ssm2602_mute, |
@@ -539,50 +495,87 @@ static int ssm2602_suspend(struct snd_soc_codec *codec, pm_message_t state) | |||
539 | 495 | ||
540 | static int ssm2602_resume(struct snd_soc_codec *codec) | 496 | static int ssm2602_resume(struct snd_soc_codec *codec) |
541 | { | 497 | { |
542 | int i; | 498 | snd_soc_cache_sync(codec); |
543 | u8 data[2]; | 499 | |
544 | u16 *cache = codec->reg_cache; | ||
545 | |||
546 | /* Sync reg_cache with the hardware */ | ||
547 | for (i = 0; i < ARRAY_SIZE(ssm2602_reg); i++) { | ||
548 | data[0] = (i << 1) | ((cache[i] >> 8) & 0x0001); | ||
549 | data[1] = cache[i] & 0x00ff; | ||
550 | codec->hw_write(codec->control_data, data, 2); | ||
551 | } | ||
552 | ssm2602_set_bias_level(codec, SND_SOC_BIAS_STANDBY); | 500 | ssm2602_set_bias_level(codec, SND_SOC_BIAS_STANDBY); |
501 | |||
553 | return 0; | 502 | return 0; |
554 | } | 503 | } |
555 | 504 | ||
556 | static int ssm2602_probe(struct snd_soc_codec *codec) | 505 | static int ssm2602_probe(struct snd_soc_codec *codec) |
557 | { | 506 | { |
507 | struct snd_soc_dapm_context *dapm = &codec->dapm; | ||
508 | int ret, reg; | ||
509 | |||
510 | reg = snd_soc_read(codec, SSM2602_LOUT1V); | ||
511 | snd_soc_write(codec, SSM2602_LOUT1V, reg | LOUT1V_LRHP_BOTH); | ||
512 | reg = snd_soc_read(codec, SSM2602_ROUT1V); | ||
513 | snd_soc_write(codec, SSM2602_ROUT1V, reg | ROUT1V_RLHP_BOTH); | ||
514 | |||
515 | ret = snd_soc_add_controls(codec, ssm2602_snd_controls, | ||
516 | ARRAY_SIZE(ssm2602_snd_controls)); | ||
517 | if (ret) | ||
518 | return ret; | ||
519 | |||
520 | ret = snd_soc_dapm_new_controls(dapm, ssm2602_dapm_widgets, | ||
521 | ARRAY_SIZE(ssm2602_dapm_widgets)); | ||
522 | if (ret) | ||
523 | return ret; | ||
524 | |||
525 | return snd_soc_dapm_add_routes(dapm, ssm2602_routes, | ||
526 | ARRAY_SIZE(ssm2602_routes)); | ||
527 | } | ||
528 | |||
529 | static int ssm2604_probe(struct snd_soc_codec *codec) | ||
530 | { | ||
531 | struct snd_soc_dapm_context *dapm = &codec->dapm; | ||
532 | int ret; | ||
533 | |||
534 | ret = snd_soc_dapm_new_controls(dapm, ssm2604_dapm_widgets, | ||
535 | ARRAY_SIZE(ssm2604_dapm_widgets)); | ||
536 | if (ret) | ||
537 | return ret; | ||
538 | |||
539 | return snd_soc_dapm_add_routes(dapm, ssm2604_routes, | ||
540 | ARRAY_SIZE(ssm2604_routes)); | ||
541 | } | ||
542 | |||
543 | static int ssm260x_probe(struct snd_soc_codec *codec) | ||
544 | { | ||
558 | struct ssm2602_priv *ssm2602 = snd_soc_codec_get_drvdata(codec); | 545 | struct ssm2602_priv *ssm2602 = snd_soc_codec_get_drvdata(codec); |
559 | int ret = 0, reg; | 546 | int ret, reg; |
560 | 547 | ||
561 | pr_info("ssm2602 Audio Codec %s", SSM2602_VERSION); | 548 | pr_info("ssm2602 Audio Codec %s", SSM2602_VERSION); |
562 | 549 | ||
563 | codec->control_data = ssm2602->control_data; | 550 | ret = snd_soc_codec_set_cache_io(codec, 7, 9, ssm2602->control_type); |
551 | if (ret < 0) { | ||
552 | dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret); | ||
553 | return ret; | ||
554 | } | ||
564 | 555 | ||
565 | ssm2602_reset(codec); | 556 | ret = ssm2602_reset(codec); |
557 | if (ret < 0) { | ||
558 | dev_err(codec->dev, "Failed to issue reset: %d\n", ret); | ||
559 | return ret; | ||
560 | } | ||
566 | 561 | ||
567 | /*power on device*/ | ||
568 | ssm2602_write(codec, SSM2602_ACTIVE, 0); | ||
569 | /* set the update bits */ | 562 | /* set the update bits */ |
570 | reg = ssm2602_read_reg_cache(codec, SSM2602_LINVOL); | 563 | reg = snd_soc_read(codec, SSM2602_LINVOL); |
571 | ssm2602_write(codec, SSM2602_LINVOL, reg | LINVOL_LRIN_BOTH); | 564 | snd_soc_write(codec, SSM2602_LINVOL, reg | LINVOL_LRIN_BOTH); |
572 | reg = ssm2602_read_reg_cache(codec, SSM2602_RINVOL); | 565 | reg = snd_soc_read(codec, SSM2602_RINVOL); |
573 | ssm2602_write(codec, SSM2602_RINVOL, reg | RINVOL_RLIN_BOTH); | 566 | snd_soc_write(codec, SSM2602_RINVOL, reg | RINVOL_RLIN_BOTH); |
574 | reg = ssm2602_read_reg_cache(codec, SSM2602_LOUT1V); | ||
575 | ssm2602_write(codec, SSM2602_LOUT1V, reg | LOUT1V_LRHP_BOTH); | ||
576 | reg = ssm2602_read_reg_cache(codec, SSM2602_ROUT1V); | ||
577 | ssm2602_write(codec, SSM2602_ROUT1V, reg | ROUT1V_RLHP_BOTH); | ||
578 | /*select Line in as default input*/ | 567 | /*select Line in as default input*/ |
579 | ssm2602_write(codec, SSM2602_APANA, APANA_SELECT_DAC | | 568 | snd_soc_write(codec, SSM2602_APANA, APANA_SELECT_DAC | |
580 | APANA_ENABLE_MIC_BOOST); | 569 | APANA_ENABLE_MIC_BOOST); |
581 | ssm2602_write(codec, SSM2602_PWR, 0); | ||
582 | 570 | ||
583 | snd_soc_add_controls(codec, ssm2602_snd_controls, | 571 | switch (ssm2602->type) { |
584 | ARRAY_SIZE(ssm2602_snd_controls)); | 572 | case SSM2602: |
585 | ssm2602_add_widgets(codec); | 573 | ret = ssm2602_probe(codec); |
574 | break; | ||
575 | case SSM2604: | ||
576 | ret = ssm2604_probe(codec); | ||
577 | break; | ||
578 | } | ||
586 | 579 | ||
587 | return ret; | 580 | return ret; |
588 | } | 581 | } |
@@ -595,18 +588,61 @@ static int ssm2602_remove(struct snd_soc_codec *codec) | |||
595 | } | 588 | } |
596 | 589 | ||
597 | static struct snd_soc_codec_driver soc_codec_dev_ssm2602 = { | 590 | static struct snd_soc_codec_driver soc_codec_dev_ssm2602 = { |
598 | .probe = ssm2602_probe, | 591 | .probe = ssm260x_probe, |
599 | .remove = ssm2602_remove, | 592 | .remove = ssm2602_remove, |
600 | .suspend = ssm2602_suspend, | 593 | .suspend = ssm2602_suspend, |
601 | .resume = ssm2602_resume, | 594 | .resume = ssm2602_resume, |
602 | .read = ssm2602_read_reg_cache, | ||
603 | .write = ssm2602_write, | ||
604 | .set_bias_level = ssm2602_set_bias_level, | 595 | .set_bias_level = ssm2602_set_bias_level, |
605 | .reg_cache_size = ARRAY_SIZE(ssm2602_reg), | 596 | .reg_cache_size = ARRAY_SIZE(ssm2602_reg), |
606 | .reg_word_size = sizeof(u16), | 597 | .reg_word_size = sizeof(u16), |
607 | .reg_cache_default = ssm2602_reg, | 598 | .reg_cache_default = ssm2602_reg, |
599 | |||
600 | .controls = ssm260x_snd_controls, | ||
601 | .num_controls = ARRAY_SIZE(ssm260x_snd_controls), | ||
602 | .dapm_widgets = ssm260x_dapm_widgets, | ||
603 | .num_dapm_widgets = ARRAY_SIZE(ssm260x_dapm_widgets), | ||
604 | .dapm_routes = ssm260x_routes, | ||
605 | .num_dapm_routes = ARRAY_SIZE(ssm260x_routes), | ||
608 | }; | 606 | }; |
609 | 607 | ||
608 | #if defined(CONFIG_SPI_MASTER) | ||
609 | static int __devinit ssm2602_spi_probe(struct spi_device *spi) | ||
610 | { | ||
611 | struct ssm2602_priv *ssm2602; | ||
612 | int ret; | ||
613 | |||
614 | ssm2602 = kzalloc(sizeof(struct ssm2602_priv), GFP_KERNEL); | ||
615 | if (ssm2602 == NULL) | ||
616 | return -ENOMEM; | ||
617 | |||
618 | spi_set_drvdata(spi, ssm2602); | ||
619 | ssm2602->control_type = SND_SOC_SPI; | ||
620 | ssm2602->type = SSM2602; | ||
621 | |||
622 | ret = snd_soc_register_codec(&spi->dev, | ||
623 | &soc_codec_dev_ssm2602, &ssm2602_dai, 1); | ||
624 | if (ret < 0) | ||
625 | kfree(ssm2602); | ||
626 | return ret; | ||
627 | } | ||
628 | |||
629 | static int __devexit ssm2602_spi_remove(struct spi_device *spi) | ||
630 | { | ||
631 | snd_soc_unregister_codec(&spi->dev); | ||
632 | kfree(spi_get_drvdata(spi)); | ||
633 | return 0; | ||
634 | } | ||
635 | |||
636 | static struct spi_driver ssm2602_spi_driver = { | ||
637 | .driver = { | ||
638 | .name = "ssm2602", | ||
639 | .owner = THIS_MODULE, | ||
640 | }, | ||
641 | .probe = ssm2602_spi_probe, | ||
642 | .remove = __devexit_p(ssm2602_spi_remove), | ||
643 | }; | ||
644 | #endif | ||
645 | |||
610 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) | 646 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) |
611 | /* | 647 | /* |
612 | * ssm2602 2 wire address is determined by GPIO5 | 648 | * ssm2602 2 wire address is determined by GPIO5 |
@@ -625,8 +661,8 @@ static int __devinit ssm2602_i2c_probe(struct i2c_client *i2c, | |||
625 | return -ENOMEM; | 661 | return -ENOMEM; |
626 | 662 | ||
627 | i2c_set_clientdata(i2c, ssm2602); | 663 | i2c_set_clientdata(i2c, ssm2602); |
628 | ssm2602->control_data = i2c; | ||
629 | ssm2602->control_type = SND_SOC_I2C; | 664 | ssm2602->control_type = SND_SOC_I2C; |
665 | ssm2602->type = id->driver_data; | ||
630 | 666 | ||
631 | ret = snd_soc_register_codec(&i2c->dev, | 667 | ret = snd_soc_register_codec(&i2c->dev, |
632 | &soc_codec_dev_ssm2602, &ssm2602_dai, 1); | 668 | &soc_codec_dev_ssm2602, &ssm2602_dai, 1); |
@@ -643,7 +679,9 @@ static int __devexit ssm2602_i2c_remove(struct i2c_client *client) | |||
643 | } | 679 | } |
644 | 680 | ||
645 | static const struct i2c_device_id ssm2602_i2c_id[] = { | 681 | static const struct i2c_device_id ssm2602_i2c_id[] = { |
646 | { "ssm2602", 0 }, | 682 | { "ssm2602", SSM2602 }, |
683 | { "ssm2603", SSM2602 }, | ||
684 | { "ssm2604", SSM2604 }, | ||
647 | { } | 685 | { } |
648 | }; | 686 | }; |
649 | MODULE_DEVICE_TABLE(i2c, ssm2602_i2c_id); | 687 | MODULE_DEVICE_TABLE(i2c, ssm2602_i2c_id); |
@@ -651,7 +689,7 @@ MODULE_DEVICE_TABLE(i2c, ssm2602_i2c_id); | |||
651 | /* corgi i2c codec control layer */ | 689 | /* corgi i2c codec control layer */ |
652 | static struct i2c_driver ssm2602_i2c_driver = { | 690 | static struct i2c_driver ssm2602_i2c_driver = { |
653 | .driver = { | 691 | .driver = { |
654 | .name = "ssm2602-codec", | 692 | .name = "ssm2602", |
655 | .owner = THIS_MODULE, | 693 | .owner = THIS_MODULE, |
656 | }, | 694 | }, |
657 | .probe = ssm2602_i2c_probe, | 695 | .probe = ssm2602_i2c_probe, |
@@ -664,25 +702,35 @@ static struct i2c_driver ssm2602_i2c_driver = { | |||
664 | static int __init ssm2602_modinit(void) | 702 | static int __init ssm2602_modinit(void) |
665 | { | 703 | { |
666 | int ret = 0; | 704 | int ret = 0; |
705 | |||
706 | #if defined(CONFIG_SPI_MASTER) | ||
707 | ret = spi_register_driver(&ssm2602_spi_driver); | ||
708 | if (ret) | ||
709 | return ret; | ||
710 | #endif | ||
711 | |||
667 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) | 712 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) |
668 | ret = i2c_add_driver(&ssm2602_i2c_driver); | 713 | ret = i2c_add_driver(&ssm2602_i2c_driver); |
669 | if (ret != 0) { | 714 | if (ret) |
670 | printk(KERN_ERR "Failed to register SSM2602 I2C driver: %d\n", | 715 | return ret; |
671 | ret); | ||
672 | } | ||
673 | #endif | 716 | #endif |
717 | |||
674 | return ret; | 718 | return ret; |
675 | } | 719 | } |
676 | module_init(ssm2602_modinit); | 720 | module_init(ssm2602_modinit); |
677 | 721 | ||
678 | static void __exit ssm2602_exit(void) | 722 | static void __exit ssm2602_exit(void) |
679 | { | 723 | { |
724 | #if defined(CONFIG_SPI_MASTER) | ||
725 | spi_unregister_driver(&ssm2602_spi_driver); | ||
726 | #endif | ||
727 | |||
680 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) | 728 | #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE) |
681 | i2c_del_driver(&ssm2602_i2c_driver); | 729 | i2c_del_driver(&ssm2602_i2c_driver); |
682 | #endif | 730 | #endif |
683 | } | 731 | } |
684 | module_exit(ssm2602_exit); | 732 | module_exit(ssm2602_exit); |
685 | 733 | ||
686 | MODULE_DESCRIPTION("ASoC ssm2602 driver"); | 734 | MODULE_DESCRIPTION("ASoC SSM2602/SSM2603/SSM2604 driver"); |
687 | MODULE_AUTHOR("Cliff Cai"); | 735 | MODULE_AUTHOR("Cliff Cai"); |
688 | MODULE_LICENSE("GPL"); | 736 | MODULE_LICENSE("GPL"); |