blob: 8cffb1cfe73d112052859a30c47ad413508c878a [file] [log] [blame]
Mark Browna15123c2012-06-19 16:36:18 +01001/*
2 * arizona-spi.c -- Arizona SPI bus interface
3 *
4 * Copyright 2012 Wolfson Microelectronics plc
5 *
6 * Author: Mark Brown <broonie@opensource.wolfsonmicro.com>
7 *
8 * This program is free software; you can redistribute it and/or modify
9 * it under the terms of the GNU General Public License version 2 as
10 * published by the Free Software Foundation.
11 */
12
13#include <linux/err.h>
14#include <linux/module.h>
15#include <linux/pm_runtime.h>
16#include <linux/regmap.h>
17#include <linux/regulator/consumer.h>
18#include <linux/slab.h>
19#include <linux/spi/spi.h>
Sachin Kamat3d6d1d12013-10-16 14:26:56 +053020#include <linux/of.h>
Mark Browna15123c2012-06-19 16:36:18 +010021
22#include <linux/mfd/arizona/core.h>
23
24#include "arizona.h"
25
Bill Pembertonf791be42012-11-19 13:23:04 -050026static int arizona_spi_probe(struct spi_device *spi)
Mark Browna15123c2012-06-19 16:36:18 +010027{
28 const struct spi_device_id *id = spi_get_device_id(spi);
29 struct arizona *arizona;
Richard Fitzgeraldb61c1ec2015-10-02 13:29:14 +010030 const struct regmap_config *regmap_config = NULL;
Lee Jones942786e2014-07-02 14:28:46 +010031 unsigned long type;
32 int ret;
Mark Browna15123c2012-06-19 16:36:18 +010033
Mark Brownd7810092013-03-25 00:11:27 +000034 if (spi->dev.of_node)
35 type = arizona_of_get_type(&spi->dev);
36 else
37 type = id->driver_data;
38
39 switch (type) {
Mark Browna15123c2012-06-19 16:36:18 +010040 case WM5102:
Richard Fitzgeraldb61c1ec2015-10-02 13:29:14 +010041 if (IS_ENABLED(CONFIG_MFD_WM5102))
42 regmap_config = &wm5102_spi_regmap;
Mark Browna15123c2012-06-19 16:36:18 +010043 break;
Mark Browne102bef2012-07-10 12:37:58 +010044 case WM5110:
Richard Fitzgeralde5d4ef02015-01-17 15:21:22 +000045 case WM8280:
Richard Fitzgeraldb61c1ec2015-10-02 13:29:14 +010046 if (IS_ENABLED(CONFIG_MFD_WM5110))
47 regmap_config = &wm5110_spi_regmap;
Mark Browne102bef2012-07-10 12:37:58 +010048 break;
Mark Browna15123c2012-06-19 16:36:18 +010049 default:
Richard Fitzgerald2e44e282015-10-02 13:29:15 +010050 dev_err(&spi->dev, "Unknown device type %ld\n", type);
Mark Browna15123c2012-06-19 16:36:18 +010051 return -EINVAL;
52 }
53
Richard Fitzgeraldb61c1ec2015-10-02 13:29:14 +010054 if (!regmap_config) {
55 dev_err(&spi->dev,
56 "No kernel support for device type %ld\n", type);
57 return -EINVAL;
58 }
59
Mark Browna15123c2012-06-19 16:36:18 +010060 arizona = devm_kzalloc(&spi->dev, sizeof(*arizona), GFP_KERNEL);
61 if (arizona == NULL)
62 return -ENOMEM;
63
64 arizona->regmap = devm_regmap_init_spi(spi, regmap_config);
65 if (IS_ERR(arizona->regmap)) {
66 ret = PTR_ERR(arizona->regmap);
67 dev_err(&spi->dev, "Failed to allocate register map: %d\n",
68 ret);
69 return ret;
70 }
71
Richard Fitzgerald2e44e282015-10-02 13:29:15 +010072 arizona->type = type;
Mark Browna15123c2012-06-19 16:36:18 +010073 arizona->dev = &spi->dev;
74 arizona->irq = spi->irq;
75
76 return arizona_dev_init(arizona);
77}
78
Bill Pemberton4740f732012-11-19 13:26:01 -050079static int arizona_spi_remove(struct spi_device *spi)
Mark Browna15123c2012-06-19 16:36:18 +010080{
Jingoo Hane9642d52013-04-06 15:44:30 +090081 struct arizona *arizona = spi_get_drvdata(spi);
Will Sheppard6f467e52014-10-15 09:38:47 +010082
Mark Browna15123c2012-06-19 16:36:18 +010083 arizona_dev_exit(arizona);
Will Sheppard6f467e52014-10-15 09:38:47 +010084
Mark Browna15123c2012-06-19 16:36:18 +010085 return 0;
86}
87
88static const struct spi_device_id arizona_spi_ids[] = {
89 { "wm5102", WM5102 },
Mark Browne102bef2012-07-10 12:37:58 +010090 { "wm5110", WM5110 },
Richard Fitzgeralde5d4ef02015-01-17 15:21:22 +000091 { "wm8280", WM8280 },
Mark Browna15123c2012-06-19 16:36:18 +010092 { },
93};
94MODULE_DEVICE_TABLE(spi, arizona_spi_ids);
95
96static struct spi_driver arizona_spi_driver = {
97 .driver = {
98 .name = "arizona",
99 .owner = THIS_MODULE,
100 .pm = &arizona_pm_ops,
Mark Brownd7810092013-03-25 00:11:27 +0000101 .of_match_table = of_match_ptr(arizona_of_match),
Mark Browna15123c2012-06-19 16:36:18 +0100102 },
103 .probe = arizona_spi_probe,
Bill Pemberton84449212012-11-19 13:20:24 -0500104 .remove = arizona_spi_remove,
Mark Browna15123c2012-06-19 16:36:18 +0100105 .id_table = arizona_spi_ids,
106};
107
108module_spi_driver(arizona_spi_driver);
109
110MODULE_DESCRIPTION("Arizona SPI bus interface");
111MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
112MODULE_LICENSE("GPL");