blob: 13350c9d7f5e88921773a9374277f7ed2358a9f8 [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 */
Marty Plummerd69843e2017-04-06 19:42:06 -050040#define SIO_F71889A_ID 0x1005 /* F71889A chipset ID */
Peter Hung1920906f2016-01-22 15:23:33 +080041#define SIO_F81866_ID 0x1010 /* F81866 chipset ID */
Simon Guinot6c17aa02013-08-29 22:56:56 +020042
Marty Plummerd69843e2017-04-06 19:42:06 -050043enum chips { f71869, f71869a, f71882fg, f71889a, f71889f, f81866 };
Simon Guinot6c17aa02013-08-29 22:56:56 +020044
45static const char * const f7188x_names[] = {
Andreas Bofjall24ccef32015-03-09 21:55:13 +010046 "f71869",
Andreas Bofjall7e960362015-03-09 21:55:14 +010047 "f71869a",
Simon Guinot6c17aa02013-08-29 22:56:56 +020048 "f71882fg",
Marty Plummerd69843e2017-04-06 19:42:06 -050049 "f71889a",
Simon Guinot6c17aa02013-08-29 22:56:56 +020050 "f71889f",
Peter Hung1920906f2016-01-22 15:23:33 +080051 "f81866",
Simon Guinot6c17aa02013-08-29 22:56:56 +020052};
53
54struct f7188x_sio {
55 int addr;
56 enum chips type;
57};
58
59struct f7188x_gpio_bank {
60 struct gpio_chip chip;
61 unsigned int regbase;
62 struct f7188x_gpio_data *data;
63};
64
65struct f7188x_gpio_data {
66 struct f7188x_sio *sio;
67 int nr_bank;
68 struct f7188x_gpio_bank *bank;
69};
70
71/*
72 * Super-I/O functions.
73 */
74
75static inline int superio_inb(int base, int reg)
76{
77 outb(reg, base);
78 return inb(base + 1);
79}
80
81static int superio_inw(int base, int reg)
82{
83 int val;
84
85 outb(reg++, base);
86 val = inb(base + 1) << 8;
87 outb(reg, base);
88 val |= inb(base + 1);
89
90 return val;
91}
92
93static inline void superio_outb(int base, int reg, int val)
94{
95 outb(reg, base);
96 outb(val, base + 1);
97}
98
99static inline int superio_enter(int base)
100{
101 /* Don't step on other drivers' I/O space by accident. */
102 if (!request_muxed_region(base, 2, DRVNAME)) {
103 pr_err(DRVNAME "I/O address 0x%04x already in use\n", base);
104 return -EBUSY;
105 }
106
107 /* According to the datasheet the key must be send twice. */
108 outb(SIO_UNLOCK_KEY, base);
109 outb(SIO_UNLOCK_KEY, base);
110
111 return 0;
112}
113
114static inline void superio_select(int base, int ld)
115{
116 outb(SIO_LDSEL, base);
117 outb(ld, base + 1);
118}
119
120static inline void superio_exit(int base)
121{
122 outb(SIO_LOCK_KEY, base);
123 release_region(base, 2);
124}
125
126/*
127 * GPIO chip.
128 */
129
plr.vincent@gmail.com107cdd22016-06-06 00:56:08 +0000130static int f7188x_gpio_get_direction(struct gpio_chip *chip, unsigned offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200131static int f7188x_gpio_direction_in(struct gpio_chip *chip, unsigned offset);
132static int f7188x_gpio_get(struct gpio_chip *chip, unsigned offset);
133static int f7188x_gpio_direction_out(struct gpio_chip *chip,
134 unsigned offset, int value);
135static void f7188x_gpio_set(struct gpio_chip *chip, unsigned offset, int value);
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300136static int f7188x_gpio_set_config(struct gpio_chip *chip, unsigned offset,
137 unsigned long config);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200138
139#define F7188X_GPIO_BANK(_base, _ngpio, _regbase) \
140 { \
141 .chip = { \
142 .label = DRVNAME, \
143 .owner = THIS_MODULE, \
plr.vincent@gmail.com107cdd22016-06-06 00:56:08 +0000144 .get_direction = f7188x_gpio_get_direction, \
Simon Guinot6c17aa02013-08-29 22:56:56 +0200145 .direction_input = f7188x_gpio_direction_in, \
146 .get = f7188x_gpio_get, \
147 .direction_output = f7188x_gpio_direction_out, \
148 .set = f7188x_gpio_set, \
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300149 .set_config = f7188x_gpio_set_config, \
Simon Guinot6c17aa02013-08-29 22:56:56 +0200150 .base = _base, \
151 .ngpio = _ngpio, \
Simon Guinotaeccc1b2014-01-03 16:04:08 +0100152 .can_sleep = true, \
Simon Guinot6c17aa02013-08-29 22:56:56 +0200153 }, \
154 .regbase = _regbase, \
155 }
156
157#define gpio_dir(base) (base + 0)
158#define gpio_data_out(base) (base + 1)
159#define gpio_data_in(base) (base + 2)
160/* Output mode register (0:open drain 1:push-pull). */
161#define gpio_out_mode(base) (base + 3)
162
Andreas Bofjall24ccef32015-03-09 21:55:13 +0100163static struct f7188x_gpio_bank f71869_gpio_bank[] = {
164 F7188X_GPIO_BANK(0, 6, 0xF0),
165 F7188X_GPIO_BANK(10, 8, 0xE0),
166 F7188X_GPIO_BANK(20, 8, 0xD0),
167 F7188X_GPIO_BANK(30, 8, 0xC0),
168 F7188X_GPIO_BANK(40, 8, 0xB0),
169 F7188X_GPIO_BANK(50, 5, 0xA0),
170 F7188X_GPIO_BANK(60, 6, 0x90),
171};
172
Andreas Bofjall7e960362015-03-09 21:55:14 +0100173static struct f7188x_gpio_bank f71869a_gpio_bank[] = {
174 F7188X_GPIO_BANK(0, 6, 0xF0),
175 F7188X_GPIO_BANK(10, 8, 0xE0),
176 F7188X_GPIO_BANK(20, 8, 0xD0),
177 F7188X_GPIO_BANK(30, 8, 0xC0),
178 F7188X_GPIO_BANK(40, 8, 0xB0),
179 F7188X_GPIO_BANK(50, 5, 0xA0),
180 F7188X_GPIO_BANK(60, 8, 0x90),
181 F7188X_GPIO_BANK(70, 8, 0x80),
182};
183
Simon Guinot6c17aa02013-08-29 22:56:56 +0200184static struct f7188x_gpio_bank f71882_gpio_bank[] = {
Daniel Lockyer38e003f2015-06-10 14:26:27 +0100185 F7188X_GPIO_BANK(0, 8, 0xF0),
Simon Guinot6c17aa02013-08-29 22:56:56 +0200186 F7188X_GPIO_BANK(10, 8, 0xE0),
187 F7188X_GPIO_BANK(20, 8, 0xD0),
188 F7188X_GPIO_BANK(30, 4, 0xC0),
189 F7188X_GPIO_BANK(40, 4, 0xB0),
190};
191
Marty Plummerd69843e2017-04-06 19:42:06 -0500192static struct f7188x_gpio_bank f71889a_gpio_bank[] = {
193 F7188X_GPIO_BANK(0, 7, 0xF0),
194 F7188X_GPIO_BANK(10, 7, 0xE0),
195 F7188X_GPIO_BANK(20, 8, 0xD0),
196 F7188X_GPIO_BANK(30, 8, 0xC0),
197 F7188X_GPIO_BANK(40, 8, 0xB0),
198 F7188X_GPIO_BANK(50, 5, 0xA0),
199 F7188X_GPIO_BANK(60, 8, 0x90),
200 F7188X_GPIO_BANK(70, 8, 0x80),
201};
202
Simon Guinot6c17aa02013-08-29 22:56:56 +0200203static struct f7188x_gpio_bank f71889_gpio_bank[] = {
Daniel Lockyer38e003f2015-06-10 14:26:27 +0100204 F7188X_GPIO_BANK(0, 7, 0xF0),
Simon Guinot6c17aa02013-08-29 22:56:56 +0200205 F7188X_GPIO_BANK(10, 7, 0xE0),
206 F7188X_GPIO_BANK(20, 8, 0xD0),
207 F7188X_GPIO_BANK(30, 8, 0xC0),
208 F7188X_GPIO_BANK(40, 8, 0xB0),
209 F7188X_GPIO_BANK(50, 5, 0xA0),
210 F7188X_GPIO_BANK(60, 8, 0x90),
211 F7188X_GPIO_BANK(70, 8, 0x80),
212};
213
Peter Hung1920906f2016-01-22 15:23:33 +0800214static struct f7188x_gpio_bank f81866_gpio_bank[] = {
215 F7188X_GPIO_BANK(0, 8, 0xF0),
216 F7188X_GPIO_BANK(10, 8, 0xE0),
217 F7188X_GPIO_BANK(20, 8, 0xD0),
218 F7188X_GPIO_BANK(30, 8, 0xC0),
219 F7188X_GPIO_BANK(40, 8, 0xB0),
220 F7188X_GPIO_BANK(50, 8, 0xA0),
221 F7188X_GPIO_BANK(60, 8, 0x90),
222 F7188X_GPIO_BANK(70, 8, 0x80),
223 F7188X_GPIO_BANK(80, 8, 0x88),
224};
225
plr.vincent@gmail.com107cdd22016-06-06 00:56:08 +0000226static int f7188x_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
227{
228 int err;
Amitesh Singh35a26142016-09-16 22:28:53 +0530229 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
plr.vincent@gmail.com107cdd22016-06-06 00:56:08 +0000230 struct f7188x_sio *sio = bank->data->sio;
231 u8 dir;
232
233 err = superio_enter(sio->addr);
234 if (err)
235 return err;
236 superio_select(sio->addr, SIO_LD_GPIO);
237
238 dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
239
240 superio_exit(sio->addr);
241
242 return !(dir & 1 << offset);
243}
244
Simon Guinot6c17aa02013-08-29 22:56:56 +0200245static int f7188x_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
246{
247 int err;
Linus Walleijf372d5f2015-12-06 10:51:13 +0100248 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200249 struct f7188x_sio *sio = bank->data->sio;
250 u8 dir;
251
252 err = superio_enter(sio->addr);
253 if (err)
254 return err;
255 superio_select(sio->addr, SIO_LD_GPIO);
256
257 dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
Linus Walleij148c8642016-04-09 15:59:41 +0200258 dir &= ~BIT(offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200259 superio_outb(sio->addr, gpio_dir(bank->regbase), dir);
260
261 superio_exit(sio->addr);
262
263 return 0;
264}
265
266static int f7188x_gpio_get(struct gpio_chip *chip, unsigned offset)
267{
268 int err;
Linus Walleijf372d5f2015-12-06 10:51:13 +0100269 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200270 struct f7188x_sio *sio = bank->data->sio;
271 u8 dir, data;
272
273 err = superio_enter(sio->addr);
274 if (err)
275 return err;
276 superio_select(sio->addr, SIO_LD_GPIO);
277
278 dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
Linus Walleij148c8642016-04-09 15:59:41 +0200279 dir = !!(dir & BIT(offset));
Simon Guinot6c17aa02013-08-29 22:56:56 +0200280 if (dir)
281 data = superio_inb(sio->addr, gpio_data_out(bank->regbase));
282 else
283 data = superio_inb(sio->addr, gpio_data_in(bank->regbase));
284
285 superio_exit(sio->addr);
286
Linus Walleij148c8642016-04-09 15:59:41 +0200287 return !!(data & BIT(offset));
Simon Guinot6c17aa02013-08-29 22:56:56 +0200288}
289
290static int f7188x_gpio_direction_out(struct gpio_chip *chip,
291 unsigned offset, int value)
292{
293 int err;
Linus Walleijf372d5f2015-12-06 10:51:13 +0100294 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200295 struct f7188x_sio *sio = bank->data->sio;
296 u8 dir, data_out;
297
298 err = superio_enter(sio->addr);
299 if (err)
300 return err;
301 superio_select(sio->addr, SIO_LD_GPIO);
302
303 data_out = superio_inb(sio->addr, gpio_data_out(bank->regbase));
304 if (value)
Linus Walleij148c8642016-04-09 15:59:41 +0200305 data_out |= BIT(offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200306 else
Linus Walleij148c8642016-04-09 15:59:41 +0200307 data_out &= ~BIT(offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200308 superio_outb(sio->addr, gpio_data_out(bank->regbase), data_out);
309
310 dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
Linus Walleij148c8642016-04-09 15:59:41 +0200311 dir |= BIT(offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200312 superio_outb(sio->addr, gpio_dir(bank->regbase), dir);
313
314 superio_exit(sio->addr);
315
316 return 0;
317}
318
319static void f7188x_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
320{
321 int err;
Linus Walleijf372d5f2015-12-06 10:51:13 +0100322 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200323 struct f7188x_sio *sio = bank->data->sio;
324 u8 data_out;
325
326 err = superio_enter(sio->addr);
327 if (err)
328 return;
329 superio_select(sio->addr, SIO_LD_GPIO);
330
331 data_out = superio_inb(sio->addr, gpio_data_out(bank->regbase));
332 if (value)
Linus Walleij148c8642016-04-09 15:59:41 +0200333 data_out |= BIT(offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200334 else
Linus Walleij148c8642016-04-09 15:59:41 +0200335 data_out &= ~BIT(offset);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200336 superio_outb(sio->addr, gpio_data_out(bank->regbase), data_out);
337
338 superio_exit(sio->addr);
339}
340
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300341static int f7188x_gpio_set_config(struct gpio_chip *chip, unsigned offset,
342 unsigned long config)
Linus Walleijf90c6bd2016-04-09 16:11:37 +0200343{
344 int err;
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300345 enum pin_config_param param = pinconf_to_config_param(config);
Linus Walleijf90c6bd2016-04-09 16:11:37 +0200346 struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
347 struct f7188x_sio *sio = bank->data->sio;
348 u8 data;
349
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300350 if (param != PIN_CONFIG_DRIVE_OPEN_DRAIN &&
351 param != PIN_CONFIG_DRIVE_PUSH_PULL)
Linus Walleijf90c6bd2016-04-09 16:11:37 +0200352 return -ENOTSUPP;
353
354 err = superio_enter(sio->addr);
355 if (err)
356 return err;
357 superio_select(sio->addr, SIO_LD_GPIO);
358
359 data = superio_inb(sio->addr, gpio_out_mode(bank->regbase));
Mika Westerberg2956b5d2017-01-23 15:34:34 +0300360 if (param == PIN_CONFIG_DRIVE_OPEN_DRAIN)
Linus Walleijf90c6bd2016-04-09 16:11:37 +0200361 data &= ~BIT(offset);
362 else
363 data |= BIT(offset);
Linus Walleij327819d2016-04-18 13:30:29 +0200364 superio_outb(sio->addr, gpio_out_mode(bank->regbase), data);
Linus Walleijf90c6bd2016-04-09 16:11:37 +0200365
366 superio_exit(sio->addr);
367 return 0;
368}
369
Simon Guinot6c17aa02013-08-29 22:56:56 +0200370/*
371 * Platform device and driver.
372 */
373
374static int f7188x_gpio_probe(struct platform_device *pdev)
375{
376 int err;
377 int i;
Nizam Haiderab128af2015-11-23 20:53:18 +0530378 struct f7188x_sio *sio = dev_get_platdata(&pdev->dev);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200379 struct f7188x_gpio_data *data;
380
381 data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
382 if (!data)
383 return -ENOMEM;
384
385 switch (sio->type) {
Andreas Bofjall24ccef32015-03-09 21:55:13 +0100386 case f71869:
387 data->nr_bank = ARRAY_SIZE(f71869_gpio_bank);
388 data->bank = f71869_gpio_bank;
389 break;
Andreas Bofjall7e960362015-03-09 21:55:14 +0100390 case f71869a:
391 data->nr_bank = ARRAY_SIZE(f71869a_gpio_bank);
392 data->bank = f71869a_gpio_bank;
393 break;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200394 case f71882fg:
395 data->nr_bank = ARRAY_SIZE(f71882_gpio_bank);
396 data->bank = f71882_gpio_bank;
397 break;
Marty Plummerd69843e2017-04-06 19:42:06 -0500398 case f71889a:
399 data->nr_bank = ARRAY_SIZE(f71889a_gpio_bank);
400 data->bank = f71889a_gpio_bank;
Dan Carpenterb86c86a2017-04-26 22:08:15 +0300401 break;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200402 case f71889f:
403 data->nr_bank = ARRAY_SIZE(f71889_gpio_bank);
404 data->bank = f71889_gpio_bank;
405 break;
Peter Hung1920906f2016-01-22 15:23:33 +0800406 case f81866:
407 data->nr_bank = ARRAY_SIZE(f81866_gpio_bank);
408 data->bank = f81866_gpio_bank;
409 break;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200410 default:
411 return -ENODEV;
412 }
413 data->sio = sio;
414
415 platform_set_drvdata(pdev, data);
416
417 /* For each GPIO bank, register a GPIO chip. */
418 for (i = 0; i < data->nr_bank; i++) {
419 struct f7188x_gpio_bank *bank = &data->bank[i];
420
Linus Walleij58383c782015-11-04 09:56:26 +0100421 bank->chip.parent = &pdev->dev;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200422 bank->data = data;
423
Laxman Dewangan330f4e52016-02-22 17:43:28 +0530424 err = devm_gpiochip_add_data(&pdev->dev, &bank->chip, bank);
Simon Guinot6c17aa02013-08-29 22:56:56 +0200425 if (err) {
426 dev_err(&pdev->dev,
427 "Failed to register gpiochip %d: %d\n",
428 i, err);
Laxman Dewangan330f4e52016-02-22 17:43:28 +0530429 return err;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200430 }
431 }
432
433 return 0;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200434}
435
436static int __init f7188x_find(int addr, struct f7188x_sio *sio)
437{
438 int err;
439 u16 devid;
440
441 err = superio_enter(addr);
442 if (err)
443 return err;
444
445 err = -ENODEV;
446 devid = superio_inw(addr, SIO_MANID);
447 if (devid != SIO_FINTEK_ID) {
448 pr_debug(DRVNAME ": Not a Fintek device at 0x%08x\n", addr);
449 goto err;
450 }
451
452 devid = superio_inw(addr, SIO_DEVID);
453 switch (devid) {
Andreas Bofjall24ccef32015-03-09 21:55:13 +0100454 case SIO_F71869_ID:
455 sio->type = f71869;
456 break;
Andreas Bofjall7e960362015-03-09 21:55:14 +0100457 case SIO_F71869A_ID:
458 sio->type = f71869a;
459 break;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200460 case SIO_F71882_ID:
461 sio->type = f71882fg;
462 break;
Marty Plummerd69843e2017-04-06 19:42:06 -0500463 case SIO_F71889A_ID:
464 sio->type = f71889a;
465 break;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200466 case SIO_F71889_ID:
467 sio->type = f71889f;
468 break;
Peter Hung1920906f2016-01-22 15:23:33 +0800469 case SIO_F81866_ID:
470 sio->type = f81866;
471 break;
Simon Guinot6c17aa02013-08-29 22:56:56 +0200472 default:
473 pr_info(DRVNAME ": Unsupported Fintek device 0x%04x\n", devid);
474 goto err;
475 }
476 sio->addr = addr;
477 err = 0;
478
479 pr_info(DRVNAME ": Found %s at %#x, revision %d\n",
480 f7188x_names[sio->type],
481 (unsigned int) addr,
482 (int) superio_inb(addr, SIO_DEVREV));
483
484err:
485 superio_exit(addr);
486 return err;
487}
488
489static struct platform_device *f7188x_gpio_pdev;
490
491static int __init
492f7188x_gpio_device_add(const struct f7188x_sio *sio)
493{
494 int err;
495
496 f7188x_gpio_pdev = platform_device_alloc(DRVNAME, -1);
497 if (!f7188x_gpio_pdev)
498 return -ENOMEM;
499
500 err = platform_device_add_data(f7188x_gpio_pdev,
501 sio, sizeof(*sio));
502 if (err) {
503 pr_err(DRVNAME "Platform data allocation failed\n");
504 goto err;
505 }
506
507 err = platform_device_add(f7188x_gpio_pdev);
508 if (err) {
509 pr_err(DRVNAME "Device addition failed\n");
510 goto err;
511 }
512
513 return 0;
514
515err:
516 platform_device_put(f7188x_gpio_pdev);
517
518 return err;
519}
520
521/*
Andreas Bofjall3f8f4f12015-03-09 21:55:12 +0100522 * Try to match a supported Fintek device by reading the (hard-wired)
Simon Guinot6c17aa02013-08-29 22:56:56 +0200523 * configuration I/O ports. If available, then register both the platform
524 * device and driver to support the GPIOs.
525 */
526
527static struct platform_driver f7188x_gpio_driver = {
528 .driver = {
Simon Guinot6c17aa02013-08-29 22:56:56 +0200529 .name = DRVNAME,
530 },
531 .probe = f7188x_gpio_probe,
Simon Guinot6c17aa02013-08-29 22:56:56 +0200532};
533
534static int __init f7188x_gpio_init(void)
535{
536 int err;
537 struct f7188x_sio sio;
538
539 if (f7188x_find(0x2e, &sio) &&
540 f7188x_find(0x4e, &sio))
541 return -ENODEV;
542
543 err = platform_driver_register(&f7188x_gpio_driver);
544 if (!err) {
545 err = f7188x_gpio_device_add(&sio);
546 if (err)
547 platform_driver_unregister(&f7188x_gpio_driver);
548 }
549
550 return err;
551}
552subsys_initcall(f7188x_gpio_init);
553
554static void __exit f7188x_gpio_exit(void)
555{
556 platform_device_unregister(f7188x_gpio_pdev);
557 platform_driver_unregister(&f7188x_gpio_driver);
558}
559module_exit(f7188x_gpio_exit);
560
Marty Plummerd69843e2017-04-06 19:42:06 -0500561MODULE_DESCRIPTION("GPIO driver for Super-I/O chips F71869, F71869A, F71882FG, F71889A, F71889F and F81866");
Simon Guinot6c17aa02013-08-29 22:56:56 +0200562MODULE_AUTHOR("Simon Guinot <simon.guinot@sequanux.org>");
563MODULE_LICENSE("GPL");