1 // SPDX-License-Identifier: GPL-2.0-only
3 * GPIO interface for IT87xx Super I/O chips
5 * Author: Diego Elio Pettenò <flameeyes@flameeyes.eu>
6 * Copyright (c) 2017 Google, Inc.
8 * Based on it87_wdt.c by Oliver Schuster
9 * gpio-it8761e.c by Denis Turischev
10 * gpio-stmpe.c by Rabin Vincent
13 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
15 #include <linux/init.h>
16 #include <linux/kernel.h>
17 #include <linux/module.h>
19 #include <linux/errno.h>
20 #include <linux/ioport.h>
21 #include <linux/slab.h>
22 #include <linux/gpio/driver.h>
25 #define NO_DEV_ID 0xffff
26 #define IT8613_ID 0x8613
27 #define IT8620_ID 0x8620
28 #define IT8628_ID 0x8628
29 #define IT8718_ID 0x8718
30 #define IT8728_ID 0x8728
31 #define IT8732_ID 0x8732
32 #define IT8761_ID 0x8761
33 #define IT8772_ID 0x8772
34 #define IT8786_ID 0x8786
40 /* Logical device Numbers LDN */
43 /* Configuration Registers and Functions */
49 * struct it87_gpio - it87-specific GPIO chip
50 * @chip: the underlying gpio_chip structure
51 * @lock: a lock to avoid races between operations
52 * @io_base: base address for gpio ports
53 * @io_size: size of the port rage starting from io_base.
54 * @output_base: Super I/O register address for Output Enable register
55 * @simple_base: Super I/O 'Simple I/O' Enable register
56 * @simple_size: Super IO 'Simple I/O' Enable register size; this is
57 * required because IT87xx chips might only provide Simple I/O
58 * switches on a subset of lines, whereas the others keep the
59 * same status all time.
62 struct gpio_chip chip
;
71 static struct it87_gpio it87_gpio_chip
= {
72 .lock
= __SPIN_LOCK_UNLOCKED(it87_gpio_chip
.lock
),
75 /* Superio chip access functions; copied from wdt_it87 */
77 static inline int superio_enter(void)
80 * Try to reserve REG and REG + 1 for exclusive access.
82 if (!request_muxed_region(REG
, 2, KBUILD_MODNAME
))
92 static inline void superio_exit(void)
96 release_region(REG
, 2);
99 static inline void superio_select(int ldn
)
105 static inline int superio_inb(int reg
)
111 static inline void superio_outb(int val
, int reg
)
117 static inline int superio_inw(int reg
)
128 static inline void superio_set_mask(int mask
, int reg
)
130 u8 curr_val
= superio_inb(reg
);
131 u8 new_val
= curr_val
| mask
;
133 if (curr_val
!= new_val
)
134 superio_outb(new_val
, reg
);
137 static inline void superio_clear_mask(int mask
, int reg
)
139 u8 curr_val
= superio_inb(reg
);
140 u8 new_val
= curr_val
& ~mask
;
142 if (curr_val
!= new_val
)
143 superio_outb(new_val
, reg
);
146 static int it87_gpio_request(struct gpio_chip
*chip
, unsigned gpio_num
)
150 struct it87_gpio
*it87_gpio
= gpiochip_get_data(chip
);
152 mask
= 1 << (gpio_num
% 8);
153 group
= (gpio_num
/ 8);
155 spin_lock(&it87_gpio
->lock
);
157 rc
= superio_enter();
161 /* not all the IT87xx chips support Simple I/O and not all of
162 * them allow all the lines to be set/unset to Simple I/O.
164 if (group
< it87_gpio
->simple_size
)
165 superio_set_mask(mask
, group
+ it87_gpio
->simple_base
);
167 /* clear output enable, setting the pin to input, as all the
168 * newly-exported GPIO interfaces are set to input.
170 superio_clear_mask(mask
, group
+ it87_gpio
->output_base
);
175 spin_unlock(&it87_gpio
->lock
);
179 static int it87_gpio_get(struct gpio_chip
*chip
, unsigned gpio_num
)
183 struct it87_gpio
*it87_gpio
= gpiochip_get_data(chip
);
185 mask
= 1 << (gpio_num
% 8);
186 reg
= (gpio_num
/ 8) + it87_gpio
->io_base
;
188 return !!(inb(reg
) & mask
);
191 static int it87_gpio_direction_in(struct gpio_chip
*chip
, unsigned gpio_num
)
195 struct it87_gpio
*it87_gpio
= gpiochip_get_data(chip
);
197 mask
= 1 << (gpio_num
% 8);
198 group
= (gpio_num
/ 8);
200 spin_lock(&it87_gpio
->lock
);
202 rc
= superio_enter();
206 /* clear the output enable bit */
207 superio_clear_mask(mask
, group
+ it87_gpio
->output_base
);
212 spin_unlock(&it87_gpio
->lock
);
216 static void it87_gpio_set(struct gpio_chip
*chip
,
217 unsigned gpio_num
, int val
)
221 struct it87_gpio
*it87_gpio
= gpiochip_get_data(chip
);
223 mask
= 1 << (gpio_num
% 8);
224 reg
= (gpio_num
/ 8) + it87_gpio
->io_base
;
226 curr_vals
= inb(reg
);
228 outb(curr_vals
| mask
, reg
);
230 outb(curr_vals
& ~mask
, reg
);
233 static int it87_gpio_direction_out(struct gpio_chip
*chip
,
234 unsigned gpio_num
, int val
)
238 struct it87_gpio
*it87_gpio
= gpiochip_get_data(chip
);
240 mask
= 1 << (gpio_num
% 8);
241 group
= (gpio_num
/ 8);
243 spin_lock(&it87_gpio
->lock
);
245 rc
= superio_enter();
249 /* set the output enable bit */
250 superio_set_mask(mask
, group
+ it87_gpio
->output_base
);
252 it87_gpio_set(chip
, gpio_num
, val
);
257 spin_unlock(&it87_gpio
->lock
);
261 static const struct gpio_chip it87_template_chip
= {
262 .label
= KBUILD_MODNAME
,
263 .owner
= THIS_MODULE
,
264 .request
= it87_gpio_request
,
265 .get
= it87_gpio_get
,
266 .direction_input
= it87_gpio_direction_in
,
267 .set
= it87_gpio_set
,
268 .direction_output
= it87_gpio_direction_out
,
272 static int __init
it87_gpio_init(void)
276 u8 chip_rev
, gpio_ba_reg
;
277 char *labels
, **labels_table
;
279 struct it87_gpio
*it87_gpio
= &it87_gpio_chip
;
281 rc
= superio_enter();
285 chip_type
= superio_inw(CHIPID
);
286 chip_rev
= superio_inb(CHIPREV
) & 0x0f;
289 it87_gpio
->chip
= it87_template_chip
;
294 it87_gpio
->io_size
= 8; /* it8613 only needs 6, use 8 for alignment */
295 it87_gpio
->output_base
= 0xc8;
296 it87_gpio
->simple_base
= 0xc0;
297 it87_gpio
->simple_size
= 6;
298 it87_gpio
->chip
.ngpio
= 64; /* has 48, use 64 for convenient calc */
303 it87_gpio
->io_size
= 11;
304 it87_gpio
->output_base
= 0xc8;
305 it87_gpio
->simple_size
= 0;
306 it87_gpio
->chip
.ngpio
= 64;
314 it87_gpio
->io_size
= 8;
315 it87_gpio
->output_base
= 0xc8;
316 it87_gpio
->simple_base
= 0xc0;
317 it87_gpio
->simple_size
= 5;
318 it87_gpio
->chip
.ngpio
= 64;
322 it87_gpio
->io_size
= 4;
323 it87_gpio
->output_base
= 0xf0;
324 it87_gpio
->simple_size
= 0;
325 it87_gpio
->chip
.ngpio
= 16;
328 pr_err("no device\n");
331 pr_err("Unknown Chip found, Chip %04x Revision %x\n",
332 chip_type
, chip_rev
);
336 rc
= superio_enter();
340 superio_select(GPIO
);
342 /* fetch GPIO base address */
343 it87_gpio
->io_base
= superio_inw(gpio_ba_reg
);
347 pr_info("Found Chip IT%04x rev %x. %u GPIO lines starting at %04xh\n",
348 chip_type
, chip_rev
, it87_gpio
->chip
.ngpio
,
351 if (!request_region(it87_gpio
->io_base
, it87_gpio
->io_size
,
355 /* Set up aliases for the GPIO connection.
357 * ITE documentation for recent chips such as the IT8728F
358 * refers to the GPIO lines as GPxy, with a coordinates system
359 * where x is the GPIO group (starting from 1) and y is the
360 * bit within the group.
362 * By creating these aliases, we make it easier to understand
363 * to which GPIO pin we're referring to.
365 labels
= kcalloc(it87_gpio
->chip
.ngpio
, sizeof("it87_gpXY"),
367 labels_table
= kcalloc(it87_gpio
->chip
.ngpio
, sizeof(const char *),
370 if (!labels
|| !labels_table
) {
375 for (i
= 0; i
< it87_gpio
->chip
.ngpio
; i
++) {
376 char *label
= &labels
[i
* sizeof("it87_gpXY")];
378 sprintf(label
, "it87_gp%u%u", 1+(i
/8), i
%8);
379 labels_table
[i
] = label
;
382 it87_gpio
->chip
.names
= (const char *const*)labels_table
;
384 rc
= gpiochip_add_data(&it87_gpio
->chip
, it87_gpio
);
393 release_region(it87_gpio
->io_base
, it87_gpio
->io_size
);
397 static void __exit
it87_gpio_exit(void)
399 struct it87_gpio
*it87_gpio
= &it87_gpio_chip
;
401 gpiochip_remove(&it87_gpio
->chip
);
402 release_region(it87_gpio
->io_base
, it87_gpio
->io_size
);
403 kfree(it87_gpio
->chip
.names
[0]);
404 kfree(it87_gpio
->chip
.names
);
407 module_init(it87_gpio_init
);
408 module_exit(it87_gpio_exit
);
410 MODULE_AUTHOR("Diego Elio Pettenò <flameeyes@flameeyes.eu>");
411 MODULE_DESCRIPTION("GPIO interface for IT87xx Super I/O chips");
412 MODULE_LICENSE("GPL");