blob: f8194f7c61862c6d006210068a02c3962cdcf1e3 [file] [log] [blame]
Thomas Gleixner82c29812019-05-28 09:57:05 -07001// SPDX-License-Identifier: GPL-2.0-only
Richard Röjfors1e5db002009-09-22 16:46:34 -07002/*
Grant Likelyc103de22011-06-04 18:38:28 -06003 * MC33880 high-side/low-side switch GPIO driver
Richard Röjfors1e5db002009-09-22 16:46:34 -07004 * Copyright (c) 2009 Intel Corporation
Richard Röjfors1e5db002009-09-22 16:46:34 -07005 */
6
7/* Supports:
8 * Freescale MC33880 high-side/low-side switch
9 */
10
11#include <linux/init.h>
12#include <linux/mutex.h>
13#include <linux/spi/spi.h>
14#include <linux/spi/mc33880.h>
Linus Walleij03a3f192018-04-13 15:08:00 +020015#include <linux/gpio/driver.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090016#include <linux/slab.h>
Paul Gortmakerbb207ef2011-07-03 13:38:09 -040017#include <linux/module.h>
Richard Röjfors1e5db002009-09-22 16:46:34 -070018
19#define DRIVER_NAME "mc33880"
20
21/*
22 * Pin configurations, see MAX7301 datasheet page 6
23 */
24#define PIN_CONFIG_MASK 0x03
25#define PIN_CONFIG_IN_PULLUP 0x03
26#define PIN_CONFIG_IN_WO_PULLUP 0x02
27#define PIN_CONFIG_OUT 0x01
28
29#define PIN_NUMBER 8
30
31
32/*
33 * Some registers must be read back to modify.
34 * To save time we cache them here in memory
35 */
36struct mc33880 {
Lucas De Marchi25985ed2011-03-30 22:57:33 -030037 struct mutex lock; /* protect from simultaneous accesses */
Richard Röjfors1e5db002009-09-22 16:46:34 -070038 u8 port_config;
39 struct gpio_chip chip;
40 struct spi_device *spi;
41};
42
43static int mc33880_write_config(struct mc33880 *mc)
44{
45 return spi_write(mc->spi, &mc->port_config, sizeof(mc->port_config));
46}
47
48
49static int __mc33880_set(struct mc33880 *mc, unsigned offset, int value)
50{
51 if (value)
52 mc->port_config |= 1 << offset;
53 else
54 mc->port_config &= ~(1 << offset);
55
56 return mc33880_write_config(mc);
57}
58
59
60static void mc33880_set(struct gpio_chip *chip, unsigned offset, int value)
61{
Linus Walleij609f9692015-12-07 10:04:32 +010062 struct mc33880 *mc = gpiochip_get_data(chip);
Richard Röjfors1e5db002009-09-22 16:46:34 -070063
64 mutex_lock(&mc->lock);
65
66 __mc33880_set(mc, offset, value);
67
68 mutex_unlock(&mc->lock);
69}
70
Bill Pemberton38363092012-11-19 13:22:34 -050071static int mc33880_probe(struct spi_device *spi)
Richard Röjfors1e5db002009-09-22 16:46:34 -070072{
73 struct mc33880 *mc;
74 struct mc33880_platform_data *pdata;
75 int ret;
76
Jingoo Hane56aee12013-07-30 17:08:05 +090077 pdata = dev_get_platdata(&spi->dev);
Richard Röjfors1e5db002009-09-22 16:46:34 -070078 if (!pdata || !pdata->base) {
79 dev_dbg(&spi->dev, "incorrect or missing platform data\n");
80 return -EINVAL;
81 }
82
83 /*
84 * bits_per_word cannot be configured in platform data
85 */
86 spi->bits_per_word = 8;
87
88 ret = spi_setup(spi);
89 if (ret < 0)
90 return ret;
91
Jingoo Han632d8e52013-03-15 18:15:49 +090092 mc = devm_kzalloc(&spi->dev, sizeof(struct mc33880), GFP_KERNEL);
Richard Röjfors1e5db002009-09-22 16:46:34 -070093 if (!mc)
94 return -ENOMEM;
95
96 mutex_init(&mc->lock);
97
Jingoo Han493294d2013-03-15 18:17:54 +090098 spi_set_drvdata(spi, mc);
Richard Röjfors1e5db002009-09-22 16:46:34 -070099
100 mc->spi = spi;
101
102 mc->chip.label = DRIVER_NAME,
103 mc->chip.set = mc33880_set;
104 mc->chip.base = pdata->base;
105 mc->chip.ngpio = PIN_NUMBER;
Linus Walleij9fb1f392013-12-04 14:42:46 +0100106 mc->chip.can_sleep = true;
Linus Walleij58383c782015-11-04 09:56:26 +0100107 mc->chip.parent = &spi->dev;
Richard Röjfors1e5db002009-09-22 16:46:34 -0700108 mc->chip.owner = THIS_MODULE;
109
110 mc->port_config = 0x00;
111 /* write twice, because during initialisation the first setting
112 * is just for testing SPI communication, and the second is the
113 * "real" configuration
114 */
115 ret = mc33880_write_config(mc);
116 mc->port_config = 0x00;
117 if (!ret)
118 ret = mc33880_write_config(mc);
119
120 if (ret) {
Jingoo Han30db2bd2013-03-15 18:16:49 +0900121 dev_err(&spi->dev, "Failed writing to " DRIVER_NAME ": %d\n",
122 ret);
Richard Röjfors1e5db002009-09-22 16:46:34 -0700123 goto exit_destroy;
124 }
125
Linus Walleij609f9692015-12-07 10:04:32 +0100126 ret = gpiochip_add_data(&mc->chip, mc);
Richard Röjfors1e5db002009-09-22 16:46:34 -0700127 if (ret)
128 goto exit_destroy;
129
130 return ret;
131
132exit_destroy:
Richard Röjfors1e5db002009-09-22 16:46:34 -0700133 mutex_destroy(&mc->lock);
Richard Röjfors1e5db002009-09-22 16:46:34 -0700134 return ret;
135}
136
Bill Pemberton206210c2012-11-19 13:25:50 -0500137static int mc33880_remove(struct spi_device *spi)
Richard Röjfors1e5db002009-09-22 16:46:34 -0700138{
139 struct mc33880 *mc;
Richard Röjfors1e5db002009-09-22 16:46:34 -0700140
Jingoo Han493294d2013-03-15 18:17:54 +0900141 mc = spi_get_drvdata(spi);
Varka Bhadramafeb7b42015-03-31 09:49:11 +0530142 if (!mc)
Richard Röjfors1e5db002009-09-22 16:46:34 -0700143 return -ENODEV;
144
abdoulaye berthe9f5132a2014-07-12 22:30:12 +0200145 gpiochip_remove(&mc->chip);
146 mutex_destroy(&mc->lock);
Richard Röjfors1e5db002009-09-22 16:46:34 -0700147
abdoulaye berthe9f5132a2014-07-12 22:30:12 +0200148 return 0;
Richard Röjfors1e5db002009-09-22 16:46:34 -0700149}
150
151static struct spi_driver mc33880_driver = {
152 .driver = {
153 .name = DRIVER_NAME,
Richard Röjfors1e5db002009-09-22 16:46:34 -0700154 },
155 .probe = mc33880_probe,
Bill Pemberton8283c4f2012-11-19 13:20:08 -0500156 .remove = mc33880_remove,
Richard Röjfors1e5db002009-09-22 16:46:34 -0700157};
158
159static int __init mc33880_init(void)
160{
161 return spi_register_driver(&mc33880_driver);
162}
163/* register after spi postcore initcall and before
164 * subsys initcalls that may rely on these GPIOs
165 */
166subsys_initcall(mc33880_init);
167
168static void __exit mc33880_exit(void)
169{
170 spi_unregister_driver(&mc33880_driver);
171}
172module_exit(mc33880_exit);
173
174MODULE_AUTHOR("Mocean Laboratories <info@mocean-labs.com>");
175MODULE_LICENSE("GPL v2");
176