blob: 45ae0b7d13ef19749311a3cdbc2f06dd456f8e4e [file] [log] [blame]
Ashish Jangamcfe04472011-12-12 20:37:41 +05301/*
2 * SPI access for Dialog DA9052 PMICs.
3 *
4 * Copyright(c) 2011 Dialog Semiconductor Ltd.
5 *
6 * Author: David Dajun Chen <dchen@diasemi.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 as published by
10 * the Free Software Foundation; either version 2 of the License, or
11 * (at your option) any later version.
12 *
13 */
14
15#include <linux/device.h>
16#include <linux/module.h>
17#include <linux/input.h>
18#include <linux/mfd/core.h>
19#include <linux/spi/spi.h>
20#include <linux/err.h>
21
22#include <linux/mfd/da9052/da9052.h>
23
Bill Pembertonf791be42012-11-19 13:23:04 -050024static int da9052_spi_probe(struct spi_device *spi)
Ashish Jangamcfe04472011-12-12 20:37:41 +053025{
Axel Line9e9d392014-08-16 21:23:40 +080026 struct regmap_config config;
Ashish Jangamcfe04472011-12-12 20:37:41 +053027 int ret;
28 const struct spi_device_id *id = spi_get_device_id(spi);
Axel Lin6608a5e2012-05-11 09:29:51 +080029 struct da9052 *da9052;
Ashish Jangamcfe04472011-12-12 20:37:41 +053030
Axel Lin6608a5e2012-05-11 09:29:51 +080031 da9052 = devm_kzalloc(&spi->dev, sizeof(struct da9052), GFP_KERNEL);
Ashish Jangamcfe04472011-12-12 20:37:41 +053032 if (!da9052)
33 return -ENOMEM;
34
35 spi->mode = SPI_MODE_0 | SPI_CPOL;
36 spi->bits_per_word = 8;
37 spi_setup(spi);
38
39 da9052->dev = &spi->dev;
40 da9052->chip_irq = spi->irq;
41
Jingoo Han1b1ba092013-04-06 15:43:23 +090042 spi_set_drvdata(spi, da9052);
Ashish Jangamcfe04472011-12-12 20:37:41 +053043
Axel Line9e9d392014-08-16 21:23:40 +080044 config = da9052_regmap_config;
45 config.read_flag_mask = 1;
Ashish Jangamcfe04472011-12-12 20:37:41 +053046
Axel Line9e9d392014-08-16 21:23:40 +080047 da9052->regmap = devm_regmap_init_spi(spi, &config);
Ashish Jangamcfe04472011-12-12 20:37:41 +053048 if (IS_ERR(da9052->regmap)) {
49 ret = PTR_ERR(da9052->regmap);
50 dev_err(&spi->dev, "Failed to allocate register map: %d\n",
51 ret);
Axel Lin6608a5e2012-05-11 09:29:51 +080052 return ret;
Ashish Jangamcfe04472011-12-12 20:37:41 +053053 }
54
55 ret = da9052_device_init(da9052, id->driver_data);
56 if (ret != 0)
Axel Lin6608a5e2012-05-11 09:29:51 +080057 return ret;
Ashish Jangamcfe04472011-12-12 20:37:41 +053058
59 return 0;
Ashish Jangamcfe04472011-12-12 20:37:41 +053060}
61
Bill Pemberton4740f732012-11-19 13:26:01 -050062static int da9052_spi_remove(struct spi_device *spi)
Ashish Jangamcfe04472011-12-12 20:37:41 +053063{
Jingoo Han1b1ba092013-04-06 15:43:23 +090064 struct da9052 *da9052 = spi_get_drvdata(spi);
Ashish Jangamcfe04472011-12-12 20:37:41 +053065
66 da9052_device_exit(da9052);
Ashish Jangamcfe04472011-12-12 20:37:41 +053067 return 0;
68}
69
70static struct spi_device_id da9052_spi_id[] = {
71 {"da9052", DA9052},
72 {"da9053-aa", DA9053_AA},
73 {"da9053-ba", DA9053_BA},
74 {"da9053-bb", DA9053_BB},
Opensource [Anthony Olech]6c049b22014-02-19 16:32:47 +000075 {"da9053-bc", DA9053_BC},
Ashish Jangamcfe04472011-12-12 20:37:41 +053076 {}
77};
78
79static struct spi_driver da9052_spi_driver = {
80 .probe = da9052_spi_probe,
Bill Pemberton84449212012-11-19 13:20:24 -050081 .remove = da9052_spi_remove,
Ashish Jangamcfe04472011-12-12 20:37:41 +053082 .id_table = da9052_spi_id,
83 .driver = {
84 .name = "da9052",
Ashish Jangamcfe04472011-12-12 20:37:41 +053085 .owner = THIS_MODULE,
86 },
87};
88
89static int __init da9052_spi_init(void)
90{
91 int ret;
92
93 ret = spi_register_driver(&da9052_spi_driver);
94 if (ret != 0) {
95 pr_err("Failed to register DA9052 SPI driver, %d\n", ret);
96 return ret;
97 }
98
99 return 0;
100}
101subsys_initcall(da9052_spi_init);
102
103static void __exit da9052_spi_exit(void)
104{
105 spi_unregister_driver(&da9052_spi_driver);
106}
107module_exit(da9052_spi_exit);
108
109MODULE_AUTHOR("David Dajun Chen <dchen@diasemi.com>");
110MODULE_DESCRIPTION("SPI driver for Dialog DA9052 PMIC");
111MODULE_LICENSE("GPL");