Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 1 | /* |
Peter Hung | 1920906f | 2016-01-22 15:23:33 +0800 | [diff] [blame] | 2 | * GPIO driver for Fintek Super-I/O F71869, F71869A, F71882, F71889 and F81866 |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 3 | * |
| 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 Walleij | 148c864 | 2016-04-09 15:59:41 +0200 | [diff] [blame] | 18 | #include <linux/gpio/driver.h> |
| 19 | #include <linux/bitops.h> |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 20 | |
| 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 Bofjall | 24ccef3 | 2015-03-09 21:55:13 +0100 | [diff] [blame] | 36 | #define SIO_F71869_ID 0x0814 /* F71869 chipset ID */ |
Andreas Bofjall | 7e96036 | 2015-03-09 21:55:14 +0100 | [diff] [blame] | 37 | #define SIO_F71869A_ID 0x1007 /* F71869A chipset ID */ |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 38 | #define SIO_F71882_ID 0x0541 /* F71882 chipset ID */ |
| 39 | #define SIO_F71889_ID 0x0909 /* F71889 chipset ID */ |
Peter Hung | 1920906f | 2016-01-22 15:23:33 +0800 | [diff] [blame] | 40 | #define SIO_F81866_ID 0x1010 /* F81866 chipset ID */ |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 41 | |
Peter Hung | 1920906f | 2016-01-22 15:23:33 +0800 | [diff] [blame] | 42 | enum chips { f71869, f71869a, f71882fg, f71889f, f81866 }; |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 43 | |
| 44 | static const char * const f7188x_names[] = { |
Andreas Bofjall | 24ccef3 | 2015-03-09 21:55:13 +0100 | [diff] [blame] | 45 | "f71869", |
Andreas Bofjall | 7e96036 | 2015-03-09 21:55:14 +0100 | [diff] [blame] | 46 | "f71869a", |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 47 | "f71882fg", |
| 48 | "f71889f", |
Peter Hung | 1920906f | 2016-01-22 15:23:33 +0800 | [diff] [blame] | 49 | "f81866", |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 50 | }; |
| 51 | |
| 52 | struct f7188x_sio { |
| 53 | int addr; |
| 54 | enum chips type; |
| 55 | }; |
| 56 | |
| 57 | struct f7188x_gpio_bank { |
| 58 | struct gpio_chip chip; |
| 59 | unsigned int regbase; |
| 60 | struct f7188x_gpio_data *data; |
| 61 | }; |
| 62 | |
| 63 | struct 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 | |
| 73 | static inline int superio_inb(int base, int reg) |
| 74 | { |
| 75 | outb(reg, base); |
| 76 | return inb(base + 1); |
| 77 | } |
| 78 | |
| 79 | static 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 | |
| 91 | static inline void superio_outb(int base, int reg, int val) |
| 92 | { |
| 93 | outb(reg, base); |
| 94 | outb(val, base + 1); |
| 95 | } |
| 96 | |
| 97 | static 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 | |
| 112 | static inline void superio_select(int base, int ld) |
| 113 | { |
| 114 | outb(SIO_LDSEL, base); |
| 115 | outb(ld, base + 1); |
| 116 | } |
| 117 | |
| 118 | static 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 | |
| 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); |
Linus Walleij | f90c6bd | 2016-04-09 16:11:37 +0200 | [diff] [blame] | 133 | static int f7188x_gpio_set_single_ended(struct gpio_chip *gc, |
| 134 | unsigned offset, |
| 135 | enum single_ended_mode mode); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 136 | |
| 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 Walleij | f90c6bd | 2016-04-09 16:11:37 +0200 | [diff] [blame] | 146 | .set_single_ended = f7188x_gpio_set_single_ended, \ |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 147 | .base = _base, \ |
| 148 | .ngpio = _ngpio, \ |
Simon Guinot | aeccc1b | 2014-01-03 16:04:08 +0100 | [diff] [blame] | 149 | .can_sleep = true, \ |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 150 | }, \ |
| 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 Bofjall | 24ccef3 | 2015-03-09 21:55:13 +0100 | [diff] [blame] | 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), |
| 168 | }; |
| 169 | |
Andreas Bofjall | 7e96036 | 2015-03-09 21:55:14 +0100 | [diff] [blame] | 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), |
| 179 | }; |
| 180 | |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 181 | static struct f7188x_gpio_bank f71882_gpio_bank[] = { |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 182 | F7188X_GPIO_BANK(0, 8, 0xF0), |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 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), |
| 187 | }; |
| 188 | |
| 189 | static struct f7188x_gpio_bank f71889_gpio_bank[] = { |
Daniel Lockyer | 38e003f | 2015-06-10 14:26:27 +0100 | [diff] [blame] | 190 | F7188X_GPIO_BANK(0, 7, 0xF0), |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 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), |
| 198 | }; |
| 199 | |
Peter Hung | 1920906f | 2016-01-22 15:23:33 +0800 | [diff] [blame] | 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), |
| 210 | }; |
| 211 | |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 212 | static int f7188x_gpio_direction_in(struct gpio_chip *chip, unsigned offset) |
| 213 | { |
| 214 | int err; |
Linus Walleij | f372d5f | 2015-12-06 10:51:13 +0100 | [diff] [blame] | 215 | struct f7188x_gpio_bank *bank = gpiochip_get_data(chip); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 216 | 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 Walleij | 148c864 | 2016-04-09 15:59:41 +0200 | [diff] [blame] | 225 | dir &= ~BIT(offset); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 226 | superio_outb(sio->addr, gpio_dir(bank->regbase), dir); |
| 227 | |
| 228 | superio_exit(sio->addr); |
| 229 | |
| 230 | return 0; |
| 231 | } |
| 232 | |
| 233 | static int f7188x_gpio_get(struct gpio_chip *chip, unsigned offset) |
| 234 | { |
| 235 | int err; |
Linus Walleij | f372d5f | 2015-12-06 10:51:13 +0100 | [diff] [blame] | 236 | struct f7188x_gpio_bank *bank = gpiochip_get_data(chip); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 237 | 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 Walleij | 148c864 | 2016-04-09 15:59:41 +0200 | [diff] [blame] | 246 | dir = !!(dir & BIT(offset)); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 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)); |
| 251 | |
| 252 | superio_exit(sio->addr); |
| 253 | |
Linus Walleij | 148c864 | 2016-04-09 15:59:41 +0200 | [diff] [blame] | 254 | return !!(data & BIT(offset)); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 255 | } |
| 256 | |
| 257 | static int f7188x_gpio_direction_out(struct gpio_chip *chip, |
| 258 | unsigned offset, int value) |
| 259 | { |
| 260 | int err; |
Linus Walleij | f372d5f | 2015-12-06 10:51:13 +0100 | [diff] [blame] | 261 | struct f7188x_gpio_bank *bank = gpiochip_get_data(chip); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 262 | 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 Walleij | 148c864 | 2016-04-09 15:59:41 +0200 | [diff] [blame] | 272 | data_out |= BIT(offset); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 273 | else |
Linus Walleij | 148c864 | 2016-04-09 15:59:41 +0200 | [diff] [blame] | 274 | data_out &= ~BIT(offset); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 275 | superio_outb(sio->addr, gpio_data_out(bank->regbase), data_out); |
| 276 | |
| 277 | dir = superio_inb(sio->addr, gpio_dir(bank->regbase)); |
Linus Walleij | 148c864 | 2016-04-09 15:59:41 +0200 | [diff] [blame] | 278 | dir |= BIT(offset); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 279 | superio_outb(sio->addr, gpio_dir(bank->regbase), dir); |
| 280 | |
| 281 | superio_exit(sio->addr); |
| 282 | |
| 283 | return 0; |
| 284 | } |
| 285 | |
| 286 | static void f7188x_gpio_set(struct gpio_chip *chip, unsigned offset, int value) |
| 287 | { |
| 288 | int err; |
Linus Walleij | f372d5f | 2015-12-06 10:51:13 +0100 | [diff] [blame] | 289 | struct f7188x_gpio_bank *bank = gpiochip_get_data(chip); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 290 | 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 Walleij | 148c864 | 2016-04-09 15:59:41 +0200 | [diff] [blame] | 300 | data_out |= BIT(offset); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 301 | else |
Linus Walleij | 148c864 | 2016-04-09 15:59:41 +0200 | [diff] [blame] | 302 | data_out &= ~BIT(offset); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 303 | superio_outb(sio->addr, gpio_data_out(bank->regbase), data_out); |
| 304 | |
| 305 | superio_exit(sio->addr); |
| 306 | } |
| 307 | |
Linus Walleij | f90c6bd | 2016-04-09 16:11:37 +0200 | [diff] [blame] | 308 | static 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); |
Linus Walleij | 327819d | 2016-04-18 13:30:29 +0200 | [diff] [blame] | 331 | superio_outb(sio->addr, gpio_out_mode(bank->regbase), data); |
Linus Walleij | f90c6bd | 2016-04-09 16:11:37 +0200 | [diff] [blame] | 332 | |
| 333 | superio_exit(sio->addr); |
| 334 | return 0; |
| 335 | } |
| 336 | |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 337 | /* |
| 338 | * Platform device and driver. |
| 339 | */ |
| 340 | |
| 341 | static int f7188x_gpio_probe(struct platform_device *pdev) |
| 342 | { |
| 343 | int err; |
| 344 | int i; |
Nizam Haider | ab128af | 2015-11-23 20:53:18 +0530 | [diff] [blame] | 345 | struct f7188x_sio *sio = dev_get_platdata(&pdev->dev); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 346 | 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 Bofjall | 24ccef3 | 2015-03-09 21:55:13 +0100 | [diff] [blame] | 353 | case f71869: |
| 354 | data->nr_bank = ARRAY_SIZE(f71869_gpio_bank); |
| 355 | data->bank = f71869_gpio_bank; |
| 356 | break; |
Andreas Bofjall | 7e96036 | 2015-03-09 21:55:14 +0100 | [diff] [blame] | 357 | case f71869a: |
| 358 | data->nr_bank = ARRAY_SIZE(f71869a_gpio_bank); |
| 359 | data->bank = f71869a_gpio_bank; |
| 360 | break; |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 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; |
Peter Hung | 1920906f | 2016-01-22 15:23:33 +0800 | [diff] [blame] | 369 | case f81866: |
| 370 | data->nr_bank = ARRAY_SIZE(f81866_gpio_bank); |
| 371 | data->bank = f81866_gpio_bank; |
| 372 | break; |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 373 | 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 Walleij | 58383c78 | 2015-11-04 09:56:26 +0100 | [diff] [blame] | 384 | bank->chip.parent = &pdev->dev; |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 385 | bank->data = data; |
| 386 | |
Laxman Dewangan | 330f4e5 | 2016-02-22 17:43:28 +0530 | [diff] [blame] | 387 | err = devm_gpiochip_add_data(&pdev->dev, &bank->chip, bank); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 388 | if (err) { |
| 389 | dev_err(&pdev->dev, |
| 390 | "Failed to register gpiochip %d: %d\n", |
| 391 | i, err); |
Laxman Dewangan | 330f4e5 | 2016-02-22 17:43:28 +0530 | [diff] [blame] | 392 | return err; |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 393 | } |
| 394 | } |
| 395 | |
| 396 | return 0; |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 397 | } |
| 398 | |
| 399 | static 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 Bofjall | 24ccef3 | 2015-03-09 21:55:13 +0100 | [diff] [blame] | 417 | case SIO_F71869_ID: |
| 418 | sio->type = f71869; |
| 419 | break; |
Andreas Bofjall | 7e96036 | 2015-03-09 21:55:14 +0100 | [diff] [blame] | 420 | case SIO_F71869A_ID: |
| 421 | sio->type = f71869a; |
| 422 | break; |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 423 | case SIO_F71882_ID: |
| 424 | sio->type = f71882fg; |
| 425 | break; |
| 426 | case SIO_F71889_ID: |
| 427 | sio->type = f71889f; |
| 428 | break; |
Peter Hung | 1920906f | 2016-01-22 15:23:33 +0800 | [diff] [blame] | 429 | case SIO_F81866_ID: |
| 430 | sio->type = f81866; |
| 431 | break; |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 432 | 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 | |
| 444 | err: |
| 445 | superio_exit(addr); |
| 446 | return err; |
| 447 | } |
| 448 | |
| 449 | static struct platform_device *f7188x_gpio_pdev; |
| 450 | |
| 451 | static int __init |
| 452 | f7188x_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 | |
| 475 | err: |
| 476 | platform_device_put(f7188x_gpio_pdev); |
| 477 | |
| 478 | return err; |
| 479 | } |
| 480 | |
| 481 | /* |
Andreas Bofjall | 3f8f4f1 | 2015-03-09 21:55:12 +0100 | [diff] [blame] | 482 | * Try to match a supported Fintek device by reading the (hard-wired) |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 483 | * configuration I/O ports. If available, then register both the platform |
| 484 | * device and driver to support the GPIOs. |
| 485 | */ |
| 486 | |
| 487 | static struct platform_driver f7188x_gpio_driver = { |
| 488 | .driver = { |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 489 | .name = DRVNAME, |
| 490 | }, |
| 491 | .probe = f7188x_gpio_probe, |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 492 | }; |
| 493 | |
| 494 | static 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 | } |
| 512 | subsys_initcall(f7188x_gpio_init); |
| 513 | |
| 514 | static void __exit f7188x_gpio_exit(void) |
| 515 | { |
| 516 | platform_device_unregister(f7188x_gpio_pdev); |
| 517 | platform_driver_unregister(&f7188x_gpio_driver); |
| 518 | } |
| 519 | module_exit(f7188x_gpio_exit); |
| 520 | |
Peter Hung | 1920906f | 2016-01-22 15:23:33 +0800 | [diff] [blame] | 521 | MODULE_DESCRIPTION("GPIO driver for Super-I/O chips F71869, F71869A, F71882FG, F71889F and F81866"); |
Simon Guinot | 6c17aa0 | 2013-08-29 22:56:56 +0200 | [diff] [blame] | 522 | MODULE_AUTHOR("Simon Guinot <simon.guinot@sequanux.org>"); |
| 523 | MODULE_LICENSE("GPL"); |