blob: 58674ff75097e701be7396fd8e82b1407144e66a [file] [log] [blame]
Simon Guinot6c17aa02013-08-29 22:56:56 +02001/*
Peter Hung1920906f2016-01-22 15:23:33 +08002 * GPIO driver for Fintek Super-I/O F71869, F71869A, F71882, F71889 and F81866
Simon Guinot6c17aa02013-08-29 22:56:56 +02003 *
4 * Copyright (C) 2010-2013 LaCie
5 *
6 * Author: Simon Guinot <simon.guinot@sequanux.org>
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#include <linux/module.h>
15#include <linux/init.h>
16#include <linux/platform_device.h>
17#include <linux/io.h>
Linus Walleij148c8642016-04-09 15:59:41 +020018#include <linux/gpio/driver.h>
19#include <linux/bitops.h>
Simon Guinot6c17aa02013-08-29 22:56:56 +020020
21#define DRVNAME "gpio-f7188x"
22
23/*
24 * Super-I/O registers
25 */
26#define SIO_LDSEL 0x07 /* Logical device select */
27#define SIO_DEVID 0x20 /* Device ID (2 bytes) */
28#define SIO_DEVREV 0x22 /* Device revision */
29#define SIO_MANID 0x23 /* Fintek ID (2 bytes) */
30
31#define SIO_LD_GPIO 0x06 /* GPIO logical device */
32#define SIO_UNLOCK_KEY 0x87 /* Key to enable Super-I/O */
33#define SIO_LOCK_KEY 0xAA /* Key to disable Super-I/O */
34
35#define SIO_FINTEK_ID 0x1934 /* Manufacturer ID */
Andreas Bofjall24ccef32015-03-09 21:55:13 +010036#define SIO_F71869_ID 0x0814 /* F71869 chipset ID */
Andreas Bofjall7e960362015-03-09 21:55:14 +010037#define SIO_F71869A_ID 0x1007 /* F71869A chipset ID */
Simon Guinot6c17aa02013-08-29 22:56:56 +020038#define SIO_F71882_ID 0x0541 /* F71882 chipset ID */
39#define SIO_F71889_ID 0x0909 /* F71889 chipset ID */
Peter Hung1920906f2016-01-22 15:23:33 +080040#define SIO_F81866_ID 0x1010 /* F81866 chipset ID */
Simon Guinot6c17aa02013-08-29 22:56:56 +020041
Peter Hung1920906f2016-01-22 15:23:33 +080042enum chips { f71869, f71869a, f71882fg, f71889f, f81866 };
Simon Guinot6c17aa02013-08-29 22:56:56 +020043
44static const char * const f7188x_names[] = {
Andreas Bofjall24ccef32015-03-09 21:55:13 +010045 "f71869",
Andreas Bofjall7e960362015-03-09 21:55:14 +010046 "f71869a",
Simon Guinot6c17aa02013-08-29 22:56:56 +020047 "f71882fg",
48 "f71889f",
Peter Hung1920906f2016-01-22 15:23:33 +080049 "f81866",
Simon Guinot6c17aa02013-08-29 22:56:56 +020050};
51
52struct f7188x_sio {
53 int addr;
54 enum chips type;
55};
56
57struct f7188x_gpio_bank {
58 struct gpio_chip chip;
59 unsigned int regbase;
60 struct f7188x_gpio_data *data;
61};
62
63struct f7188x_gpio_data {
64 struct f7188x_sio *sio;
65 int nr_bank;
66 struct f7188x_gpio_bank *bank;
67};
68
69/*
70 * Super-I/O functions.
71 */
72
73static inline int superio_inb(int base, int reg)
74{
75 outb(reg, base);
76 return inb(base + 1);
77}
78
79static int superio_inw(int base, int reg)
80{
81 int val;
82
83 outb(reg++, base);
84 val = inb(base + 1) << 8;
85 outb(reg, base);
86 val |= inb(base + 1);
87
88 return val;
89}
90
91static inline void superio_outb(int base, int reg, int val)
92{
93 outb(reg, base);
94 outb(val, base + 1);
95}
96
97static inline int superio_enter(int base)
98{
99 /* Don't step on other drivers' I/O space by accident. */
100 if (!request_muxed_region(base, 2, DRVNAME)) {
101 pr_err(DRVNAME "I/O address 0x%04x already in use\n", base);
102 return -EBUSY;
103 }
104
105 /* According to the datasheet the key must be send twice. */
106 outb(SIO_UNLOCK_KEY, base);
107 outb(SIO_UNLOCK_KEY, base);
108
109 return 0;
110}
111
112static inline void superio_select(int base, int ld)
113{
114 outb(SIO_LDSEL, base);
115 outb(ld, base + 1);
116}
117
118static inline void superio_exit(int base)
119{
120 outb(SIO_LOCK_KEY, base);
121 release_region(base, 2);
122}
123
124/*
125 * GPIO chip.
126 */
127
128static int f7188x_gpio_direction_in(struct gpio_chip *chip, unsigned offset);
129static int f7188x_gpio_get(struct gpio_chip *chip, unsigned offset);
130static int f7188x_gpio_direction_out(struct gpio_chip *chip,
131 unsigned offset, int value);
132static void f7188x_gpio_set(struct gpio_chip *chip, unsigned offset, int value);
Linus Walleijf90c6bd2016-04-09 16:11:37 +0200133static int f7188x_gpio_set_single_ended(struct gpio_chip *gc,
134 unsigned offset,
135 enum single_ended_mode mode);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200136
137#define F7188X_GPIO_BANK(_base, _ngpio, _regbase) \
138 { \
139 .chip = { \
140 .label = DRVNAME, \
141 .owner = THIS_MODULE, \
142 .direction_input = f7188x_gpio_direction_in, \
143 .get = f7188x_gpio_get, \
144 .direction_output = f7188x_gpio_direction_out, \
145 .set = f7188x_gpio_set, \
Linus Walleijf90c6bd2016-04-09 16:11:37 +0200146 .set_single_ended = f7188x_gpio_set_single_ended, \
Simon Guinot6c17aa02013-08-29 22:56:56 +0200147 .base = _base, \
148 .ngpio = _ngpio, \
Simon Guinotaeccc1b2014-01-03 16:04:08 +0100149 .can_sleep = true, \
Simon Guinot6c17aa02013-08-29 22:56:56 +0200150 }, \
151 .regbase = _regbase, \
152 }
153
154#define gpio_dir(base) (base + 0)
155#define gpio_data_out(base) (base + 1)
156#define gpio_data_in(base) (base + 2)
157/* Output mode register (0:open drain 1:push-pull). */
158#define gpio_out_mode(base) (base + 3)
159
Andreas Bofjall24ccef32015-03-09 21:55:13 +0100160static struct f7188x_gpio_bank f71869_gpio_bank[] = {
161 F7188X_GPIO_BANK(0, 6, 0xF0),
162 F7188X_GPIO_BANK(10, 8, 0xE0),
163 F7188X_GPIO_BANK(20, 8, 0xD0),
164 F7188X_GPIO_BANK(30, 8, 0xC0),
165 F7188X_GPIO_BANK(40, 8, 0xB0),
166 F7188X_GPIO_BANK(50, 5, 0xA0),
167 F7188X_GPIO_BANK(60, 6, 0x90),
168};
169
Andreas Bofjall7e960362015-03-09 21:55:14 +0100170static struct f7188x_gpio_bank f71869a_gpio_bank[] = {
171 F7188X_GPIO_BANK(0, 6, 0xF0),
172 F7188X_GPIO_BANK(10, 8, 0xE0),
173 F7188X_GPIO_BANK(20, 8, 0xD0),
174 F7188X_GPIO_BANK(30, 8, 0xC0),
175 F7188X_GPIO_BANK(40, 8, 0xB0),
176 F7188X_GPIO_BANK(50, 5, 0xA0),
177 F7188X_GPIO_BANK(60, 8, 0x90),
178 F7188X_GPIO_BANK(70, 8, 0x80),
179};
180
Simon Guinot6c17aa02013-08-29 22:56:56 +0200181static struct f7188x_gpio_bank f71882_gpio_bank[] = {
Daniel Lockyer38e003f2015-06-10 14:26:27 +0100182 F7188X_GPIO_BANK(0, 8, 0xF0),
Simon Guinot6c17aa02013-08-29 22:56:56 +0200183 F7188X_GPIO_BANK(10, 8, 0xE0),
184 F7188X_GPIO_BANK(20, 8, 0xD0),
185 F7188X_GPIO_BANK(30, 4, 0xC0),
186 F7188X_GPIO_BANK(40, 4, 0xB0),
187};
188
189static struct f7188x_gpio_bank f71889_gpio_bank[] = {
Daniel Lockyer38e003f2015-06-10 14:26:27 +0100190 F7188X_GPIO_BANK(0, 7, 0xF0),
Simon Guinot6c17aa02013-08-29 22:56:56 +0200191 F7188X_GPIO_BANK(10, 7, 0xE0),
192 F7188X_GPIO_BANK(20, 8, 0xD0),
193 F7188X_GPIO_BANK(30, 8, 0xC0),
194 F7188X_GPIO_BANK(40, 8, 0xB0),
195 F7188X_GPIO_BANK(50, 5, 0xA0),
196 F7188X_GPIO_BANK(60, 8, 0x90),
197 F7188X_GPIO_BANK(70, 8, 0x80),
198};
199
Peter Hung1920906f2016-01-22 15:23:33 +0800200static struct f7188x_gpio_bank f81866_gpio_bank[] = {
201 F7188X_GPIO_BANK(0, 8, 0xF0),
202 F7188X_GPIO_BANK(10, 8, 0xE0),
203 F7188X_GPIO_BANK(20, 8, 0xD0),
204 F7188X_GPIO_BANK(30, 8, 0xC0),
205 F7188X_GPIO_BANK(40, 8, 0xB0),
206 F7188X_GPIO_BANK(50, 8, 0xA0),
207 F7188X_GPIO_BANK(60, 8, 0x90),
208 F7188X_GPIO_BANK(70, 8, 0x80),
209 F7188X_GPIO_BANK(80, 8, 0x88),
210};
211
Simon Guinot6c17aa02013-08-29 22:56:56 +0200212static int f7188x_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
213{
214 int err;
Linus Walleijf372d5f2015-12-06 10:51:13 +0100215 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200216 struct f7188x_sio *sio = bank->data->sio;
217 u8 dir;
218
219 err = superio_enter(sio->addr);
220 if (err)
221 return err;
222 superio_select(sio->addr, SIO_LD_GPIO);
223
224 dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
Linus Walleij148c8642016-04-09 15:59:41 +0200225 dir &= ~BIT(offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200226 superio_outb(sio->addr, gpio_dir(bank->regbase), dir);
227
228 superio_exit(sio->addr);
229
230 return 0;
231}
232
233static int f7188x_gpio_get(struct gpio_chip *chip, unsigned offset)
234{
235 int err;
Linus Walleijf372d5f2015-12-06 10:51:13 +0100236 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200237 struct f7188x_sio *sio = bank->data->sio;
238 u8 dir, data;
239
240 err = superio_enter(sio->addr);
241 if (err)
242 return err;
243 superio_select(sio->addr, SIO_LD_GPIO);
244
245 dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
Linus Walleij148c8642016-04-09 15:59:41 +0200246 dir = !!(dir & BIT(offset));
Simon Guinot6c17aa02013-08-29 22:56:56 +0200247 if (dir)
248 data = superio_inb(sio->addr, gpio_data_out(bank->regbase));
249 else
250 data = superio_inb(sio->addr, gpio_data_in(bank->regbase));
251
252 superio_exit(sio->addr);
253
Linus Walleij148c8642016-04-09 15:59:41 +0200254 return !!(data & BIT(offset));
Simon Guinot6c17aa02013-08-29 22:56:56 +0200255}
256
257static int f7188x_gpio_direction_out(struct gpio_chip *chip,
258 unsigned offset, int value)
259{
260 int err;
Linus Walleijf372d5f2015-12-06 10:51:13 +0100261 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200262 struct f7188x_sio *sio = bank->data->sio;
263 u8 dir, data_out;
264
265 err = superio_enter(sio->addr);
266 if (err)
267 return err;
268 superio_select(sio->addr, SIO_LD_GPIO);
269
270 data_out = superio_inb(sio->addr, gpio_data_out(bank->regbase));
271 if (value)
Linus Walleij148c8642016-04-09 15:59:41 +0200272 data_out |= BIT(offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200273 else
Linus Walleij148c8642016-04-09 15:59:41 +0200274 data_out &= ~BIT(offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200275 superio_outb(sio->addr, gpio_data_out(bank->regbase), data_out);
276
277 dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
Linus Walleij148c8642016-04-09 15:59:41 +0200278 dir |= BIT(offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200279 superio_outb(sio->addr, gpio_dir(bank->regbase), dir);
280
281 superio_exit(sio->addr);
282
283 return 0;
284}
285
286static void f7188x_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
287{
288 int err;
Linus Walleijf372d5f2015-12-06 10:51:13 +0100289 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200290 struct f7188x_sio *sio = bank->data->sio;
291 u8 data_out;
292
293 err = superio_enter(sio->addr);
294 if (err)
295 return;
296 superio_select(sio->addr, SIO_LD_GPIO);
297
298 data_out = superio_inb(sio->addr, gpio_data_out(bank->regbase));
299 if (value)
Linus Walleij148c8642016-04-09 15:59:41 +0200300 data_out |= BIT(offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200301 else
Linus Walleij148c8642016-04-09 15:59:41 +0200302 data_out &= ~BIT(offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200303 superio_outb(sio->addr, gpio_data_out(bank->regbase), data_out);
304
305 superio_exit(sio->addr);
306}
307
Linus Walleijf90c6bd2016-04-09 16:11:37 +0200308static int f7188x_gpio_set_single_ended(struct gpio_chip *chip,
309 unsigned offset,
310 enum single_ended_mode mode)
311{
312 int err;
313 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
314 struct f7188x_sio *sio = bank->data->sio;
315 u8 data;
316
317 if (mode != LINE_MODE_OPEN_DRAIN &&
318 mode != LINE_MODE_PUSH_PULL)
319 return -ENOTSUPP;
320
321 err = superio_enter(sio->addr);
322 if (err)
323 return err;
324 superio_select(sio->addr, SIO_LD_GPIO);
325
326 data = superio_inb(sio->addr, gpio_out_mode(bank->regbase));
327 if (mode == LINE_MODE_OPEN_DRAIN)
328 data &= ~BIT(offset);
329 else
330 data |= BIT(offset);
331 superio_outb(sio->addr, gpio_data_mode(bank->regbase), data);
332
333 superio_exit(sio->addr);
334 return 0;
335}
336
Simon Guinot6c17aa02013-08-29 22:56:56 +0200337/*
338 * Platform device and driver.
339 */
340
341static int f7188x_gpio_probe(struct platform_device *pdev)
342{
343 int err;
344 int i;
Nizam Haiderab128af2015-11-23 20:53:18 +0530345 struct f7188x_sio *sio = dev_get_platdata(&pdev->dev);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200346 struct f7188x_gpio_data *data;
347
348 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
349 if (!data)
350 return -ENOMEM;
351
352 switch (sio->type) {
Andreas Bofjall24ccef32015-03-09 21:55:13 +0100353 case f71869:
354 data->nr_bank = ARRAY_SIZE(f71869_gpio_bank);
355 data->bank = f71869_gpio_bank;
356 break;
Andreas Bofjall7e960362015-03-09 21:55:14 +0100357 case f71869a:
358 data->nr_bank = ARRAY_SIZE(f71869a_gpio_bank);
359 data->bank = f71869a_gpio_bank;
360 break;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200361 case f71882fg:
362 data->nr_bank = ARRAY_SIZE(f71882_gpio_bank);
363 data->bank = f71882_gpio_bank;
364 break;
365 case f71889f:
366 data->nr_bank = ARRAY_SIZE(f71889_gpio_bank);
367 data->bank = f71889_gpio_bank;
368 break;
Peter Hung1920906f2016-01-22 15:23:33 +0800369 case f81866:
370 data->nr_bank = ARRAY_SIZE(f81866_gpio_bank);
371 data->bank = f81866_gpio_bank;
372 break;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200373 default:
374 return -ENODEV;
375 }
376 data->sio = sio;
377
378 platform_set_drvdata(pdev, data);
379
380 /* For each GPIO bank, register a GPIO chip. */
381 for (i = 0; i < data->nr_bank; i++) {
382 struct f7188x_gpio_bank *bank = &data->bank[i];
383
Linus Walleij58383c72015-11-04 09:56:26 +0100384 bank->chip.parent = &pdev->dev;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200385 bank->data = data;
386
Laxman Dewangan330f4e52016-02-22 17:43:28 +0530387 err = devm_gpiochip_add_data(&pdev->dev, &bank->chip, bank);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200388 if (err) {
389 dev_err(&pdev->dev,
390 "Failed to register gpiochip %d: %d\n",
391 i, err);
Laxman Dewangan330f4e52016-02-22 17:43:28 +0530392 return err;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200393 }
394 }
395
396 return 0;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200397}
398
399static int __init f7188x_find(int addr, struct f7188x_sio *sio)
400{
401 int err;
402 u16 devid;
403
404 err = superio_enter(addr);
405 if (err)
406 return err;
407
408 err = -ENODEV;
409 devid = superio_inw(addr, SIO_MANID);
410 if (devid != SIO_FINTEK_ID) {
411 pr_debug(DRVNAME ": Not a Fintek device at 0x%08x\n", addr);
412 goto err;
413 }
414
415 devid = superio_inw(addr, SIO_DEVID);
416 switch (devid) {
Andreas Bofjall24ccef32015-03-09 21:55:13 +0100417 case SIO_F71869_ID:
418 sio->type = f71869;
419 break;
Andreas Bofjall7e960362015-03-09 21:55:14 +0100420 case SIO_F71869A_ID:
421 sio->type = f71869a;
422 break;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200423 case SIO_F71882_ID:
424 sio->type = f71882fg;
425 break;
426 case SIO_F71889_ID:
427 sio->type = f71889f;
428 break;
Peter Hung1920906f2016-01-22 15:23:33 +0800429 case SIO_F81866_ID:
430 sio->type = f81866;
431 break;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200432 default:
433 pr_info(DRVNAME ": Unsupported Fintek device 0x%04x\n", devid);
434 goto err;
435 }
436 sio->addr = addr;
437 err = 0;
438
439 pr_info(DRVNAME ": Found %s at %#x, revision %d\n",
440 f7188x_names[sio->type],
441 (unsigned int) addr,
442 (int) superio_inb(addr, SIO_DEVREV));
443
444err:
445 superio_exit(addr);
446 return err;
447}
448
449static struct platform_device *f7188x_gpio_pdev;
450
451static int __init
452f7188x_gpio_device_add(const struct f7188x_sio *sio)
453{
454 int err;
455
456 f7188x_gpio_pdev = platform_device_alloc(DRVNAME, -1);
457 if (!f7188x_gpio_pdev)
458 return -ENOMEM;
459
460 err = platform_device_add_data(f7188x_gpio_pdev,
461 sio, sizeof(*sio));
462 if (err) {
463 pr_err(DRVNAME "Platform data allocation failed\n");
464 goto err;
465 }
466
467 err = platform_device_add(f7188x_gpio_pdev);
468 if (err) {
469 pr_err(DRVNAME "Device addition failed\n");
470 goto err;
471 }
472
473 return 0;
474
475err:
476 platform_device_put(f7188x_gpio_pdev);
477
478 return err;
479}
480
481/*
Andreas Bofjall3f8f4f12015-03-09 21:55:12 +0100482 * Try to match a supported Fintek device by reading the (hard-wired)
Simon Guinot6c17aa02013-08-29 22:56:56 +0200483 * configuration I/O ports. If available, then register both the platform
484 * device and driver to support the GPIOs.
485 */
486
487static struct platform_driver f7188x_gpio_driver = {
488 .driver = {
Simon Guinot6c17aa02013-08-29 22:56:56 +0200489 .name = DRVNAME,
490 },
491 .probe = f7188x_gpio_probe,
Simon Guinot6c17aa02013-08-29 22:56:56 +0200492};
493
494static int __init f7188x_gpio_init(void)
495{
496 int err;
497 struct f7188x_sio sio;
498
499 if (f7188x_find(0x2e, &sio) &&
500 f7188x_find(0x4e, &sio))
501 return -ENODEV;
502
503 err = platform_driver_register(&f7188x_gpio_driver);
504 if (!err) {
505 err = f7188x_gpio_device_add(&sio);
506 if (err)
507 platform_driver_unregister(&f7188x_gpio_driver);
508 }
509
510 return err;
511}
512subsys_initcall(f7188x_gpio_init);
513
514static void __exit f7188x_gpio_exit(void)
515{
516 platform_device_unregister(f7188x_gpio_pdev);
517 platform_driver_unregister(&f7188x_gpio_driver);
518}
519module_exit(f7188x_gpio_exit);
520
Peter Hung1920906f2016-01-22 15:23:33 +0800521MODULE_DESCRIPTION("GPIO driver for Super-I/O chips F71869, F71869A, F71882FG, F71889F and F81866");
Simon Guinot6c17aa02013-08-29 22:56:56 +0200522MODULE_AUTHOR("Simon Guinot <simon.guinot@sequanux.org>");
523MODULE_LICENSE("GPL");