2 * Core driver for WM8400.
4 * Copyright 2008 Wolfson Microelectronics PLC.
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License as
10 * published by the Free Software Foundation; either version 2 of the
11 * License, or (at your option) any later version.
15 #include <linux/module.h>
16 #include <linux/bug.h>
17 #include <linux/err.h>
18 #include <linux/i2c.h>
19 #include <linux/kernel.h>
20 #include <linux/mfd/core.h>
21 #include <linux/mfd/wm8400-private.h>
22 #include <linux/mfd/wm8400-audio.h>
23 #include <linux/regmap.h>
24 #include <linux/slab.h>
26 static bool wm8400_volatile(struct device
*dev
, unsigned int reg
)
29 case WM8400_INTERRUPT_STATUS_1
:
30 case WM8400_INTERRUPT_LEVELS
:
31 case WM8400_SHUTDOWN_REASON
:
39 * wm8400_reg_read - Single register read
41 * @wm8400: Pointer to wm8400 control structure
42 * @reg: Register to read
46 u16
wm8400_reg_read(struct wm8400
*wm8400
, u8 reg
)
51 ret
= regmap_read(wm8400
->regmap
, reg
, &val
);
57 EXPORT_SYMBOL_GPL(wm8400_reg_read
);
59 int wm8400_block_read(struct wm8400
*wm8400
, u8 reg
, int count
, u16
*data
)
61 return regmap_bulk_read(wm8400
->regmap
, reg
, data
, count
);
63 EXPORT_SYMBOL_GPL(wm8400_block_read
);
65 static int wm8400_register_codec(struct wm8400
*wm8400
)
67 struct mfd_cell cell
= {
68 .name
= "wm8400-codec",
69 .platform_data
= wm8400
,
70 .pdata_size
= sizeof(*wm8400
),
73 return mfd_add_devices(wm8400
->dev
, -1, &cell
, 1, NULL
, 0, NULL
);
77 * wm8400_init - Generic initialisation
79 * The WM8400 can be configured as either an I2C or SPI device. Probe
80 * functions for each bus set up the accessors then call into this to
81 * set up the device itself.
83 static int wm8400_init(struct wm8400
*wm8400
,
84 struct wm8400_platform_data
*pdata
)
89 dev_set_drvdata(wm8400
->dev
, wm8400
);
91 /* Check that this is actually a WM8400 */
92 ret
= regmap_read(wm8400
->regmap
, WM8400_RESET_ID
, ®
);
94 dev_err(wm8400
->dev
, "Chip ID register read failed\n");
98 dev_err(wm8400
->dev
, "Device is not a WM8400, ID is %x\n",
103 ret
= regmap_read(wm8400
->regmap
, WM8400_ID
, ®
);
105 dev_err(wm8400
->dev
, "ID register read failed: %d\n", ret
);
108 reg
= (reg
& WM8400_CHIP_REV_MASK
) >> WM8400_CHIP_REV_SHIFT
;
109 dev_info(wm8400
->dev
, "WM8400 revision %x\n", reg
);
111 ret
= wm8400_register_codec(wm8400
);
113 dev_err(wm8400
->dev
, "Failed to register codec\n");
117 if (pdata
&& pdata
->platform_init
) {
118 ret
= pdata
->platform_init(wm8400
->dev
);
120 dev_err(wm8400
->dev
, "Platform init failed: %d\n",
125 dev_warn(wm8400
->dev
, "No platform initialisation supplied\n");
130 mfd_remove_devices(wm8400
->dev
);
134 static void wm8400_release(struct wm8400
*wm8400
)
136 mfd_remove_devices(wm8400
->dev
);
139 static const struct regmap_config wm8400_regmap_config
= {
142 .max_register
= WM8400_REGISTER_COUNT
- 1,
144 .volatile_reg
= wm8400_volatile
,
146 .cache_type
= REGCACHE_RBTREE
,
150 * wm8400_reset_codec_reg_cache - Reset cached codec registers to
151 * their default values.
153 void wm8400_reset_codec_reg_cache(struct wm8400
*wm8400
)
155 regmap_reinit_cache(wm8400
->regmap
, &wm8400_regmap_config
);
157 EXPORT_SYMBOL_GPL(wm8400_reset_codec_reg_cache
);
159 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
160 static int wm8400_i2c_probe(struct i2c_client
*i2c
,
161 const struct i2c_device_id
*id
)
163 struct wm8400
*wm8400
;
166 wm8400
= devm_kzalloc(&i2c
->dev
, sizeof(struct wm8400
), GFP_KERNEL
);
167 if (wm8400
== NULL
) {
172 wm8400
->regmap
= devm_regmap_init_i2c(i2c
, &wm8400_regmap_config
);
173 if (IS_ERR(wm8400
->regmap
)) {
174 ret
= PTR_ERR(wm8400
->regmap
);
178 wm8400
->dev
= &i2c
->dev
;
179 i2c_set_clientdata(i2c
, wm8400
);
181 ret
= wm8400_init(wm8400
, i2c
->dev
.platform_data
);
191 static int wm8400_i2c_remove(struct i2c_client
*i2c
)
193 struct wm8400
*wm8400
= i2c_get_clientdata(i2c
);
195 wm8400_release(wm8400
);
200 static const struct i2c_device_id wm8400_i2c_id
[] = {
204 MODULE_DEVICE_TABLE(i2c
, wm8400_i2c_id
);
206 static struct i2c_driver wm8400_i2c_driver
= {
209 .owner
= THIS_MODULE
,
211 .probe
= wm8400_i2c_probe
,
212 .remove
= wm8400_i2c_remove
,
213 .id_table
= wm8400_i2c_id
,
217 static int __init
wm8400_module_init(void)
221 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
222 ret
= i2c_add_driver(&wm8400_i2c_driver
);
224 pr_err("Failed to register I2C driver: %d\n", ret
);
229 subsys_initcall(wm8400_module_init
);
231 static void __exit
wm8400_module_exit(void)
233 #if defined(CONFIG_I2C) || defined(CONFIG_I2C_MODULE)
234 i2c_del_driver(&wm8400_i2c_driver
);
237 module_exit(wm8400_module_exit
);
239 MODULE_LICENSE("GPL");
240 MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");