2012-06-19 15:35:49 +00:00
|
|
|
/*
|
|
|
|
* Arizona-i2c.c -- Arizona I2C bus interface
|
|
|
|
*
|
|
|
|
* Copyright 2012 Wolfson Microelectronics plc
|
|
|
|
*
|
|
|
|
* Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
|
|
|
|
*
|
|
|
|
* This program is free software; you can redistribute it and/or modify
|
|
|
|
* it under the terms of the GNU General Public License version 2 as
|
|
|
|
* published by the Free Software Foundation.
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/i2c.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/pm_runtime.h>
|
|
|
|
#include <linux/regmap.h>
|
|
|
|
#include <linux/regulator/consumer.h>
|
|
|
|
#include <linux/slab.h>
|
2013-10-16 08:56:56 +00:00
|
|
|
#include <linux/of.h>
|
2012-06-19 15:35:49 +00:00
|
|
|
|
|
|
|
#include <linux/mfd/arizona/core.h>
|
|
|
|
|
|
|
|
#include "arizona.h"
|
|
|
|
|
2012-11-19 18:23:04 +00:00
|
|
|
static int arizona_i2c_probe(struct i2c_client *i2c,
|
2012-06-19 15:35:49 +00:00
|
|
|
const struct i2c_device_id *id)
|
|
|
|
{
|
|
|
|
struct arizona *arizona;
|
|
|
|
const struct regmap_config *regmap_config;
|
2013-03-25 00:11:27 +00:00
|
|
|
int ret, type;
|
2012-06-19 15:35:49 +00:00
|
|
|
|
2013-03-25 00:11:27 +00:00
|
|
|
if (i2c->dev.of_node)
|
|
|
|
type = arizona_of_get_type(&i2c->dev);
|
|
|
|
else
|
|
|
|
type = id->driver_data;
|
|
|
|
|
|
|
|
switch (type) {
|
2012-07-05 19:35:31 +00:00
|
|
|
#ifdef CONFIG_MFD_WM5102
|
2012-06-19 15:35:49 +00:00
|
|
|
case WM5102:
|
|
|
|
regmap_config = &wm5102_i2c_regmap;
|
|
|
|
break;
|
2012-07-10 11:37:58 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_MFD_WM5110
|
|
|
|
case WM5110:
|
|
|
|
regmap_config = &wm5110_i2c_regmap;
|
|
|
|
break;
|
2013-06-13 08:43:29 +00:00
|
|
|
#endif
|
|
|
|
#ifdef CONFIG_MFD_WM8997
|
|
|
|
case WM8997:
|
|
|
|
regmap_config = &wm8997_i2c_regmap;
|
|
|
|
break;
|
2012-07-05 19:35:31 +00:00
|
|
|
#endif
|
2012-06-19 15:35:49 +00:00
|
|
|
default:
|
|
|
|
dev_err(&i2c->dev, "Unknown device type %ld\n",
|
|
|
|
id->driver_data);
|
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
arizona = devm_kzalloc(&i2c->dev, sizeof(*arizona), GFP_KERNEL);
|
|
|
|
if (arizona == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
arizona->regmap = devm_regmap_init_i2c(i2c, regmap_config);
|
|
|
|
if (IS_ERR(arizona->regmap)) {
|
|
|
|
ret = PTR_ERR(arizona->regmap);
|
|
|
|
dev_err(&i2c->dev, "Failed to allocate register map: %d\n",
|
|
|
|
ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
|
|
|
arizona->type = id->driver_data;
|
|
|
|
arizona->dev = &i2c->dev;
|
|
|
|
arizona->irq = i2c->irq;
|
|
|
|
|
|
|
|
return arizona_dev_init(arizona);
|
|
|
|
}
|
|
|
|
|
2012-11-19 18:26:01 +00:00
|
|
|
static int arizona_i2c_remove(struct i2c_client *i2c)
|
2012-06-19 15:35:49 +00:00
|
|
|
{
|
|
|
|
struct arizona *arizona = dev_get_drvdata(&i2c->dev);
|
|
|
|
arizona_dev_exit(arizona);
|
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct i2c_device_id arizona_i2c_id[] = {
|
|
|
|
{ "wm5102", WM5102 },
|
2012-07-10 11:37:58 +00:00
|
|
|
{ "wm5110", WM5110 },
|
2013-06-13 08:43:29 +00:00
|
|
|
{ "wm8997", WM8997 },
|
2012-06-19 15:35:49 +00:00
|
|
|
{ }
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(i2c, arizona_i2c_id);
|
|
|
|
|
|
|
|
static struct i2c_driver arizona_i2c_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = "arizona",
|
|
|
|
.owner = THIS_MODULE,
|
|
|
|
.pm = &arizona_pm_ops,
|
2013-03-25 00:11:27 +00:00
|
|
|
.of_match_table = of_match_ptr(arizona_of_match),
|
2012-06-19 15:35:49 +00:00
|
|
|
},
|
|
|
|
.probe = arizona_i2c_probe,
|
2012-11-19 18:20:24 +00:00
|
|
|
.remove = arizona_i2c_remove,
|
2012-06-19 15:35:49 +00:00
|
|
|
.id_table = arizona_i2c_id,
|
|
|
|
};
|
|
|
|
|
|
|
|
module_i2c_driver(arizona_i2c_driver);
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("Arizona I2C bus interface");
|
|
|
|
MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
|
|
|
|
MODULE_LICENSE("GPL");
|