blob: 1e845f6d407b82aa6e26ec5ef19b5545b911ddac [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;
30 const struct regmap_config *regmap_config;
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#ifdef CONFIG_MFD_WM5102
41 case WM5102:
42 regmap_config = &wm5102_spi_regmap;
43 break;
44#endif
Mark Browne102bef2012-07-10 12:37:58 +010045#ifdef CONFIG_MFD_WM5110
46 case WM5110:
Richard Fitzgeralde5d4ef02015-01-17 15:21:22 +000047 case WM8280:
Mark Browne102bef2012-07-10 12:37:58 +010048 regmap_config = &wm5110_spi_regmap;
49 break;
50#endif
Mark Browna15123c2012-06-19 16:36:18 +010051 default:
52 dev_err(&spi->dev, "Unknown device type %ld\n",
53 id->driver_data);
54 return -EINVAL;
55 }
56
57 arizona = devm_kzalloc(&spi->dev, sizeof(*arizona), GFP_KERNEL);
58 if (arizona == NULL)
59 return -ENOMEM;
60
61 arizona->regmap = devm_regmap_init_spi(spi, regmap_config);
62 if (IS_ERR(arizona->regmap)) {
63 ret = PTR_ERR(arizona->regmap);
64 dev_err(&spi->dev, "Failed to allocate register map: %d\n",
65 ret);
66 return ret;
67 }
68
69 arizona->type = id->driver_data;
70 arizona->dev = &spi->dev;
71 arizona->irq = spi->irq;
72
73 return arizona_dev_init(arizona);
74}
75
Bill Pemberton4740f732012-11-19 13:26:01 -050076static int arizona_spi_remove(struct spi_device *spi)
Mark Browna15123c2012-06-19 16:36:18 +010077{
Jingoo Hane9642d52013-04-06 15:44:30 +090078 struct arizona *arizona = spi_get_drvdata(spi);
Will Sheppard6f467e52014-10-15 09:38:47 +010079
Mark Browna15123c2012-06-19 16:36:18 +010080 arizona_dev_exit(arizona);
Will Sheppard6f467e52014-10-15 09:38:47 +010081
Mark Browna15123c2012-06-19 16:36:18 +010082 return 0;
83}
84
85static const struct spi_device_id arizona_spi_ids[] = {
86 { "wm5102", WM5102 },
Mark Browne102bef2012-07-10 12:37:58 +010087 { "wm5110", WM5110 },
Richard Fitzgeralde5d4ef02015-01-17 15:21:22 +000088 { "wm8280", WM8280 },
Mark Browna15123c2012-06-19 16:36:18 +010089 { },
90};
91MODULE_DEVICE_TABLE(spi, arizona_spi_ids);
92
93static struct spi_driver arizona_spi_driver = {
94 .driver = {
95 .name = "arizona",
96 .owner = THIS_MODULE,
97 .pm = &arizona_pm_ops,
Mark Brownd7810092013-03-25 00:11:27 +000098 .of_match_table = of_match_ptr(arizona_of_match),
Mark Browna15123c2012-06-19 16:36:18 +010099 },
100 .probe = arizona_spi_probe,
Bill Pemberton84449212012-11-19 13:20:24 -0500101 .remove = arizona_spi_remove,
Mark Browna15123c2012-06-19 16:36:18 +0100102 .id_table = arizona_spi_ids,
103};
104
105module_spi_driver(arizona_spi_driver);
106
107MODULE_DESCRIPTION("Arizona SPI bus interface");
108MODULE_AUTHOR("Mark Brown <broonie@opensource.wolfsonmicro.com>");
109MODULE_LICENSE("GPL");