2019-06-04 08:11:33 +00:00
|
|
|
// SPDX-License-Identifier: GPL-2.0-only
|
2012-06-19 15:36:18 +00:00
|
|
|
/*
|
|
|
|
* arizona-spi.c -- Arizona SPI bus interface
|
|
|
|
*
|
|
|
|
* Copyright 2012 Wolfson Microelectronics plc
|
|
|
|
*
|
|
|
|
* Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
|
|
|
|
*/
|
|
|
|
|
|
|
|
#include <linux/err.h>
|
|
|
|
#include <linux/module.h>
|
|
|
|
#include <linux/pm_runtime.h>
|
|
|
|
#include <linux/regmap.h>
|
|
|
|
#include <linux/regulator/consumer.h>
|
|
|
|
#include <linux/slab.h>
|
|
|
|
#include <linux/spi/spi.h>
|
2013-10-16 08:56:56 +00:00
|
|
|
#include <linux/of.h>
|
2012-06-19 15:36:18 +00:00
|
|
|
|
|
|
|
#include <linux/mfd/arizona/core.h>
|
|
|
|
|
|
|
|
#include "arizona.h"
|
|
|
|
|
2012-11-19 18:23:04 +00:00
|
|
|
static int arizona_spi_probe(struct spi_device *spi)
|
2012-06-19 15:36:18 +00:00
|
|
|
{
|
|
|
|
const struct spi_device_id *id = spi_get_device_id(spi);
|
|
|
|
struct arizona *arizona;
|
2015-10-02 12:29:14 +00:00
|
|
|
const struct regmap_config *regmap_config = NULL;
|
2014-07-02 13:28:46 +00:00
|
|
|
unsigned long type;
|
|
|
|
int ret;
|
2012-06-19 15:36:18 +00:00
|
|
|
|
2013-03-25 00:11:27 +00:00
|
|
|
if (spi->dev.of_node)
|
|
|
|
type = arizona_of_get_type(&spi->dev);
|
|
|
|
else
|
|
|
|
type = id->driver_data;
|
|
|
|
|
|
|
|
switch (type) {
|
2012-06-19 15:36:18 +00:00
|
|
|
case WM5102:
|
2015-10-02 12:29:14 +00:00
|
|
|
if (IS_ENABLED(CONFIG_MFD_WM5102))
|
|
|
|
regmap_config = &wm5102_spi_regmap;
|
2012-06-19 15:36:18 +00:00
|
|
|
break;
|
2012-07-10 11:37:58 +00:00
|
|
|
case WM5110:
|
2015-01-17 15:21:22 +00:00
|
|
|
case WM8280:
|
2015-10-02 12:29:14 +00:00
|
|
|
if (IS_ENABLED(CONFIG_MFD_WM5110))
|
|
|
|
regmap_config = &wm5110_spi_regmap;
|
2012-07-10 11:37:58 +00:00
|
|
|
break;
|
2015-11-03 15:08:32 +00:00
|
|
|
case WM1831:
|
|
|
|
case CS47L24:
|
|
|
|
if (IS_ENABLED(CONFIG_MFD_CS47L24))
|
|
|
|
regmap_config = &cs47l24_spi_regmap;
|
|
|
|
break;
|
2012-06-19 15:36:18 +00:00
|
|
|
default:
|
2015-10-02 12:29:15 +00:00
|
|
|
dev_err(&spi->dev, "Unknown device type %ld\n", type);
|
2012-06-19 15:36:18 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
2015-10-02 12:29:14 +00:00
|
|
|
if (!regmap_config) {
|
|
|
|
dev_err(&spi->dev,
|
|
|
|
"No kernel support for device type %ld\n", type);
|
2012-06-19 15:36:18 +00:00
|
|
|
return -EINVAL;
|
|
|
|
}
|
|
|
|
|
|
|
|
arizona = devm_kzalloc(&spi->dev, sizeof(*arizona), GFP_KERNEL);
|
|
|
|
if (arizona == NULL)
|
|
|
|
return -ENOMEM;
|
|
|
|
|
|
|
|
arizona->regmap = devm_regmap_init_spi(spi, regmap_config);
|
|
|
|
if (IS_ERR(arizona->regmap)) {
|
|
|
|
ret = PTR_ERR(arizona->regmap);
|
|
|
|
dev_err(&spi->dev, "Failed to allocate register map: %d\n",
|
|
|
|
ret);
|
|
|
|
return ret;
|
|
|
|
}
|
|
|
|
|
2015-10-02 12:29:15 +00:00
|
|
|
arizona->type = type;
|
2012-06-19 15:36:18 +00:00
|
|
|
arizona->dev = &spi->dev;
|
|
|
|
arizona->irq = spi->irq;
|
|
|
|
|
|
|
|
return arizona_dev_init(arizona);
|
|
|
|
}
|
|
|
|
|
2012-11-19 18:26:01 +00:00
|
|
|
static int arizona_spi_remove(struct spi_device *spi)
|
2012-06-19 15:36:18 +00:00
|
|
|
{
|
2013-04-06 06:44:30 +00:00
|
|
|
struct arizona *arizona = spi_get_drvdata(spi);
|
2014-10-15 08:38:47 +00:00
|
|
|
|
2012-06-19 15:36:18 +00:00
|
|
|
arizona_dev_exit(arizona);
|
2014-10-15 08:38:47 +00:00
|
|
|
|
2012-06-19 15:36:18 +00:00
|
|
|
return 0;
|
|
|
|
}
|
|
|
|
|
|
|
|
static const struct spi_device_id arizona_spi_ids[] = {
|
|
|
|
{ "wm5102", WM5102 },
|
2012-07-10 11:37:58 +00:00
|
|
|
{ "wm5110", WM5110 },
|
2015-01-17 15:21:22 +00:00
|
|
|
{ "wm8280", WM8280 },
|
2015-11-03 15:08:32 +00:00
|
|
|
{ "wm1831", WM1831 },
|
|
|
|
{ "cs47l24", CS47L24 },
|
2012-06-19 15:36:18 +00:00
|
|
|
{ },
|
|
|
|
};
|
|
|
|
MODULE_DEVICE_TABLE(spi, arizona_spi_ids);
|
|
|
|
|
|
|
|
static struct spi_driver arizona_spi_driver = {
|
|
|
|
.driver = {
|
|
|
|
.name = "arizona",
|
|
|
|
.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:36:18 +00:00
|
|
|
},
|
|
|
|
.probe = arizona_spi_probe,
|
2012-11-19 18:20:24 +00:00
|
|
|
.remove = arizona_spi_remove,
|
2012-06-19 15:36:18 +00:00
|
|
|
.id_table = arizona_spi_ids,
|
|
|
|
};
|
|
|
|
|
|
|
|
module_spi_driver(arizona_spi_driver);
|
|
|
|
|
|
|
|
MODULE_DESCRIPTION("Arizona SPI bus interface");
|
|
|
|
MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
|
|
|
|
MODULE_LICENSE("GPL");
|