arm64: defconfig: Enable more IP blocks for Exynos7 and Exynos5433
[linux-2.6/btrfs-unstable.git] / drivers / gpio / gpio-f7188x.c
blob05aa538c3767a3b5e90cedd4eb95a5e89b04c4fa
1 /*
2 * GPIO driver for Fintek Super-I/O F71869, F71869A, F71882, F71889 and F81866
4 * Copyright (C) 2010-2013 LaCie
6 * Author: Simon Guinot <simon.guinot@sequanux.org>
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.
14 #include <linux/module.h>
15 #include <linux/init.h>
16 #include <linux/platform_device.h>
17 #include <linux/io.h>
18 #include <linux/gpio/driver.h>
19 #include <linux/bitops.h>
21 #define DRVNAME "gpio-f7188x"
24 * Super-I/O registers
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) */
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 */
35 #define SIO_FINTEK_ID 0x1934 /* Manufacturer ID */
36 #define SIO_F71869_ID 0x0814 /* F71869 chipset ID */
37 #define SIO_F71869A_ID 0x1007 /* F71869A chipset ID */
38 #define SIO_F71882_ID 0x0541 /* F71882 chipset ID */
39 #define SIO_F71889_ID 0x0909 /* F71889 chipset ID */
40 #define SIO_F81866_ID 0x1010 /* F81866 chipset ID */
42 enum chips { f71869, f71869a, f71882fg, f71889f, f81866 };
44 static const char * const f7188x_names[] = {
45 "f71869",
46 "f71869a",
47 "f71882fg",
48 "f71889f",
49 "f81866",
52 struct f7188x_sio {
53 int addr;
54 enum chips type;
57 struct f7188x_gpio_bank {
58 struct gpio_chip chip;
59 unsigned int regbase;
60 struct f7188x_gpio_data *data;
63 struct f7188x_gpio_data {
64 struct f7188x_sio *sio;
65 int nr_bank;
66 struct f7188x_gpio_bank *bank;
70 * Super-I/O functions.
73 static inline int superio_inb(int base, int reg)
75 outb(reg, base);
76 return inb(base + 1);
79 static int superio_inw(int base, int reg)
81 int val;
83 outb(reg++, base);
84 val = inb(base + 1) << 8;
85 outb(reg, base);
86 val |= inb(base + 1);
88 return val;
91 static inline void superio_outb(int base, int reg, int val)
93 outb(reg, base);
94 outb(val, base + 1);
97 static inline int superio_enter(int base)
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;
105 /* According to the datasheet the key must be send twice. */
106 outb(SIO_UNLOCK_KEY, base);
107 outb(SIO_UNLOCK_KEY, base);
109 return 0;
112 static inline void superio_select(int base, int ld)
114 outb(SIO_LDSEL, base);
115 outb(ld, base + 1);
118 static inline void superio_exit(int base)
120 outb(SIO_LOCK_KEY, base);
121 release_region(base, 2);
125 * GPIO chip.
128 static int f7188x_gpio_direction_in(struct gpio_chip *chip, unsigned offset);
129 static int f7188x_gpio_get(struct gpio_chip *chip, unsigned offset);
130 static int f7188x_gpio_direction_out(struct gpio_chip *chip,
131 unsigned offset, int value);
132 static void f7188x_gpio_set(struct gpio_chip *chip, unsigned offset, int value);
133 static int f7188x_gpio_set_single_ended(struct gpio_chip *gc,
134 unsigned offset,
135 enum single_ended_mode mode);
137 #define F7188X_GPIO_BANK(_base, _ngpio, _regbase) \
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, \
146 .set_single_ended = f7188x_gpio_set_single_ended, \
147 .base = _base, \
148 .ngpio = _ngpio, \
149 .can_sleep = true, \
150 }, \
151 .regbase = _regbase, \
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)
160 static 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),
170 static 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),
181 static struct f7188x_gpio_bank f71882_gpio_bank[] = {
182 F7188X_GPIO_BANK(0, 8, 0xF0),
183 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),
189 static struct f7188x_gpio_bank f71889_gpio_bank[] = {
190 F7188X_GPIO_BANK(0, 7, 0xF0),
191 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),
200 static 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),
212 static int f7188x_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
214 int err;
215 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
216 struct f7188x_sio *sio = bank->data->sio;
217 u8 dir;
219 err = superio_enter(sio->addr);
220 if (err)
221 return err;
222 superio_select(sio->addr, SIO_LD_GPIO);
224 dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
225 dir &= ~BIT(offset);
226 superio_outb(sio->addr, gpio_dir(bank->regbase), dir);
228 superio_exit(sio->addr);
230 return 0;
233 static int f7188x_gpio_get(struct gpio_chip *chip, unsigned offset)
235 int err;
236 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
237 struct f7188x_sio *sio = bank->data->sio;
238 u8 dir, data;
240 err = superio_enter(sio->addr);
241 if (err)
242 return err;
243 superio_select(sio->addr, SIO_LD_GPIO);
245 dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
246 dir = !!(dir & BIT(offset));
247 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));
252 superio_exit(sio->addr);
254 return !!(data & BIT(offset));
257 static int f7188x_gpio_direction_out(struct gpio_chip *chip,
258 unsigned offset, int value)
260 int err;
261 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
262 struct f7188x_sio *sio = bank->data->sio;
263 u8 dir, data_out;
265 err = superio_enter(sio->addr);
266 if (err)
267 return err;
268 superio_select(sio->addr, SIO_LD_GPIO);
270 data_out = superio_inb(sio->addr, gpio_data_out(bank->regbase));
271 if (value)
272 data_out |= BIT(offset);
273 else
274 data_out &= ~BIT(offset);
275 superio_outb(sio->addr, gpio_data_out(bank->regbase), data_out);
277 dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
278 dir |= BIT(offset);
279 superio_outb(sio->addr, gpio_dir(bank->regbase), dir);
281 superio_exit(sio->addr);
283 return 0;
286 static void f7188x_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
288 int err;
289 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
290 struct f7188x_sio *sio = bank->data->sio;
291 u8 data_out;
293 err = superio_enter(sio->addr);
294 if (err)
295 return;
296 superio_select(sio->addr, SIO_LD_GPIO);
298 data_out = superio_inb(sio->addr, gpio_data_out(bank->regbase));
299 if (value)
300 data_out |= BIT(offset);
301 else
302 data_out &= ~BIT(offset);
303 superio_outb(sio->addr, gpio_data_out(bank->regbase), data_out);
305 superio_exit(sio->addr);
308 static int f7188x_gpio_set_single_ended(struct gpio_chip *chip,
309 unsigned offset,
310 enum single_ended_mode mode)
312 int err;
313 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
314 struct f7188x_sio *sio = bank->data->sio;
315 u8 data;
317 if (mode != LINE_MODE_OPEN_DRAIN &&
318 mode != LINE_MODE_PUSH_PULL)
319 return -ENOTSUPP;
321 err = superio_enter(sio->addr);
322 if (err)
323 return err;
324 superio_select(sio->addr, SIO_LD_GPIO);
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_out_mode(bank->regbase), data);
333 superio_exit(sio->addr);
334 return 0;
338 * Platform device and driver.
341 static int f7188x_gpio_probe(struct platform_device *pdev)
343 int err;
344 int i;
345 struct f7188x_sio *sio = dev_get_platdata(&pdev->dev);
346 struct f7188x_gpio_data *data;
348 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
349 if (!data)
350 return -ENOMEM;
352 switch (sio->type) {
353 case f71869:
354 data->nr_bank = ARRAY_SIZE(f71869_gpio_bank);
355 data->bank = f71869_gpio_bank;
356 break;
357 case f71869a:
358 data->nr_bank = ARRAY_SIZE(f71869a_gpio_bank);
359 data->bank = f71869a_gpio_bank;
360 break;
361 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;
369 case f81866:
370 data->nr_bank = ARRAY_SIZE(f81866_gpio_bank);
371 data->bank = f81866_gpio_bank;
372 break;
373 default:
374 return -ENODEV;
376 data->sio = sio;
378 platform_set_drvdata(pdev, data);
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];
384 bank->chip.parent = &pdev->dev;
385 bank->data = data;
387 err = devm_gpiochip_add_data(&pdev->dev, &bank->chip, bank);
388 if (err) {
389 dev_err(&pdev->dev,
390 "Failed to register gpiochip %d: %d\n",
391 i, err);
392 return err;
396 return 0;
399 static int __init f7188x_find(int addr, struct f7188x_sio *sio)
401 int err;
402 u16 devid;
404 err = superio_enter(addr);
405 if (err)
406 return err;
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;
415 devid = superio_inw(addr, SIO_DEVID);
416 switch (devid) {
417 case SIO_F71869_ID:
418 sio->type = f71869;
419 break;
420 case SIO_F71869A_ID:
421 sio->type = f71869a;
422 break;
423 case SIO_F71882_ID:
424 sio->type = f71882fg;
425 break;
426 case SIO_F71889_ID:
427 sio->type = f71889f;
428 break;
429 case SIO_F81866_ID:
430 sio->type = f81866;
431 break;
432 default:
433 pr_info(DRVNAME ": Unsupported Fintek device 0x%04x\n", devid);
434 goto err;
436 sio->addr = addr;
437 err = 0;
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));
444 err:
445 superio_exit(addr);
446 return err;
449 static struct platform_device *f7188x_gpio_pdev;
451 static int __init
452 f7188x_gpio_device_add(const struct f7188x_sio *sio)
454 int err;
456 f7188x_gpio_pdev = platform_device_alloc(DRVNAME, -1);
457 if (!f7188x_gpio_pdev)
458 return -ENOMEM;
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;
467 err = platform_device_add(f7188x_gpio_pdev);
468 if (err) {
469 pr_err(DRVNAME "Device addition failed\n");
470 goto err;
473 return 0;
475 err:
476 platform_device_put(f7188x_gpio_pdev);
478 return err;
482 * Try to match a supported Fintek device by reading the (hard-wired)
483 * configuration I/O ports. If available, then register both the platform
484 * device and driver to support the GPIOs.
487 static struct platform_driver f7188x_gpio_driver = {
488 .driver = {
489 .name = DRVNAME,
491 .probe = f7188x_gpio_probe,
494 static int __init f7188x_gpio_init(void)
496 int err;
497 struct f7188x_sio sio;
499 if (f7188x_find(0x2e, &sio) &&
500 f7188x_find(0x4e, &sio))
501 return -ENODEV;
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);
510 return err;
512 subsys_initcall(f7188x_gpio_init);
514 static void __exit f7188x_gpio_exit(void)
516 platform_device_unregister(f7188x_gpio_pdev);
517 platform_driver_unregister(&f7188x_gpio_driver);
519 module_exit(f7188x_gpio_exit);
521 MODULE_DESCRIPTION("GPIO driver for Super-I/O chips F71869, F71869A, F71882FG, F71889F and F81866");
522 MODULE_AUTHOR("Simon Guinot <simon.guinot@sequanux.org>");
523 MODULE_LICENSE("GPL");