blob: 5e25191891e002e2955e3377a893d7905722135d [file] [log] [blame]
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +09001/*
2 * ak4642.c -- AK4642/AK4643 ALSA Soc Audio driver
3 *
4 * Copyright (C) 2009 Renesas Solutions Corp.
5 * Kuninori Morimoto <morimoto.kuninori@renesas.com>
6 *
7 * Based on wm8731.c by Richard Purdie
8 * Based on ak4535.c by Richard Purdie
9 * Based on wm8753.c by Liam Girdwood
10 *
11 * This program is free software; you can redistribute it and/or modify
12 * it under the terms of the GNU General Public License version 2 as
13 * published by the Free Software Foundation.
14 */
15
16/* ** CAUTION **
17 *
18 * This is very simple driver.
19 * It can use headphone output / stereo input only
20 *
21 * AK4642 is not tested.
22 * AK4643 is tested.
23 */
24
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +090025#include <linux/delay.h>
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +090026#include <linux/i2c.h>
27#include <linux/platform_device.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090028#include <linux/slab.h>
Liam Girdwoodce6120c2010-11-05 15:53:46 +020029#include <sound/soc.h>
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +090030#include <sound/initval.h>
Kuninori Morimotoa300de32010-07-01 14:23:45 +090031#include <sound/tlv.h>
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +090032
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +090033#define AK4642_VERSION "0.0.1"
34
35#define PW_MGMT1 0x00
36#define PW_MGMT2 0x01
37#define SG_SL1 0x02
38#define SG_SL2 0x03
39#define MD_CTL1 0x04
40#define MD_CTL2 0x05
41#define TIMER 0x06
42#define ALC_CTL1 0x07
43#define ALC_CTL2 0x08
44#define L_IVC 0x09
45#define L_DVC 0x0a
46#define ALC_CTL3 0x0b
47#define R_IVC 0x0c
48#define R_DVC 0x0d
49#define MD_CTL3 0x0e
50#define MD_CTL4 0x0f
51#define PW_MGMT3 0x10
52#define DF_S 0x11
53#define FIL3_0 0x12
54#define FIL3_1 0x13
55#define FIL3_2 0x14
56#define FIL3_3 0x15
57#define EQ_0 0x16
58#define EQ_1 0x17
59#define EQ_2 0x18
60#define EQ_3 0x19
61#define EQ_4 0x1a
62#define EQ_5 0x1b
63#define FIL1_0 0x1c
64#define FIL1_1 0x1d
65#define FIL1_2 0x1e
66#define FIL1_3 0x1f
67#define PW_MGMT4 0x20
68#define MD_CTL5 0x21
69#define LO_MS 0x22
70#define HP_MS 0x23
71#define SPK_MS 0x24
72
73#define AK4642_CACHEREGNUM 0x25
74
Kuninori Morimotoa3471232010-10-15 14:23:18 +090075/* PW_MGMT1*/
76#define PMVCM (1 << 6) /* VCOM Power Management */
77#define PMMIN (1 << 5) /* MIN Input Power Management */
78#define PMDAC (1 << 2) /* DAC Power Management */
79#define PMADL (1 << 0) /* MIC Amp Lch and ADC Lch Power Management */
80
Kuninori Morimoto0643ce82010-03-15 18:10:50 +090081/* PW_MGMT2 */
82#define HPMTN (1 << 6)
83#define PMHPL (1 << 5)
84#define PMHPR (1 << 4)
85#define MS (1 << 3) /* master/slave select */
86#define MCKO (1 << 1)
87#define PMPLL (1 << 0)
88
89#define PMHP_MASK (PMHPL | PMHPR)
90#define PMHP PMHP_MASK
91
Kuninori Morimotoa3471232010-10-15 14:23:18 +090092/* PW_MGMT3 */
93#define PMADR (1 << 0) /* MIC L / ADC R Power Management */
94
95/* SG_SL1 */
96#define MINS (1 << 6) /* Switch from MIN to Speaker */
97#define DACL (1 << 4) /* Switch from DAC to Stereo or Receiver */
98#define PMMP (1 << 2) /* MPWR pin Power Management */
99#define MGAIN0 (1 << 0) /* MIC amp gain*/
100
101/* TIMER */
102#define ZTM(param) ((param & 0x3) << 4) /* ALC Zoro Crossing TimeOut */
103#define WTM(param) (((param & 0x4) << 4) | ((param & 0x3) << 2))
104
105/* ALC_CTL1 */
106#define ALC (1 << 5) /* ALC Enable */
107#define LMTH0 (1 << 0) /* ALC Limiter / Recovery Level */
108
Kuninori Morimoto4b6316b2010-03-23 16:27:28 +0900109/* MD_CTL1 */
110#define PLL3 (1 << 7)
111#define PLL2 (1 << 6)
112#define PLL1 (1 << 5)
113#define PLL0 (1 << 4)
114#define PLL_MASK (PLL3 | PLL2 | PLL1 | PLL0)
115
Kuninori Morimoto0643ce82010-03-15 18:10:50 +0900116#define BCKO_MASK (1 << 3)
117#define BCKO_64 BCKO_MASK
118
Kuninori Morimotocb9c1302011-01-20 11:45:34 +0900119#define DIF_MASK (3 << 0)
120#define DSP (0 << 0)
121#define RIGHT_J (1 << 0)
122#define LEFT_J (2 << 0)
123#define I2S (3 << 0)
124
Kuninori Morimoto1ad747c2010-03-23 16:27:38 +0900125/* MD_CTL2 */
126#define FS0 (1 << 0)
127#define FS1 (1 << 1)
128#define FS2 (1 << 2)
129#define FS3 (1 << 5)
130#define FS_MASK (FS0 | FS1 | FS2 | FS3)
131
Kuninori Morimotoa3471232010-10-15 14:23:18 +0900132/* MD_CTL3 */
133#define BST1 (1 << 3)
134
135/* MD_CTL4 */
136#define DACH (1 << 0)
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900137
Kuninori Morimotoa300de32010-07-01 14:23:45 +0900138/*
139 * Playback Volume (table 39)
140 *
141 * max : 0x00 : +12.0 dB
142 * ( 0.5 dB step )
143 * min : 0xFE : -115.0 dB
144 * mute: 0xFF
145 */
146static const DECLARE_TLV_DB_SCALE(out_tlv, -11500, 50, 1);
147
148static const struct snd_kcontrol_new ak4642_snd_controls[] = {
149
150 SOC_DOUBLE_R_TLV("Digital Playback Volume", L_DVC, R_DVC,
151 0, 0xFF, 1, out_tlv),
152};
153
154
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900155/* codec private data */
156struct ak4642_priv {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000157 unsigned int sysclk;
158 enum snd_soc_control_type control_type;
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900159};
160
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900161/*
162 * ak4642 register cache
163 */
164static const u16 ak4642_reg[AK4642_CACHEREGNUM] = {
165 0x0000, 0x0000, 0x0001, 0x0000,
166 0x0002, 0x0000, 0x0000, 0x0000,
167 0x00e1, 0x00e1, 0x0018, 0x0000,
168 0x00e1, 0x0018, 0x0011, 0x0008,
169 0x0000, 0x0000, 0x0000, 0x0000,
170 0x0000, 0x0000, 0x0000, 0x0000,
171 0x0000, 0x0000, 0x0000, 0x0000,
172 0x0000, 0x0000, 0x0000, 0x0000,
173 0x0000, 0x0000, 0x0000, 0x0000,
174 0x0000,
175};
176
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900177static int ak4642_dai_startup(struct snd_pcm_substream *substream,
178 struct snd_soc_dai *dai)
179{
180 int is_play = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
181 struct snd_soc_codec *codec = dai->codec;
182
183 if (is_play) {
184 /*
185 * start headphone output
186 *
187 * PLL, Master Mode
188 * Audio I/F Format :MSB justified (ADC & DAC)
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900189 * Bass Boost Level : Middle
190 *
191 * This operation came from example code of
192 * "ASAHI KASEI AK4642" (japanese) manual p97.
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900193 */
Kuninori Morimotoa3471232010-10-15 14:23:18 +0900194 snd_soc_update_bits(codec, MD_CTL4, DACH, DACH);
195 snd_soc_update_bits(codec, MD_CTL3, BST1, BST1);
Axel Linb91470b2011-10-11 20:20:53 +0800196 snd_soc_write(codec, L_IVC, 0x91); /* volume */
197 snd_soc_write(codec, R_IVC, 0x91); /* volume */
Kuninori Morimotoa3471232010-10-15 14:23:18 +0900198 snd_soc_update_bits(codec, PW_MGMT1, PMVCM | PMMIN | PMDAC,
199 PMVCM | PMMIN | PMDAC);
Kuninori Morimoto0643ce82010-03-15 18:10:50 +0900200 snd_soc_update_bits(codec, PW_MGMT2, PMHP_MASK, PMHP);
201 snd_soc_update_bits(codec, PW_MGMT2, HPMTN, HPMTN);
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900202 } else {
203 /*
204 * start stereo input
205 *
206 * PLL Master Mode
207 * Audio I/F Format:MSB justified (ADC & DAC)
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900208 * Pre MIC AMP:+20dB
209 * MIC Power On
210 * ALC setting:Refer to Table 35
211 * ALC bit=“1”
212 *
213 * This operation came from example code of
214 * "ASAHI KASEI AK4642" (japanese) manual p94.
215 */
Axel Linb91470b2011-10-11 20:20:53 +0800216 snd_soc_write(codec, SG_SL1, PMMP | MGAIN0);
217 snd_soc_write(codec, TIMER, ZTM(0x3) | WTM(0x3));
218 snd_soc_write(codec, ALC_CTL1, ALC | LMTH0);
Kuninori Morimotoa3471232010-10-15 14:23:18 +0900219 snd_soc_update_bits(codec, PW_MGMT1, PMVCM | PMADL,
220 PMVCM | PMADL);
221 snd_soc_update_bits(codec, PW_MGMT3, PMADR, PMADR);
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900222 }
223
224 return 0;
225}
226
227static void ak4642_dai_shutdown(struct snd_pcm_substream *substream,
228 struct snd_soc_dai *dai)
229{
230 int is_play = substream->stream == SNDRV_PCM_STREAM_PLAYBACK;
231 struct snd_soc_codec *codec = dai->codec;
232
233 if (is_play) {
234 /* stop headphone output */
Kuninori Morimoto0643ce82010-03-15 18:10:50 +0900235 snd_soc_update_bits(codec, PW_MGMT2, HPMTN, 0);
236 snd_soc_update_bits(codec, PW_MGMT2, PMHP_MASK, 0);
Kuninori Morimotoa3471232010-10-15 14:23:18 +0900237 snd_soc_update_bits(codec, PW_MGMT1, PMMIN | PMDAC, 0);
238 snd_soc_update_bits(codec, MD_CTL3, BST1, 0);
239 snd_soc_update_bits(codec, MD_CTL4, DACH, 0);
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900240 } else {
241 /* stop stereo input */
Kuninori Morimotoa3471232010-10-15 14:23:18 +0900242 snd_soc_update_bits(codec, PW_MGMT1, PMADL, 0);
243 snd_soc_update_bits(codec, PW_MGMT3, PMADR, 0);
244 snd_soc_update_bits(codec, ALC_CTL1, ALC, 0);
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900245 }
246}
247
248static int ak4642_dai_set_sysclk(struct snd_soc_dai *codec_dai,
249 int clk_id, unsigned int freq, int dir)
250{
251 struct snd_soc_codec *codec = codec_dai->codec;
Kuninori Morimoto4b6316b2010-03-23 16:27:28 +0900252 u8 pll;
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900253
Kuninori Morimoto4b6316b2010-03-23 16:27:28 +0900254 switch (freq) {
255 case 11289600:
256 pll = PLL2;
257 break;
258 case 12288000:
259 pll = PLL2 | PLL0;
260 break;
261 case 12000000:
262 pll = PLL2 | PLL1;
263 break;
264 case 24000000:
265 pll = PLL2 | PLL1 | PLL0;
266 break;
267 case 13500000:
268 pll = PLL3 | PLL2;
269 break;
270 case 27000000:
271 pll = PLL3 | PLL2 | PLL0;
272 break;
273 default:
274 return -EINVAL;
275 }
276 snd_soc_update_bits(codec, MD_CTL1, PLL_MASK, pll);
277
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900278 return 0;
279}
280
Kuninori Morimoto0643ce82010-03-15 18:10:50 +0900281static int ak4642_dai_set_fmt(struct snd_soc_dai *dai, unsigned int fmt)
282{
283 struct snd_soc_codec *codec = dai->codec;
284 u8 data;
285 u8 bcko;
286
287 data = MCKO | PMPLL; /* use MCKO */
288 bcko = 0;
289
290 /* set master/slave audio interface */
291 switch (fmt & SND_SOC_DAIFMT_MASTER_MASK) {
292 case SND_SOC_DAIFMT_CBM_CFM:
293 data |= MS;
294 bcko = BCKO_64;
295 break;
296 case SND_SOC_DAIFMT_CBS_CFS:
297 break;
298 default:
299 return -EINVAL;
300 }
Kuninori Morimotobd7fdbc2011-07-06 17:58:56 -0700301 snd_soc_update_bits(codec, PW_MGMT2, MS | MCKO | PMPLL, data);
Kuninori Morimoto0643ce82010-03-15 18:10:50 +0900302 snd_soc_update_bits(codec, MD_CTL1, BCKO_MASK, bcko);
303
Kuninori Morimotocb9c1302011-01-20 11:45:34 +0900304 /* format type */
305 data = 0;
306 switch (fmt & SND_SOC_DAIFMT_FORMAT_MASK) {
307 case SND_SOC_DAIFMT_LEFT_J:
308 data = LEFT_J;
309 break;
310 case SND_SOC_DAIFMT_I2S:
311 data = I2S;
312 break;
313 /* FIXME
314 * Please add RIGHT_J / DSP support here
315 */
316 default:
317 return -EINVAL;
318 break;
319 }
320 snd_soc_update_bits(codec, MD_CTL1, DIF_MASK, data);
321
Kuninori Morimoto0643ce82010-03-15 18:10:50 +0900322 return 0;
323}
324
Kuninori Morimoto1ad747c2010-03-23 16:27:38 +0900325static int ak4642_dai_hw_params(struct snd_pcm_substream *substream,
326 struct snd_pcm_hw_params *params,
327 struct snd_soc_dai *dai)
328{
329 struct snd_soc_codec *codec = dai->codec;
330 u8 rate;
331
332 switch (params_rate(params)) {
333 case 7350:
334 rate = FS2;
335 break;
336 case 8000:
337 rate = 0;
338 break;
339 case 11025:
340 rate = FS2 | FS0;
341 break;
342 case 12000:
343 rate = FS0;
344 break;
345 case 14700:
346 rate = FS2 | FS1;
347 break;
348 case 16000:
349 rate = FS1;
350 break;
351 case 22050:
352 rate = FS2 | FS1 | FS0;
353 break;
354 case 24000:
355 rate = FS1 | FS0;
356 break;
357 case 29400:
358 rate = FS3 | FS2 | FS1;
359 break;
360 case 32000:
361 rate = FS3 | FS1;
362 break;
363 case 44100:
364 rate = FS3 | FS2 | FS1 | FS0;
365 break;
366 case 48000:
367 rate = FS3 | FS1 | FS0;
368 break;
369 default:
370 return -EINVAL;
371 break;
372 }
373 snd_soc_update_bits(codec, MD_CTL2, FS_MASK, rate);
374
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900375 return 0;
376}
377
378static struct snd_soc_dai_ops ak4642_dai_ops = {
379 .startup = ak4642_dai_startup,
380 .shutdown = ak4642_dai_shutdown,
381 .set_sysclk = ak4642_dai_set_sysclk,
Kuninori Morimoto0643ce82010-03-15 18:10:50 +0900382 .set_fmt = ak4642_dai_set_fmt,
Kuninori Morimoto1ad747c2010-03-23 16:27:38 +0900383 .hw_params = ak4642_dai_hw_params,
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900384};
385
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000386static struct snd_soc_dai_driver ak4642_dai = {
387 .name = "ak4642-hifi",
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900388 .playback = {
389 .stream_name = "Playback",
390 .channels_min = 1,
391 .channels_max = 2,
392 .rates = SNDRV_PCM_RATE_8000_48000,
393 .formats = SNDRV_PCM_FMTBIT_S16_LE },
394 .capture = {
395 .stream_name = "Capture",
396 .channels_min = 1,
397 .channels_max = 2,
398 .rates = SNDRV_PCM_RATE_8000_48000,
399 .formats = SNDRV_PCM_FMTBIT_S16_LE },
400 .ops = &ak4642_dai_ops,
Kuninori Morimoto1ad747c2010-03-23 16:27:38 +0900401 .symmetric_rates = 1,
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900402};
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900403
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000404static int ak4642_resume(struct snd_soc_codec *codec)
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900405{
Axel Linb91470b2011-10-11 20:20:53 +0800406 snd_soc_cache_sync(codec);
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900407 return 0;
408}
409
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000410
411static int ak4642_probe(struct snd_soc_codec *codec)
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900412{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000413 struct ak4642_priv *ak4642 = snd_soc_codec_get_drvdata(codec);
Axel Linb91470b2011-10-11 20:20:53 +0800414 int ret;
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900415
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000416 dev_info(codec->dev, "AK4642 Audio Codec %s", AK4642_VERSION);
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900417
Axel Linb91470b2011-10-11 20:20:53 +0800418 ret = snd_soc_codec_set_cache_io(codec, 8, 8, ak4642->control_type);
419 if (ret < 0) {
420 dev_err(codec->dev, "Failed to set cache I/O: %d\n", ret);
421 return ret;
422 }
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900423
Kuninori Morimoto73bb3792010-09-03 16:12:36 +0900424 snd_soc_add_controls(codec, ak4642_snd_controls,
425 ARRAY_SIZE(ak4642_snd_controls));
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900426
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000427 return 0;
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900428}
429
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000430static struct snd_soc_codec_driver soc_codec_dev_ak4642 = {
Kuninori Morimoto0ce75aa2010-09-16 13:06:40 +0900431 .probe = ak4642_probe,
432 .resume = ak4642_resume,
Kuninori Morimoto0ce75aa2010-09-16 13:06:40 +0900433 .reg_cache_size = ARRAY_SIZE(ak4642_reg),
434 .reg_word_size = sizeof(u8),
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000435 .reg_cache_default = ak4642_reg,
436};
437
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900438#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000439static __devinit int ak4642_i2c_probe(struct i2c_client *i2c,
440 const struct i2c_device_id *id)
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900441{
442 struct ak4642_priv *ak4642;
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900443 int ret;
444
445 ak4642 = kzalloc(sizeof(struct ak4642_priv), GFP_KERNEL);
Kuninori Morimoto0ce75aa2010-09-16 13:06:40 +0900446 if (!ak4642)
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900447 return -ENOMEM;
448
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900449 i2c_set_clientdata(i2c, ak4642);
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000450 ak4642->control_type = SND_SOC_I2C;
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900451
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000452 ret = snd_soc_register_codec(&i2c->dev,
453 &soc_codec_dev_ak4642, &ak4642_dai, 1);
454 if (ret < 0)
Axel Lin7bcaad92010-07-23 05:53:44 +0000455 kfree(ak4642);
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900456 return ret;
457}
458
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000459static __devexit int ak4642_i2c_remove(struct i2c_client *client)
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900460{
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000461 snd_soc_unregister_codec(&client->dev);
462 kfree(i2c_get_clientdata(client));
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900463 return 0;
464}
465
466static const struct i2c_device_id ak4642_i2c_id[] = {
467 { "ak4642", 0 },
468 { "ak4643", 0 },
469 { }
470};
471MODULE_DEVICE_TABLE(i2c, ak4642_i2c_id);
472
473static struct i2c_driver ak4642_i2c_driver = {
474 .driver = {
Liam Girdwoodf0fba2a2010-03-17 20:15:21 +0000475 .name = "ak4642-codec",
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900476 .owner = THIS_MODULE,
477 },
Kuninori Morimoto0ce75aa2010-09-16 13:06:40 +0900478 .probe = ak4642_i2c_probe,
479 .remove = __devexit_p(ak4642_i2c_remove),
480 .id_table = ak4642_i2c_id,
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900481};
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900482#endif
483
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900484static int __init ak4642_modinit(void)
485{
Kuninori Morimoto1cf86f62009-12-15 15:54:21 +0900486 int ret = 0;
Kuninori Morimotoa3a83d92009-08-21 10:23:41 +0900487#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
488 ret = i2c_add_driver(&ak4642_i2c_driver);
489#endif
490 return ret;
491
492}
493module_init(ak4642_modinit);
494
495static void __exit ak4642_exit(void)
496{
497#if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
498 i2c_del_driver(&ak4642_i2c_driver);
499#endif
500
501}
502module_exit(ak4642_exit);
503
504MODULE_DESCRIPTION("Soc AK4642 driver");
505MODULE_AUTHOR("Kuninori Morimoto <morimoto.kuninori@renesas.com>");
506MODULE_LICENSE("GPL");