blob: dc8911a8eb9037e29084e2d9b1305ddaaf5198a6 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Peng Fan03773432016-04-14 21:45:06 +08002/*
3 * Take linux kernel driver drivers/gpio/gpio-pca953x.c for reference.
4 *
5 * Copyright (C) 2016 Peng Fan <van.freenix@gmail.com>
6 *
Peng Fan03773432016-04-14 21:45:06 +08007 */
8
9/*
10 * Note:
11 * The driver's compatible table is borrowed from Linux Kernel,
12 * but now max supported gpio pins is 24 and only PCA953X_TYPE
13 * is supported. PCA957X_TYPE is not supported now.
14 * Also the Polarity Inversion feature is not supported now.
15 *
16 * TODO:
17 * 1. Support PCA957X_TYPE
Vignesh Raghavendradd6638a2020-01-27 23:19:00 +053018 * 2. Support Polarity Inversion
Peng Fan03773432016-04-14 21:45:06 +080019 */
20
21#include <common.h>
22#include <errno.h>
23#include <dm.h>
24#include <fdtdec.h>
25#include <i2c.h>
26#include <malloc.h>
27#include <asm/gpio.h>
28#include <asm/io.h>
Simon Glass336d4612020-02-03 07:36:16 -070029#include <dm/device_compat.h>
Peng Fan03773432016-04-14 21:45:06 +080030#include <dt-bindings/gpio/gpio.h>
Simon Glasscd93d622020-05-10 11:40:13 -060031#include <linux/bitops.h>
Peng Fan03773432016-04-14 21:45:06 +080032
33#define PCA953X_INPUT 0
34#define PCA953X_OUTPUT 1
35#define PCA953X_INVERT 2
36#define PCA953X_DIRECTION 3
37
38#define PCA_GPIO_MASK 0x00FF
39#define PCA_INT 0x0100
40#define PCA953X_TYPE 0x1000
41#define PCA957X_TYPE 0x2000
42#define PCA_TYPE_MASK 0xF000
43#define PCA_CHIP_TYPE(x) ((x) & PCA_TYPE_MASK)
44
45enum {
46 PCA953X_DIRECTION_IN,
47 PCA953X_DIRECTION_OUT,
48};
49
mario.six@gdsys.cc71db3272016-04-25 15:25:37 +020050#define MAX_BANK 5
Peng Fan03773432016-04-14 21:45:06 +080051#define BANK_SZ 8
52
Peng Fan03773432016-04-14 21:45:06 +080053/*
54 * struct pca953x_info - Data for pca953x
55 *
56 * @dev: udevice structure for the device
57 * @addr: i2c slave address
58 * @invert: Polarity inversion or not
59 * @gpio_count: the number of gpio pins that the device supports
60 * @chip_type: indicate the chip type,PCA953X or PCA957X
61 * @bank_count: the number of banks that the device supports
62 * @reg_output: array to hold the value of output registers
63 * @reg_direction: array to hold the value of direction registers
64 */
65struct pca953x_info {
66 struct udevice *dev;
67 int addr;
68 int invert;
69 int gpio_count;
70 int chip_type;
71 int bank_count;
72 u8 reg_output[MAX_BANK];
73 u8 reg_direction[MAX_BANK];
74};
75
76static int pca953x_write_single(struct udevice *dev, int reg, u8 val,
77 int offset)
78{
Simon Glassc69cda22020-12-03 16:55:20 -070079 struct pca953x_info *info = dev_get_plat(dev);
Peng Fan03773432016-04-14 21:45:06 +080080 int bank_shift = fls((info->gpio_count - 1) / BANK_SZ);
81 int off = offset / BANK_SZ;
82 int ret = 0;
83
84 ret = dm_i2c_write(dev, (reg << bank_shift) + off, &val, 1);
85 if (ret) {
86 dev_err(dev, "%s error\n", __func__);
87 return ret;
88 }
89
90 return 0;
91}
92
93static int pca953x_read_single(struct udevice *dev, int reg, u8 *val,
94 int offset)
95{
Simon Glassc69cda22020-12-03 16:55:20 -070096 struct pca953x_info *info = dev_get_plat(dev);
Peng Fan03773432016-04-14 21:45:06 +080097 int bank_shift = fls((info->gpio_count - 1) / BANK_SZ);
98 int off = offset / BANK_SZ;
99 int ret;
100 u8 byte;
101
102 ret = dm_i2c_read(dev, (reg << bank_shift) + off, &byte, 1);
103 if (ret) {
104 dev_err(dev, "%s error\n", __func__);
105 return ret;
106 }
107
108 *val = byte;
109
110 return 0;
111}
112
113static int pca953x_read_regs(struct udevice *dev, int reg, u8 *val)
114{
Simon Glassc69cda22020-12-03 16:55:20 -0700115 struct pca953x_info *info = dev_get_plat(dev);
Peng Fan03773432016-04-14 21:45:06 +0800116 int ret = 0;
117
118 if (info->gpio_count <= 8) {
119 ret = dm_i2c_read(dev, reg, val, 1);
120 } else if (info->gpio_count <= 16) {
121 ret = dm_i2c_read(dev, reg << 1, val, info->bank_count);
Vignesh Raghavendradd6638a2020-01-27 23:19:00 +0530122 } else if (info->gpio_count <= 24) {
123 /* Auto increment */
124 ret = dm_i2c_read(dev, (reg << 2) | 0x80, val,
125 info->bank_count);
mario.six@gdsys.cc71db3272016-04-25 15:25:37 +0200126 } else if (info->gpio_count == 40) {
127 /* Auto increment */
Mario Sixfb01e072018-01-15 11:07:44 +0100128 ret = dm_i2c_read(dev, (reg << 3) | 0x80, val,
129 info->bank_count);
Peng Fan03773432016-04-14 21:45:06 +0800130 } else {
131 dev_err(dev, "Unsupported now\n");
132 return -EINVAL;
133 }
134
135 return ret;
136}
137
Ye Li3764b2b2018-10-18 16:16:46 +0200138static int pca953x_write_regs(struct udevice *dev, int reg, u8 *val)
139{
Simon Glassc69cda22020-12-03 16:55:20 -0700140 struct pca953x_info *info = dev_get_plat(dev);
Ye Li3764b2b2018-10-18 16:16:46 +0200141 int ret = 0;
142
143 if (info->gpio_count <= 8) {
144 ret = dm_i2c_write(dev, reg, val, 1);
145 } else if (info->gpio_count <= 16) {
146 ret = dm_i2c_write(dev, reg << 1, val, info->bank_count);
Vignesh Raghavendradd6638a2020-01-27 23:19:00 +0530147 } else if (info->gpio_count <= 24) {
148 /* Auto increment */
149 ret = dm_i2c_write(dev, (reg << 2) | 0x80, val,
150 info->bank_count);
Ye Li3764b2b2018-10-18 16:16:46 +0200151 } else if (info->gpio_count == 40) {
152 /* Auto increment */
153 ret = dm_i2c_write(dev, (reg << 3) | 0x80, val, info->bank_count);
154 } else {
155 return -EINVAL;
156 }
157
158 return ret;
159}
160
Peng Fan03773432016-04-14 21:45:06 +0800161static int pca953x_is_output(struct udevice *dev, int offset)
162{
Simon Glassc69cda22020-12-03 16:55:20 -0700163 struct pca953x_info *info = dev_get_plat(dev);
Peng Fan03773432016-04-14 21:45:06 +0800164
165 int bank = offset / BANK_SZ;
166 int off = offset % BANK_SZ;
167
168 /*0: output; 1: input */
169 return !(info->reg_direction[bank] & (1 << off));
170}
171
Mario Sixfb01e072018-01-15 11:07:44 +0100172static int pca953x_get_value(struct udevice *dev, uint offset)
Peng Fan03773432016-04-14 21:45:06 +0800173{
174 int ret;
175 u8 val = 0;
176
mario.six@gdsys.ccfc76b692016-05-23 09:54:56 +0200177 int off = offset % BANK_SZ;
178
Peng Fan03773432016-04-14 21:45:06 +0800179 ret = pca953x_read_single(dev, PCA953X_INPUT, &val, offset);
180 if (ret)
181 return ret;
182
mario.six@gdsys.ccfc76b692016-05-23 09:54:56 +0200183 return (val >> off) & 0x1;
Peng Fan03773432016-04-14 21:45:06 +0800184}
185
Mario Sixfb01e072018-01-15 11:07:44 +0100186static int pca953x_set_value(struct udevice *dev, uint offset, int value)
Peng Fan03773432016-04-14 21:45:06 +0800187{
Simon Glassc69cda22020-12-03 16:55:20 -0700188 struct pca953x_info *info = dev_get_plat(dev);
Peng Fan03773432016-04-14 21:45:06 +0800189 int bank = offset / BANK_SZ;
190 int off = offset % BANK_SZ;
191 u8 val;
192 int ret;
193
194 if (value)
195 val = info->reg_output[bank] | (1 << off);
196 else
197 val = info->reg_output[bank] & ~(1 << off);
198
199 ret = pca953x_write_single(dev, PCA953X_OUTPUT, val, offset);
200 if (ret)
201 return ret;
202
203 info->reg_output[bank] = val;
204
205 return 0;
206}
207
Mario Sixfb01e072018-01-15 11:07:44 +0100208static int pca953x_set_direction(struct udevice *dev, uint offset, int dir)
Peng Fan03773432016-04-14 21:45:06 +0800209{
Simon Glassc69cda22020-12-03 16:55:20 -0700210 struct pca953x_info *info = dev_get_plat(dev);
Peng Fan03773432016-04-14 21:45:06 +0800211 int bank = offset / BANK_SZ;
212 int off = offset % BANK_SZ;
213 u8 val;
214 int ret;
215
216 if (dir == PCA953X_DIRECTION_IN)
217 val = info->reg_direction[bank] | (1 << off);
218 else
219 val = info->reg_direction[bank] & ~(1 << off);
220
221 ret = pca953x_write_single(dev, PCA953X_DIRECTION, val, offset);
222 if (ret)
223 return ret;
224
225 info->reg_direction[bank] = val;
226
227 return 0;
228}
229
Mario Sixfb01e072018-01-15 11:07:44 +0100230static int pca953x_direction_input(struct udevice *dev, uint offset)
Peng Fan03773432016-04-14 21:45:06 +0800231{
232 return pca953x_set_direction(dev, offset, PCA953X_DIRECTION_IN);
233}
234
Mario Sixfb01e072018-01-15 11:07:44 +0100235static int pca953x_direction_output(struct udevice *dev, uint offset, int value)
Peng Fan03773432016-04-14 21:45:06 +0800236{
237 /* Configure output value. */
238 pca953x_set_value(dev, offset, value);
239
240 /* Configure direction as output. */
241 pca953x_set_direction(dev, offset, PCA953X_DIRECTION_OUT);
242
243 return 0;
244}
245
Mario Sixfb01e072018-01-15 11:07:44 +0100246static int pca953x_get_function(struct udevice *dev, uint offset)
Peng Fan03773432016-04-14 21:45:06 +0800247{
248 if (pca953x_is_output(dev, offset))
249 return GPIOF_OUTPUT;
250 else
251 return GPIOF_INPUT;
252}
253
254static int pca953x_xlate(struct udevice *dev, struct gpio_desc *desc,
Simon Glass3a571232017-05-18 20:09:18 -0600255 struct ofnode_phandle_args *args)
Peng Fan03773432016-04-14 21:45:06 +0800256{
257 desc->offset = args->args[0];
Anatolij Gustschin745915a2018-10-18 16:15:39 +0200258 desc->flags = args->args[1] & GPIO_ACTIVE_LOW ? GPIOD_ACTIVE_LOW : 0;
Peng Fan03773432016-04-14 21:45:06 +0800259
260 return 0;
261}
262
263static const struct dm_gpio_ops pca953x_ops = {
264 .direction_input = pca953x_direction_input,
265 .direction_output = pca953x_direction_output,
266 .get_value = pca953x_get_value,
267 .set_value = pca953x_set_value,
268 .get_function = pca953x_get_function,
269 .xlate = pca953x_xlate,
270};
271
272static int pca953x_probe(struct udevice *dev)
273{
Simon Glassc69cda22020-12-03 16:55:20 -0700274 struct pca953x_info *info = dev_get_plat(dev);
Peng Fan03773432016-04-14 21:45:06 +0800275 struct gpio_dev_priv *uc_priv = dev_get_uclass_priv(dev);
Mario Six1e5f8982018-03-01 14:45:04 +0100276 char name[32], label[8], *str;
Peng Fan03773432016-04-14 21:45:06 +0800277 int addr;
278 ulong driver_data;
279 int ret;
Mario Six1e5f8982018-03-01 14:45:04 +0100280 int size;
281 const u8 *tmp;
Ye Li3764b2b2018-10-18 16:16:46 +0200282 u8 val[MAX_BANK];
Peng Fan03773432016-04-14 21:45:06 +0800283
Mario Sixf62ca2cd2018-01-15 11:07:45 +0100284 addr = dev_read_addr(dev);
Peng Fan03773432016-04-14 21:45:06 +0800285 if (addr == 0)
286 return -ENODEV;
287
288 info->addr = addr;
289
290 driver_data = dev_get_driver_data(dev);
291
292 info->gpio_count = driver_data & PCA_GPIO_MASK;
293 if (info->gpio_count > MAX_BANK * BANK_SZ) {
294 dev_err(dev, "Max support %d pins now\n", MAX_BANK * BANK_SZ);
295 return -EINVAL;
296 }
297
298 info->chip_type = PCA_CHIP_TYPE(driver_data);
299 if (info->chip_type != PCA953X_TYPE) {
300 dev_err(dev, "Only support PCA953X chip type now.\n");
301 return -EINVAL;
302 }
303
304 info->bank_count = DIV_ROUND_UP(info->gpio_count, BANK_SZ);
305
306 ret = pca953x_read_regs(dev, PCA953X_OUTPUT, info->reg_output);
307 if (ret) {
308 dev_err(dev, "Error reading output register\n");
309 return ret;
310 }
311
312 ret = pca953x_read_regs(dev, PCA953X_DIRECTION, info->reg_direction);
313 if (ret) {
314 dev_err(dev, "Error reading direction register\n");
315 return ret;
316 }
317
Mario Six1e5f8982018-03-01 14:45:04 +0100318 tmp = dev_read_prop(dev, "label", &size);
319
320 if (tmp) {
321 memcpy(label, tmp, sizeof(label) - 1);
322 label[sizeof(label) - 1] = '\0';
323 snprintf(name, sizeof(name), "%s@%x_", label, info->addr);
324 } else {
325 snprintf(name, sizeof(name), "gpio@%x_", info->addr);
326 }
327
Ye Li3764b2b2018-10-18 16:16:46 +0200328 /* Clear the polarity registers to no invert */
329 memset(val, 0, MAX_BANK);
330 ret = pca953x_write_regs(dev, PCA953X_INVERT, val);
331 if (ret < 0) {
332 dev_err(dev, "Error writing invert register\n");
333 return ret;
334 }
335
Peng Fan03773432016-04-14 21:45:06 +0800336 str = strdup(name);
337 if (!str)
338 return -ENOMEM;
339 uc_priv->bank_name = str;
340 uc_priv->gpio_count = info->gpio_count;
341
342 dev_dbg(dev, "%s is ready\n", str);
343
344 return 0;
345}
346
347#define OF_953X(__nrgpio, __int) (ulong)(__nrgpio | PCA953X_TYPE | __int)
348#define OF_957X(__nrgpio, __int) (ulong)(__nrgpio | PCA957X_TYPE | __int)
349
350static const struct udevice_id pca953x_ids[] = {
351 { .compatible = "nxp,pca9505", .data = OF_953X(40, PCA_INT), },
352 { .compatible = "nxp,pca9534", .data = OF_953X(8, PCA_INT), },
353 { .compatible = "nxp,pca9535", .data = OF_953X(16, PCA_INT), },
354 { .compatible = "nxp,pca9536", .data = OF_953X(4, 0), },
355 { .compatible = "nxp,pca9537", .data = OF_953X(4, PCA_INT), },
356 { .compatible = "nxp,pca9538", .data = OF_953X(8, PCA_INT), },
357 { .compatible = "nxp,pca9539", .data = OF_953X(16, PCA_INT), },
358 { .compatible = "nxp,pca9554", .data = OF_953X(8, PCA_INT), },
359 { .compatible = "nxp,pca9555", .data = OF_953X(16, PCA_INT), },
360 { .compatible = "nxp,pca9556", .data = OF_953X(8, 0), },
361 { .compatible = "nxp,pca9557", .data = OF_953X(8, 0), },
362 { .compatible = "nxp,pca9574", .data = OF_957X(8, PCA_INT), },
363 { .compatible = "nxp,pca9575", .data = OF_957X(16, PCA_INT), },
364 { .compatible = "nxp,pca9698", .data = OF_953X(40, 0), },
365
366 { .compatible = "maxim,max7310", .data = OF_953X(8, 0), },
367 { .compatible = "maxim,max7312", .data = OF_953X(16, PCA_INT), },
368 { .compatible = "maxim,max7313", .data = OF_953X(16, PCA_INT), },
369 { .compatible = "maxim,max7315", .data = OF_953X(8, PCA_INT), },
370
371 { .compatible = "ti,pca6107", .data = OF_953X(8, PCA_INT), },
372 { .compatible = "ti,tca6408", .data = OF_953X(8, PCA_INT), },
373 { .compatible = "ti,tca6416", .data = OF_953X(16, PCA_INT), },
374 { .compatible = "ti,tca6424", .data = OF_953X(24, PCA_INT), },
Marek Vasut4a098312019-05-25 22:52:20 +0200375 { .compatible = "ti,tca9539", .data = OF_953X(16, PCA_INT), },
Peng Fan03773432016-04-14 21:45:06 +0800376
377 { .compatible = "onsemi,pca9654", .data = OF_953X(8, PCA_INT), },
378
379 { .compatible = "exar,xra1202", .data = OF_953X(8, 0), },
380 { }
381};
382
383U_BOOT_DRIVER(pca953x) = {
384 .name = "pca953x",
385 .id = UCLASS_GPIO,
386 .ops = &pca953x_ops,
387 .probe = pca953x_probe,
Simon Glasscaa4daa2020-12-03 16:55:18 -0700388 .plat_auto = sizeof(struct pca953x_info),
Peng Fan03773432016-04-14 21:45:06 +0800389 .of_match = pca953x_ids,
390};