2 * GPIO driver for the SMSC SCH311x Super-I/O chips
4 * Copyright (C) 2013 Bruno Randolf <br1@einfach.org>
6 * SuperIO functions and chip detection:
7 * (c) Copyright 2008 Wim Van Sebroeck <wim@iguana.be>.
9 * This program is free software; you can redistribute it and/or modify
10 * it under the terms of the GNU General Public License as published by
11 * the Free Software Foundation; either version 2 of the License, or
12 * (at your option) any later version.
15 #include <linux/ioport.h>
16 #include <linux/module.h>
17 #include <linux/kernel.h>
18 #include <linux/init.h>
19 #include <linux/platform_device.h>
20 #include <linux/gpio.h>
21 #include <linux/bitops.h>
24 #define DRV_NAME "gpio-sch311x"
26 #define SCH311X_GPIO_CONF_OUT 0x00
27 #define SCH311X_GPIO_CONF_IN 0x01
28 #define SCH311X_GPIO_CONF_INVERT 0x02
29 #define SCH311X_GPIO_CONF_OPEN_DRAIN 0x80
31 #define SIO_CONFIG_KEY_ENTER 0x55
32 #define SIO_CONFIG_KEY_EXIT 0xaa
36 static int sch311x_ioports
[] = { 0x2e, 0x4e, 0x162e, 0x164e };
38 static struct platform_device
*sch311x_gpio_pdev
;
40 struct sch311x_pdev_data
{ /* platform device data */
41 unsigned short runtime_reg
; /* runtime register base address */
44 struct sch311x_gpio_block
{ /* one GPIO block runtime data */
45 struct gpio_chip chip
;
46 unsigned short data_reg
; /* from definition below */
47 unsigned short *config_regs
; /* pointer to definition below */
48 unsigned short runtime_reg
; /* runtime register */
49 spinlock_t lock
; /* lock for this GPIO block */
52 struct sch311x_gpio_priv
{ /* driver private data */
53 struct sch311x_gpio_block blocks
[6];
56 struct sch311x_gpio_block_def
{ /* register address definitions */
57 unsigned short data_reg
;
58 unsigned short config_regs
[8];
62 /* Note: some GPIOs are not available, these are marked with 0x00 */
64 static struct sch311x_gpio_block_def sch311x_gpio_blocks
[] = {
66 .data_reg
= 0x4b, /* GP1 */
67 .config_regs
= {0x23, 0x24, 0x25, 0x26, 0x27, 0x29, 0x2a, 0x2b},
71 .data_reg
= 0x4c, /* GP2 */
72 .config_regs
= {0x00, 0x2c, 0x2d, 0x00, 0x00, 0x00, 0x00, 0x32},
76 .data_reg
= 0x4d, /* GP3 */
77 .config_regs
= {0x33, 0x34, 0x35, 0x36, 0x37, 0x00, 0x39, 0x3a},
81 .data_reg
= 0x4e, /* GP4 */
82 .config_regs
= {0x3b, 0x00, 0x3d, 0x00, 0x6e, 0x6f, 0x72, 0x73},
86 .data_reg
= 0x4f, /* GP5 */
87 .config_regs
= {0x3f, 0x40, 0x41, 0x42, 0x43, 0x44, 0x45, 0x46},
91 .data_reg
= 0x50, /* GP6 */
92 .config_regs
= {0x47, 0x48, 0x54, 0x55, 0x56, 0x57, 0x58, 0x59},
101 static inline int sch311x_sio_enter(int sio_config_port
)
103 /* Don't step on other drivers' I/O space by accident. */
104 if (!request_muxed_region(sio_config_port
, 2, DRV_NAME
)) {
105 pr_err(DRV_NAME
"I/O address 0x%04x already in use\n",
110 outb(SIO_CONFIG_KEY_ENTER
, sio_config_port
);
114 static inline void sch311x_sio_exit(int sio_config_port
)
116 outb(SIO_CONFIG_KEY_EXIT
, sio_config_port
);
117 release_region(sio_config_port
, 2);
120 static inline int sch311x_sio_inb(int sio_config_port
, int reg
)
122 outb(reg
, sio_config_port
);
123 return inb(sio_config_port
+ 1);
126 static inline void sch311x_sio_outb(int sio_config_port
, int reg
, int val
)
128 outb(reg
, sio_config_port
);
129 outb(val
, sio_config_port
+ 1);
137 static int sch311x_gpio_request(struct gpio_chip
*chip
, unsigned offset
)
139 struct sch311x_gpio_block
*block
= gpiochip_get_data(chip
);
141 if (block
->config_regs
[offset
] == 0) /* GPIO is not available */
144 if (!request_region(block
->runtime_reg
+ block
->config_regs
[offset
],
146 dev_err(chip
->parent
, "Failed to request region 0x%04x.\n",
147 block
->runtime_reg
+ block
->config_regs
[offset
]);
153 static void sch311x_gpio_free(struct gpio_chip
*chip
, unsigned offset
)
155 struct sch311x_gpio_block
*block
= gpiochip_get_data(chip
);
157 if (block
->config_regs
[offset
] == 0) /* GPIO is not available */
160 release_region(block
->runtime_reg
+ block
->config_regs
[offset
], 1);
163 static int sch311x_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
165 struct sch311x_gpio_block
*block
= gpiochip_get_data(chip
);
168 spin_lock(&block
->lock
);
169 data
= inb(block
->runtime_reg
+ block
->data_reg
);
170 spin_unlock(&block
->lock
);
172 return !!(data
& BIT(offset
));
175 static void __sch311x_gpio_set(struct sch311x_gpio_block
*block
,
176 unsigned offset
, int value
)
178 unsigned char data
= inb(block
->runtime_reg
+ block
->data_reg
);
182 data
&= ~BIT(offset
);
183 outb(data
, block
->runtime_reg
+ block
->data_reg
);
186 static void sch311x_gpio_set(struct gpio_chip
*chip
, unsigned offset
,
189 struct sch311x_gpio_block
*block
= gpiochip_get_data(chip
);
191 spin_lock(&block
->lock
);
192 __sch311x_gpio_set(block
, offset
, value
);
193 spin_unlock(&block
->lock
);
196 static int sch311x_gpio_direction_in(struct gpio_chip
*chip
, unsigned offset
)
198 struct sch311x_gpio_block
*block
= gpiochip_get_data(chip
);
200 spin_lock(&block
->lock
);
201 outb(SCH311X_GPIO_CONF_IN
, block
->runtime_reg
+
202 block
->config_regs
[offset
]);
203 spin_unlock(&block
->lock
);
208 static int sch311x_gpio_direction_out(struct gpio_chip
*chip
, unsigned offset
,
211 struct sch311x_gpio_block
*block
= gpiochip_get_data(chip
);
213 spin_lock(&block
->lock
);
215 outb(SCH311X_GPIO_CONF_OUT
, block
->runtime_reg
+
216 block
->config_regs
[offset
]);
218 __sch311x_gpio_set(block
, offset
, value
);
220 spin_unlock(&block
->lock
);
224 static int sch311x_gpio_probe(struct platform_device
*pdev
)
226 struct sch311x_pdev_data
*pdata
= dev_get_platdata(&pdev
->dev
);
227 struct sch311x_gpio_priv
*priv
;
228 struct sch311x_gpio_block
*block
;
231 /* we can register all GPIO data registers at once */
232 if (!devm_request_region(&pdev
->dev
, pdata
->runtime_reg
+ GP1
, 6,
234 dev_err(&pdev
->dev
, "Failed to request region 0x%04x-0x%04x.\n",
235 pdata
->runtime_reg
+ GP1
, pdata
->runtime_reg
+ GP1
+ 5);
239 priv
= devm_kzalloc(&pdev
->dev
, sizeof(*priv
), GFP_KERNEL
);
243 platform_set_drvdata(pdev
, priv
);
245 for (i
= 0; i
< ARRAY_SIZE(priv
->blocks
); i
++) {
246 block
= &priv
->blocks
[i
];
248 spin_lock_init(&block
->lock
);
250 block
->chip
.label
= DRV_NAME
;
251 block
->chip
.owner
= THIS_MODULE
;
252 block
->chip
.request
= sch311x_gpio_request
;
253 block
->chip
.free
= sch311x_gpio_free
;
254 block
->chip
.direction_input
= sch311x_gpio_direction_in
;
255 block
->chip
.direction_output
= sch311x_gpio_direction_out
;
256 block
->chip
.get
= sch311x_gpio_get
;
257 block
->chip
.set
= sch311x_gpio_set
;
258 block
->chip
.ngpio
= 8;
259 block
->chip
.parent
= &pdev
->dev
;
260 block
->chip
.base
= sch311x_gpio_blocks
[i
].base
;
261 block
->config_regs
= sch311x_gpio_blocks
[i
].config_regs
;
262 block
->data_reg
= sch311x_gpio_blocks
[i
].data_reg
;
263 block
->runtime_reg
= pdata
->runtime_reg
;
265 err
= gpiochip_add_data(&block
->chip
, block
);
268 "Could not register gpiochip, %d\n", err
);
272 "SMSC SCH311x GPIO block %d registered.\n", i
);
278 /* release already registered chips */
279 for (--i
; i
>= 0; i
--)
280 gpiochip_remove(&priv
->blocks
[i
].chip
);
284 static int sch311x_gpio_remove(struct platform_device
*pdev
)
286 struct sch311x_gpio_priv
*priv
= platform_get_drvdata(pdev
);
289 for (i
= 0; i
< ARRAY_SIZE(priv
->blocks
); i
++) {
290 gpiochip_remove(&priv
->blocks
[i
].chip
);
292 "SMSC SCH311x GPIO block %d unregistered.\n", i
);
297 static struct platform_driver sch311x_gpio_driver
= {
298 .driver
.name
= DRV_NAME
,
299 .probe
= sch311x_gpio_probe
,
300 .remove
= sch311x_gpio_remove
,
305 * Init & exit routines
308 static int __init
sch311x_detect(int sio_config_port
, unsigned short *addr
)
311 unsigned short base_addr
;
312 unsigned char dev_id
;
314 err
= sch311x_sio_enter(sio_config_port
);
318 /* Check device ID. */
319 reg
= sch311x_sio_inb(sio_config_port
, 0x20);
321 case 0x7c: /* SCH3112 */
324 case 0x7d: /* SCH3114 */
327 case 0x7f: /* SCH3116 */
335 /* Select logical device A (runtime registers) */
336 sch311x_sio_outb(sio_config_port
, 0x07, 0x0a);
338 /* Check if Logical Device Register is currently active */
339 if ((sch311x_sio_inb(sio_config_port
, 0x30) & 0x01) == 0)
340 pr_info("Seems that LDN 0x0a is not active...\n");
342 /* Get the base address of the runtime registers */
343 base_addr
= (sch311x_sio_inb(sio_config_port
, 0x60) << 8) |
344 sch311x_sio_inb(sio_config_port
, 0x61);
346 pr_err("Base address not set\n");
352 pr_info("Found an SMSC SCH311%d chip at 0x%04x\n", dev_id
, base_addr
);
355 sch311x_sio_exit(sio_config_port
);
359 static int __init
sch311x_gpio_pdev_add(const unsigned short addr
)
361 struct sch311x_pdev_data pdata
;
364 pdata
.runtime_reg
= addr
;
366 sch311x_gpio_pdev
= platform_device_alloc(DRV_NAME
, -1);
367 if (!sch311x_gpio_pdev
)
370 err
= platform_device_add_data(sch311x_gpio_pdev
,
371 &pdata
, sizeof(pdata
));
373 pr_err(DRV_NAME
"Platform data allocation failed\n");
377 err
= platform_device_add(sch311x_gpio_pdev
);
379 pr_err(DRV_NAME
"Device addition failed\n");
385 platform_device_put(sch311x_gpio_pdev
);
389 static int __init
sch311x_gpio_init(void)
392 unsigned short addr
= 0;
394 for (i
= 0; i
< ARRAY_SIZE(sch311x_ioports
); i
++)
395 if (sch311x_detect(sch311x_ioports
[i
], &addr
) == 0)
401 err
= platform_driver_register(&sch311x_gpio_driver
);
405 err
= sch311x_gpio_pdev_add(addr
);
407 goto unreg_platform_driver
;
411 unreg_platform_driver
:
412 platform_driver_unregister(&sch311x_gpio_driver
);
416 static void __exit
sch311x_gpio_exit(void)
418 platform_device_unregister(sch311x_gpio_pdev
);
419 platform_driver_unregister(&sch311x_gpio_driver
);
422 module_init(sch311x_gpio_init
);
423 module_exit(sch311x_gpio_exit
);
425 MODULE_AUTHOR("Bruno Randolf <br1@einfach.org>");
426 MODULE_DESCRIPTION("SMSC SCH311x GPIO Driver");
427 MODULE_LICENSE("GPL");
428 MODULE_ALIAS("platform:gpio-sch311x");