Linux Audio

Check our new training course

Loading...
v6.2
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * GPIO driver for Fintek and Nuvoton Super-I/O chips
  4 *
  5 * Copyright (C) 2010-2013 LaCie
  6 *
  7 * Author: Simon Guinot <simon.guinot@sequanux.org>
  8 */
  9
 10#define DRVNAME "gpio-f7188x"
 11#define pr_fmt(fmt) DRVNAME ": " fmt
 12
 13#include <linux/module.h>
 14#include <linux/init.h>
 15#include <linux/platform_device.h>
 16#include <linux/io.h>
 17#include <linux/gpio/driver.h>
 18#include <linux/bitops.h>
 19
 
 
 20/*
 21 * Super-I/O registers
 22 */
 23#define SIO_LDSEL		0x07	/* Logical device select */
 24#define SIO_DEVID		0x20	/* Device ID (2 bytes) */
 
 
 25
 
 26#define SIO_UNLOCK_KEY		0x87	/* Key to enable Super-I/O */
 27#define SIO_LOCK_KEY		0xAA	/* Key to disable Super-I/O */
 28
 29/*
 30 * Fintek devices.
 31 */
 32#define SIO_FINTEK_DEVREV	0x22	/* Fintek Device revision */
 33#define SIO_FINTEK_MANID	0x23    /* Fintek ID (2 bytes) */
 34
 35#define SIO_FINTEK_ID		0x1934  /* Manufacturer ID */
 36
 37#define SIO_F71869_ID		0x0814	/* F71869 chipset ID */
 38#define SIO_F71869A_ID		0x1007	/* F71869A chipset ID */
 39#define SIO_F71882_ID		0x0541	/* F71882 chipset ID */
 40#define SIO_F71889_ID		0x0909	/* F71889 chipset ID */
 41#define SIO_F71889A_ID		0x1005	/* F71889A chipset ID */
 42#define SIO_F81866_ID		0x1010	/* F81866 chipset ID */
 43#define SIO_F81804_ID		0x1502  /* F81804 chipset ID, same for F81966 */
 44#define SIO_F81865_ID		0x0704	/* F81865 chipset ID */
 45
 46#define SIO_LD_GPIO_FINTEK	0x06	/* GPIO logical device */
 47
 48/*
 49 * Nuvoton devices.
 50 */
 51#define SIO_NCT6116D_ID		0xD283  /* NCT6116D chipset ID */
 52
 53#define SIO_LD_GPIO_NUVOTON	0x07	/* GPIO logical device */
 54
 55
 56enum chips {
 57	f71869,
 58	f71869a,
 59	f71882fg,
 60	f71889a,
 61	f71889f,
 62	f81866,
 63	f81804,
 64	f81865,
 65	nct6116d,
 66};
 67
 68static const char * const f7188x_names[] = {
 69	"f71869",
 70	"f71869a",
 71	"f71882fg",
 72	"f71889a",
 73	"f71889f",
 74	"f81866",
 75	"f81804",
 76	"f81865",
 77	"nct6116d",
 78};
 79
 80struct f7188x_sio {
 81	int addr;
 82	int device;
 83	enum chips type;
 84};
 85
 86struct f7188x_gpio_bank {
 87	struct gpio_chip chip;
 88	unsigned int regbase;
 89	struct f7188x_gpio_data *data;
 90};
 91
 92struct f7188x_gpio_data {
 93	struct f7188x_sio *sio;
 94	int nr_bank;
 95	struct f7188x_gpio_bank *bank;
 96};
 97
 98/*
 99 * Super-I/O functions.
100 */
101
102static inline int superio_inb(int base, int reg)
103{
104	outb(reg, base);
105	return inb(base + 1);
106}
107
108static int superio_inw(int base, int reg)
109{
110	int val;
111
112	outb(reg++, base);
113	val = inb(base + 1) << 8;
114	outb(reg, base);
115	val |= inb(base + 1);
116
117	return val;
118}
119
120static inline void superio_outb(int base, int reg, int val)
121{
122	outb(reg, base);
123	outb(val, base + 1);
124}
125
126static inline int superio_enter(int base)
127{
128	/* Don't step on other drivers' I/O space by accident. */
129	if (!request_muxed_region(base, 2, DRVNAME)) {
130		pr_err("I/O address 0x%04x already in use\n", base);
131		return -EBUSY;
132	}
133
134	/* According to the datasheet the key must be send twice. */
135	outb(SIO_UNLOCK_KEY, base);
136	outb(SIO_UNLOCK_KEY, base);
137
138	return 0;
139}
140
141static inline void superio_select(int base, int ld)
142{
143	outb(SIO_LDSEL, base);
144	outb(ld, base + 1);
145}
146
147static inline void superio_exit(int base)
148{
149	outb(SIO_LOCK_KEY, base);
150	release_region(base, 2);
151}
152
153/*
154 * GPIO chip.
155 */
156
157static int f7188x_gpio_get_direction(struct gpio_chip *chip, unsigned offset);
158static int f7188x_gpio_direction_in(struct gpio_chip *chip, unsigned offset);
159static int f7188x_gpio_get(struct gpio_chip *chip, unsigned offset);
160static int f7188x_gpio_direction_out(struct gpio_chip *chip,
161				     unsigned offset, int value);
162static void f7188x_gpio_set(struct gpio_chip *chip, unsigned offset, int value);
163static int f7188x_gpio_set_config(struct gpio_chip *chip, unsigned offset,
164				  unsigned long config);
165
166#define F7188X_GPIO_BANK(_base, _ngpio, _regbase, _label)			\
167	{								\
168		.chip = {						\
169			.label            = _label,			\
170			.owner            = THIS_MODULE,		\
171			.get_direction    = f7188x_gpio_get_direction,	\
172			.direction_input  = f7188x_gpio_direction_in,	\
173			.get              = f7188x_gpio_get,		\
174			.direction_output = f7188x_gpio_direction_out,	\
175			.set              = f7188x_gpio_set,		\
176			.set_config	  = f7188x_gpio_set_config,	\
177			.base             = _base,			\
178			.ngpio            = _ngpio,			\
179			.can_sleep        = true,			\
180		},							\
181		.regbase = _regbase,					\
182	}
183
184#define f7188x_gpio_dir(base) ((base) + 0)
185#define f7188x_gpio_data_out(base) ((base) + 1)
186#define f7188x_gpio_data_in(base) ((base) + 2)
187/* Output mode register (0:open drain 1:push-pull). */
188#define f7188x_gpio_out_mode(base) ((base) + 3)
189
190#define f7188x_gpio_dir_invert(type)	((type) == nct6116d)
191#define f7188x_gpio_data_single(type)	((type) == nct6116d)
192
193static struct f7188x_gpio_bank f71869_gpio_bank[] = {
194	F7188X_GPIO_BANK(0, 6, 0xF0, DRVNAME "-0"),
195	F7188X_GPIO_BANK(10, 8, 0xE0, DRVNAME "-1"),
196	F7188X_GPIO_BANK(20, 8, 0xD0, DRVNAME "-2"),
197	F7188X_GPIO_BANK(30, 8, 0xC0, DRVNAME "-3"),
198	F7188X_GPIO_BANK(40, 8, 0xB0, DRVNAME "-4"),
199	F7188X_GPIO_BANK(50, 5, 0xA0, DRVNAME "-5"),
200	F7188X_GPIO_BANK(60, 6, 0x90, DRVNAME "-6"),
201};
202
203static struct f7188x_gpio_bank f71869a_gpio_bank[] = {
204	F7188X_GPIO_BANK(0, 6, 0xF0, DRVNAME "-0"),
205	F7188X_GPIO_BANK(10, 8, 0xE0, DRVNAME "-1"),
206	F7188X_GPIO_BANK(20, 8, 0xD0, DRVNAME "-2"),
207	F7188X_GPIO_BANK(30, 8, 0xC0, DRVNAME "-3"),
208	F7188X_GPIO_BANK(40, 8, 0xB0, DRVNAME "-4"),
209	F7188X_GPIO_BANK(50, 5, 0xA0, DRVNAME "-5"),
210	F7188X_GPIO_BANK(60, 8, 0x90, DRVNAME "-6"),
211	F7188X_GPIO_BANK(70, 8, 0x80, DRVNAME "-7"),
212};
213
214static struct f7188x_gpio_bank f71882_gpio_bank[] = {
215	F7188X_GPIO_BANK(0, 8, 0xF0, DRVNAME "-0"),
216	F7188X_GPIO_BANK(10, 8, 0xE0, DRVNAME "-1"),
217	F7188X_GPIO_BANK(20, 8, 0xD0, DRVNAME "-2"),
218	F7188X_GPIO_BANK(30, 4, 0xC0, DRVNAME "-3"),
219	F7188X_GPIO_BANK(40, 4, 0xB0, DRVNAME "-4"),
220};
221
222static struct f7188x_gpio_bank f71889a_gpio_bank[] = {
223	F7188X_GPIO_BANK(0, 7, 0xF0, DRVNAME "-0"),
224	F7188X_GPIO_BANK(10, 7, 0xE0, DRVNAME "-1"),
225	F7188X_GPIO_BANK(20, 8, 0xD0, DRVNAME "-2"),
226	F7188X_GPIO_BANK(30, 8, 0xC0, DRVNAME "-3"),
227	F7188X_GPIO_BANK(40, 8, 0xB0, DRVNAME "-4"),
228	F7188X_GPIO_BANK(50, 5, 0xA0, DRVNAME "-5"),
229	F7188X_GPIO_BANK(60, 8, 0x90, DRVNAME "-6"),
230	F7188X_GPIO_BANK(70, 8, 0x80, DRVNAME "-7"),
231};
232
233static struct f7188x_gpio_bank f71889_gpio_bank[] = {
234	F7188X_GPIO_BANK(0, 7, 0xF0, DRVNAME "-0"),
235	F7188X_GPIO_BANK(10, 7, 0xE0, DRVNAME "-1"),
236	F7188X_GPIO_BANK(20, 8, 0xD0, DRVNAME "-2"),
237	F7188X_GPIO_BANK(30, 8, 0xC0, DRVNAME "-3"),
238	F7188X_GPIO_BANK(40, 8, 0xB0, DRVNAME "-4"),
239	F7188X_GPIO_BANK(50, 5, 0xA0, DRVNAME "-5"),
240	F7188X_GPIO_BANK(60, 8, 0x90, DRVNAME "-6"),
241	F7188X_GPIO_BANK(70, 8, 0x80, DRVNAME "-7"),
242};
243
244static struct f7188x_gpio_bank f81866_gpio_bank[] = {
245	F7188X_GPIO_BANK(0, 8, 0xF0, DRVNAME "-0"),
246	F7188X_GPIO_BANK(10, 8, 0xE0, DRVNAME "-1"),
247	F7188X_GPIO_BANK(20, 8, 0xD0, DRVNAME "-2"),
248	F7188X_GPIO_BANK(30, 8, 0xC0, DRVNAME "-3"),
249	F7188X_GPIO_BANK(40, 8, 0xB0, DRVNAME "-4"),
250	F7188X_GPIO_BANK(50, 8, 0xA0, DRVNAME "-5"),
251	F7188X_GPIO_BANK(60, 8, 0x90, DRVNAME "-6"),
252	F7188X_GPIO_BANK(70, 8, 0x80, DRVNAME "-7"),
253	F7188X_GPIO_BANK(80, 8, 0x88, DRVNAME "-8"),
254};
255
256
257static struct f7188x_gpio_bank f81804_gpio_bank[] = {
258	F7188X_GPIO_BANK(0, 8, 0xF0, DRVNAME "-0"),
259	F7188X_GPIO_BANK(10, 8, 0xE0, DRVNAME "-1"),
260	F7188X_GPIO_BANK(20, 8, 0xD0, DRVNAME "-2"),
261	F7188X_GPIO_BANK(50, 8, 0xA0, DRVNAME "-3"),
262	F7188X_GPIO_BANK(60, 8, 0x90, DRVNAME "-4"),
263	F7188X_GPIO_BANK(70, 8, 0x80, DRVNAME "-5"),
264	F7188X_GPIO_BANK(90, 8, 0x98, DRVNAME "-6"),
265};
266
267static struct f7188x_gpio_bank f81865_gpio_bank[] = {
268	F7188X_GPIO_BANK(0, 8, 0xF0, DRVNAME "-0"),
269	F7188X_GPIO_BANK(10, 8, 0xE0, DRVNAME "-1"),
270	F7188X_GPIO_BANK(20, 8, 0xD0, DRVNAME "-2"),
271	F7188X_GPIO_BANK(30, 8, 0xC0, DRVNAME "-3"),
272	F7188X_GPIO_BANK(40, 8, 0xB0, DRVNAME "-4"),
273	F7188X_GPIO_BANK(50, 8, 0xA0, DRVNAME "-5"),
274	F7188X_GPIO_BANK(60, 5, 0x90, DRVNAME "-6"),
275};
276
277static struct f7188x_gpio_bank nct6116d_gpio_bank[] = {
278	F7188X_GPIO_BANK(0, 8, 0xE0, DRVNAME "-0"),
279	F7188X_GPIO_BANK(10, 8, 0xE4, DRVNAME "-1"),
280	F7188X_GPIO_BANK(20, 8, 0xE8, DRVNAME "-2"),
281	F7188X_GPIO_BANK(30, 8, 0xEC, DRVNAME "-3"),
282	F7188X_GPIO_BANK(40, 8, 0xF0, DRVNAME "-4"),
283	F7188X_GPIO_BANK(50, 8, 0xF4, DRVNAME "-5"),
284	F7188X_GPIO_BANK(60, 8, 0xF8, DRVNAME "-6"),
285	F7188X_GPIO_BANK(70, 1, 0xFC, DRVNAME "-7"),
286};
287
 
288static int f7188x_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
289{
290	int err;
291	struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
292	struct f7188x_sio *sio = bank->data->sio;
293	u8 dir;
294
295	err = superio_enter(sio->addr);
296	if (err)
297		return err;
298	superio_select(sio->addr, sio->device);
299
300	dir = superio_inb(sio->addr, f7188x_gpio_dir(bank->regbase));
301
302	superio_exit(sio->addr);
303
304	if (f7188x_gpio_dir_invert(sio->type))
305		dir = ~dir;
306
307	if (dir & BIT(offset))
308		return GPIO_LINE_DIRECTION_OUT;
309
310	return GPIO_LINE_DIRECTION_IN;
311}
312
313static int f7188x_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
314{
315	int err;
316	struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
317	struct f7188x_sio *sio = bank->data->sio;
318	u8 dir;
319
320	err = superio_enter(sio->addr);
321	if (err)
322		return err;
323	superio_select(sio->addr, sio->device);
324
325	dir = superio_inb(sio->addr, f7188x_gpio_dir(bank->regbase));
326
327	if (f7188x_gpio_dir_invert(sio->type))
328		dir |= BIT(offset);
329	else
330		dir &= ~BIT(offset);
331	superio_outb(sio->addr, f7188x_gpio_dir(bank->regbase), dir);
332
333	superio_exit(sio->addr);
334
335	return 0;
336}
337
338static int f7188x_gpio_get(struct gpio_chip *chip, unsigned offset)
339{
340	int err;
341	struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
342	struct f7188x_sio *sio = bank->data->sio;
343	u8 dir, data;
344
345	err = superio_enter(sio->addr);
346	if (err)
347		return err;
348	superio_select(sio->addr, sio->device);
349
350	dir = superio_inb(sio->addr, f7188x_gpio_dir(bank->regbase));
351	dir = !!(dir & BIT(offset));
352	if (f7188x_gpio_data_single(sio->type) || dir)
353		data = superio_inb(sio->addr, f7188x_gpio_data_out(bank->regbase));
354	else
355		data = superio_inb(sio->addr, f7188x_gpio_data_in(bank->regbase));
356
357	superio_exit(sio->addr);
358
359	return !!(data & BIT(offset));
360}
361
362static int f7188x_gpio_direction_out(struct gpio_chip *chip,
363				     unsigned offset, int value)
364{
365	int err;
366	struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
367	struct f7188x_sio *sio = bank->data->sio;
368	u8 dir, data_out;
369
370	err = superio_enter(sio->addr);
371	if (err)
372		return err;
373	superio_select(sio->addr, sio->device);
374
375	data_out = superio_inb(sio->addr, f7188x_gpio_data_out(bank->regbase));
376	if (value)
377		data_out |= BIT(offset);
378	else
379		data_out &= ~BIT(offset);
380	superio_outb(sio->addr, f7188x_gpio_data_out(bank->regbase), data_out);
381
382	dir = superio_inb(sio->addr, f7188x_gpio_dir(bank->regbase));
383	if (f7188x_gpio_dir_invert(sio->type))
384		dir &= ~BIT(offset);
385	else
386		dir |= BIT(offset);
387	superio_outb(sio->addr, f7188x_gpio_dir(bank->regbase), dir);
388
389	superio_exit(sio->addr);
390
391	return 0;
392}
393
394static void f7188x_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
395{
396	int err;
397	struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
398	struct f7188x_sio *sio = bank->data->sio;
399	u8 data_out;
400
401	err = superio_enter(sio->addr);
402	if (err)
403		return;
404	superio_select(sio->addr, sio->device);
405
406	data_out = superio_inb(sio->addr, f7188x_gpio_data_out(bank->regbase));
407	if (value)
408		data_out |= BIT(offset);
409	else
410		data_out &= ~BIT(offset);
411	superio_outb(sio->addr, f7188x_gpio_data_out(bank->regbase), data_out);
412
413	superio_exit(sio->addr);
414}
415
416static int f7188x_gpio_set_config(struct gpio_chip *chip, unsigned offset,
417				  unsigned long config)
418{
419	int err;
420	enum pin_config_param param = pinconf_to_config_param(config);
421	struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
422	struct f7188x_sio *sio = bank->data->sio;
423	u8 data;
424
425	if (param != PIN_CONFIG_DRIVE_OPEN_DRAIN &&
426	    param != PIN_CONFIG_DRIVE_PUSH_PULL)
427		return -ENOTSUPP;
428
429	err = superio_enter(sio->addr);
430	if (err)
431		return err;
432	superio_select(sio->addr, sio->device);
433
434	data = superio_inb(sio->addr, f7188x_gpio_out_mode(bank->regbase));
435	if (param == PIN_CONFIG_DRIVE_OPEN_DRAIN)
436		data &= ~BIT(offset);
437	else
438		data |= BIT(offset);
439	superio_outb(sio->addr, f7188x_gpio_out_mode(bank->regbase), data);
440
441	superio_exit(sio->addr);
442	return 0;
443}
444
445/*
446 * Platform device and driver.
447 */
448
449static int f7188x_gpio_probe(struct platform_device *pdev)
450{
451	int err;
452	int i;
453	struct f7188x_sio *sio = dev_get_platdata(&pdev->dev);
454	struct f7188x_gpio_data *data;
455
456	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
457	if (!data)
458		return -ENOMEM;
459
460	switch (sio->type) {
461	case f71869:
462		data->nr_bank = ARRAY_SIZE(f71869_gpio_bank);
463		data->bank = f71869_gpio_bank;
464		break;
465	case f71869a:
466		data->nr_bank = ARRAY_SIZE(f71869a_gpio_bank);
467		data->bank = f71869a_gpio_bank;
468		break;
469	case f71882fg:
470		data->nr_bank = ARRAY_SIZE(f71882_gpio_bank);
471		data->bank = f71882_gpio_bank;
472		break;
473	case f71889a:
474		data->nr_bank = ARRAY_SIZE(f71889a_gpio_bank);
475		data->bank = f71889a_gpio_bank;
476		break;
477	case f71889f:
478		data->nr_bank = ARRAY_SIZE(f71889_gpio_bank);
479		data->bank = f71889_gpio_bank;
480		break;
481	case f81866:
482		data->nr_bank = ARRAY_SIZE(f81866_gpio_bank);
483		data->bank = f81866_gpio_bank;
484		break;
485	case  f81804:
486		data->nr_bank = ARRAY_SIZE(f81804_gpio_bank);
487		data->bank = f81804_gpio_bank;
488		break;
489	case f81865:
490		data->nr_bank = ARRAY_SIZE(f81865_gpio_bank);
491		data->bank = f81865_gpio_bank;
492		break;
493	case nct6116d:
494		data->nr_bank = ARRAY_SIZE(nct6116d_gpio_bank);
495		data->bank = nct6116d_gpio_bank;
496		break;
497	default:
498		return -ENODEV;
499	}
500	data->sio = sio;
501
502	platform_set_drvdata(pdev, data);
503
504	/* For each GPIO bank, register a GPIO chip. */
505	for (i = 0; i < data->nr_bank; i++) {
506		struct f7188x_gpio_bank *bank = &data->bank[i];
507
508		bank->chip.parent = &pdev->dev;
509		bank->data = data;
510
511		err = devm_gpiochip_add_data(&pdev->dev, &bank->chip, bank);
512		if (err) {
513			dev_err(&pdev->dev,
514				"Failed to register gpiochip %d: %d\n",
515				i, err);
516			return err;
517		}
518	}
519
520	return 0;
521}
522
523static int __init f7188x_find(int addr, struct f7188x_sio *sio)
524{
525	int err;
526	u16 devid;
527	u16 manid;
528
529	err = superio_enter(addr);
530	if (err)
531		return err;
532
533	err = -ENODEV;
 
 
 
 
 
534
535	sio->device = SIO_LD_GPIO_FINTEK;
536	devid = superio_inw(addr, SIO_DEVID);
537	switch (devid) {
538	case SIO_F71869_ID:
539		sio->type = f71869;
540		break;
541	case SIO_F71869A_ID:
542		sio->type = f71869a;
543		break;
544	case SIO_F71882_ID:
545		sio->type = f71882fg;
546		break;
547	case SIO_F71889A_ID:
548		sio->type = f71889a;
549		break;
550	case SIO_F71889_ID:
551		sio->type = f71889f;
552		break;
553	case SIO_F81866_ID:
554		sio->type = f81866;
555		break;
556	case SIO_F81804_ID:
557		sio->type = f81804;
558		break;
559	case SIO_F81865_ID:
560		sio->type = f81865;
561		break;
562	case SIO_NCT6116D_ID:
563		sio->device = SIO_LD_GPIO_NUVOTON;
564		sio->type = nct6116d;
565		break;
566	default:
567		pr_info("Unsupported Fintek device 0x%04x\n", devid);
568		goto err;
569	}
570
571	/* double check manufacturer where possible */
572	if (sio->type != nct6116d) {
573		manid = superio_inw(addr, SIO_FINTEK_MANID);
574		if (manid != SIO_FINTEK_ID) {
575			pr_debug("Not a Fintek device at 0x%08x\n", addr);
576			goto err;
577		}
578	}
579
580	sio->addr = addr;
581	err = 0;
582
583	pr_info("Found %s at %#x\n", f7188x_names[sio->type], (unsigned int)addr);
584	if (sio->type != nct6116d)
585		pr_info("   revision %d\n", superio_inb(addr, SIO_FINTEK_DEVREV));
 
586
587err:
588	superio_exit(addr);
589	return err;
590}
591
592static struct platform_device *f7188x_gpio_pdev;
593
594static int __init
595f7188x_gpio_device_add(const struct f7188x_sio *sio)
596{
597	int err;
598
599	f7188x_gpio_pdev = platform_device_alloc(DRVNAME, -1);
600	if (!f7188x_gpio_pdev)
601		return -ENOMEM;
602
603	err = platform_device_add_data(f7188x_gpio_pdev,
604				       sio, sizeof(*sio));
605	if (err) {
606		pr_err("Platform data allocation failed\n");
607		goto err;
608	}
609
610	err = platform_device_add(f7188x_gpio_pdev);
611	if (err) {
612		pr_err("Device addition failed\n");
613		goto err;
614	}
615
616	return 0;
617
618err:
619	platform_device_put(f7188x_gpio_pdev);
620
621	return err;
622}
623
624/*
625 * Try to match a supported Fintek device by reading the (hard-wired)
626 * configuration I/O ports. If available, then register both the platform
627 * device and driver to support the GPIOs.
628 */
629
630static struct platform_driver f7188x_gpio_driver = {
631	.driver = {
632		.name	= DRVNAME,
633	},
634	.probe		= f7188x_gpio_probe,
635};
636
637static int __init f7188x_gpio_init(void)
638{
639	int err;
640	struct f7188x_sio sio;
641
642	if (f7188x_find(0x2e, &sio) &&
643	    f7188x_find(0x4e, &sio))
644		return -ENODEV;
645
646	err = platform_driver_register(&f7188x_gpio_driver);
647	if (!err) {
648		err = f7188x_gpio_device_add(&sio);
649		if (err)
650			platform_driver_unregister(&f7188x_gpio_driver);
651	}
652
653	return err;
654}
655subsys_initcall(f7188x_gpio_init);
656
657static void __exit f7188x_gpio_exit(void)
658{
659	platform_device_unregister(f7188x_gpio_pdev);
660	platform_driver_unregister(&f7188x_gpio_driver);
661}
662module_exit(f7188x_gpio_exit);
663
664MODULE_DESCRIPTION("GPIO driver for Super-I/O chips F71869, F71869A, F71882FG, F71889A, F71889F and F81866");
665MODULE_AUTHOR("Simon Guinot <simon.guinot@sequanux.org>");
666MODULE_LICENSE("GPL");
v5.4
  1// SPDX-License-Identifier: GPL-2.0-or-later
  2/*
  3 * GPIO driver for Fintek Super-I/O F71869, F71869A, F71882, F71889 and F81866
  4 *
  5 * Copyright (C) 2010-2013 LaCie
  6 *
  7 * Author: Simon Guinot <simon.guinot@sequanux.org>
  8 */
  9
 
 
 
 10#include <linux/module.h>
 11#include <linux/init.h>
 12#include <linux/platform_device.h>
 13#include <linux/io.h>
 14#include <linux/gpio/driver.h>
 15#include <linux/bitops.h>
 16
 17#define DRVNAME "gpio-f7188x"
 18
 19/*
 20 * Super-I/O registers
 21 */
 22#define SIO_LDSEL		0x07	/* Logical device select */
 23#define SIO_DEVID		0x20	/* Device ID (2 bytes) */
 24#define SIO_DEVREV		0x22	/* Device revision */
 25#define SIO_MANID		0x23	/* Fintek ID (2 bytes) */
 26
 27#define SIO_LD_GPIO		0x06	/* GPIO logical device */
 28#define SIO_UNLOCK_KEY		0x87	/* Key to enable Super-I/O */
 29#define SIO_LOCK_KEY		0xAA	/* Key to disable Super-I/O */
 30
 31#define SIO_FINTEK_ID		0x1934	/* Manufacturer ID */
 
 
 
 
 
 
 
 32#define SIO_F71869_ID		0x0814	/* F71869 chipset ID */
 33#define SIO_F71869A_ID		0x1007	/* F71869A chipset ID */
 34#define SIO_F71882_ID		0x0541	/* F71882 chipset ID */
 35#define SIO_F71889_ID		0x0909	/* F71889 chipset ID */
 36#define SIO_F71889A_ID		0x1005	/* F71889A chipset ID */
 37#define SIO_F81866_ID		0x1010	/* F81866 chipset ID */
 38#define SIO_F81804_ID		0x1502  /* F81804 chipset ID, same for f81966 */
 
 39
 
 
 
 
 
 
 
 
 40
 41enum chips { f71869, f71869a, f71882fg, f71889a, f71889f, f81866, f81804 };
 
 
 
 
 
 
 
 
 
 
 
 42
 43static const char * const f7188x_names[] = {
 44	"f71869",
 45	"f71869a",
 46	"f71882fg",
 47	"f71889a",
 48	"f71889f",
 49	"f81866",
 50	"f81804",
 
 
 51};
 52
 53struct f7188x_sio {
 54	int addr;
 
 55	enum chips type;
 56};
 57
 58struct f7188x_gpio_bank {
 59	struct gpio_chip chip;
 60	unsigned int regbase;
 61	struct f7188x_gpio_data *data;
 62};
 63
 64struct f7188x_gpio_data {
 65	struct f7188x_sio *sio;
 66	int nr_bank;
 67	struct f7188x_gpio_bank *bank;
 68};
 69
 70/*
 71 * Super-I/O functions.
 72 */
 73
 74static inline int superio_inb(int base, int reg)
 75{
 76	outb(reg, base);
 77	return inb(base + 1);
 78}
 79
 80static int superio_inw(int base, int reg)
 81{
 82	int val;
 83
 84	outb(reg++, base);
 85	val = inb(base + 1) << 8;
 86	outb(reg, base);
 87	val |= inb(base + 1);
 88
 89	return val;
 90}
 91
 92static inline void superio_outb(int base, int reg, int val)
 93{
 94	outb(reg, base);
 95	outb(val, base + 1);
 96}
 97
 98static inline int superio_enter(int base)
 99{
100	/* Don't step on other drivers' I/O space by accident. */
101	if (!request_muxed_region(base, 2, DRVNAME)) {
102		pr_err(DRVNAME "I/O address 0x%04x already in use\n", base);
103		return -EBUSY;
104	}
105
106	/* According to the datasheet the key must be send twice. */
107	outb(SIO_UNLOCK_KEY, base);
108	outb(SIO_UNLOCK_KEY, base);
109
110	return 0;
111}
112
113static inline void superio_select(int base, int ld)
114{
115	outb(SIO_LDSEL, base);
116	outb(ld, base + 1);
117}
118
119static inline void superio_exit(int base)
120{
121	outb(SIO_LOCK_KEY, base);
122	release_region(base, 2);
123}
124
125/*
126 * GPIO chip.
127 */
128
129static int f7188x_gpio_get_direction(struct gpio_chip *chip, unsigned offset);
130static int f7188x_gpio_direction_in(struct gpio_chip *chip, unsigned offset);
131static int f7188x_gpio_get(struct gpio_chip *chip, unsigned offset);
132static int f7188x_gpio_direction_out(struct gpio_chip *chip,
133				     unsigned offset, int value);
134static void f7188x_gpio_set(struct gpio_chip *chip, unsigned offset, int value);
135static int f7188x_gpio_set_config(struct gpio_chip *chip, unsigned offset,
136				  unsigned long config);
137
138#define F7188X_GPIO_BANK(_base, _ngpio, _regbase)			\
139	{								\
140		.chip = {						\
141			.label            = DRVNAME,			\
142			.owner            = THIS_MODULE,		\
143			.get_direction    = f7188x_gpio_get_direction,	\
144			.direction_input  = f7188x_gpio_direction_in,	\
145			.get              = f7188x_gpio_get,		\
146			.direction_output = f7188x_gpio_direction_out,	\
147			.set              = f7188x_gpio_set,		\
148			.set_config	  = f7188x_gpio_set_config,	\
149			.base             = _base,			\
150			.ngpio            = _ngpio,			\
151			.can_sleep        = true,			\
152		},							\
153		.regbase = _regbase,					\
154	}
155
156#define gpio_dir(base) (base + 0)
157#define gpio_data_out(base) (base + 1)
158#define gpio_data_in(base) (base + 2)
159/* Output mode register (0:open drain 1:push-pull). */
160#define gpio_out_mode(base) (base + 3)
 
 
 
161
162static struct f7188x_gpio_bank f71869_gpio_bank[] = {
163	F7188X_GPIO_BANK(0, 6, 0xF0),
164	F7188X_GPIO_BANK(10, 8, 0xE0),
165	F7188X_GPIO_BANK(20, 8, 0xD0),
166	F7188X_GPIO_BANK(30, 8, 0xC0),
167	F7188X_GPIO_BANK(40, 8, 0xB0),
168	F7188X_GPIO_BANK(50, 5, 0xA0),
169	F7188X_GPIO_BANK(60, 6, 0x90),
170};
171
172static struct f7188x_gpio_bank f71869a_gpio_bank[] = {
173	F7188X_GPIO_BANK(0, 6, 0xF0),
174	F7188X_GPIO_BANK(10, 8, 0xE0),
175	F7188X_GPIO_BANK(20, 8, 0xD0),
176	F7188X_GPIO_BANK(30, 8, 0xC0),
177	F7188X_GPIO_BANK(40, 8, 0xB0),
178	F7188X_GPIO_BANK(50, 5, 0xA0),
179	F7188X_GPIO_BANK(60, 8, 0x90),
180	F7188X_GPIO_BANK(70, 8, 0x80),
181};
182
183static struct f7188x_gpio_bank f71882_gpio_bank[] = {
184	F7188X_GPIO_BANK(0, 8, 0xF0),
185	F7188X_GPIO_BANK(10, 8, 0xE0),
186	F7188X_GPIO_BANK(20, 8, 0xD0),
187	F7188X_GPIO_BANK(30, 4, 0xC0),
188	F7188X_GPIO_BANK(40, 4, 0xB0),
189};
190
191static struct f7188x_gpio_bank f71889a_gpio_bank[] = {
192	F7188X_GPIO_BANK(0, 7, 0xF0),
193	F7188X_GPIO_BANK(10, 7, 0xE0),
194	F7188X_GPIO_BANK(20, 8, 0xD0),
195	F7188X_GPIO_BANK(30, 8, 0xC0),
196	F7188X_GPIO_BANK(40, 8, 0xB0),
197	F7188X_GPIO_BANK(50, 5, 0xA0),
198	F7188X_GPIO_BANK(60, 8, 0x90),
199	F7188X_GPIO_BANK(70, 8, 0x80),
200};
201
202static struct f7188x_gpio_bank f71889_gpio_bank[] = {
203	F7188X_GPIO_BANK(0, 7, 0xF0),
204	F7188X_GPIO_BANK(10, 7, 0xE0),
205	F7188X_GPIO_BANK(20, 8, 0xD0),
206	F7188X_GPIO_BANK(30, 8, 0xC0),
207	F7188X_GPIO_BANK(40, 8, 0xB0),
208	F7188X_GPIO_BANK(50, 5, 0xA0),
209	F7188X_GPIO_BANK(60, 8, 0x90),
210	F7188X_GPIO_BANK(70, 8, 0x80),
211};
212
213static struct f7188x_gpio_bank f81866_gpio_bank[] = {
214	F7188X_GPIO_BANK(0, 8, 0xF0),
215	F7188X_GPIO_BANK(10, 8, 0xE0),
216	F7188X_GPIO_BANK(20, 8, 0xD0),
217	F7188X_GPIO_BANK(30, 8, 0xC0),
218	F7188X_GPIO_BANK(40, 8, 0xB0),
219	F7188X_GPIO_BANK(50, 8, 0xA0),
220	F7188X_GPIO_BANK(60, 8, 0x90),
221	F7188X_GPIO_BANK(70, 8, 0x80),
222	F7188X_GPIO_BANK(80, 8, 0x88),
223};
224
225
226static struct f7188x_gpio_bank f81804_gpio_bank[] = {
227	F7188X_GPIO_BANK(0, 8, 0xF0),
228	F7188X_GPIO_BANK(10, 8, 0xE0),
229	F7188X_GPIO_BANK(20, 8, 0xD0),
230	F7188X_GPIO_BANK(50, 8, 0xA0),
231	F7188X_GPIO_BANK(60, 8, 0x90),
232	F7188X_GPIO_BANK(70, 8, 0x80),
233	F7188X_GPIO_BANK(90, 8, 0x98),
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
234};
235
236
237static int f7188x_gpio_get_direction(struct gpio_chip *chip, unsigned offset)
238{
239	int err;
240	struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
241	struct f7188x_sio *sio = bank->data->sio;
242	u8 dir;
243
244	err = superio_enter(sio->addr);
245	if (err)
246		return err;
247	superio_select(sio->addr, SIO_LD_GPIO);
248
249	dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
250
251	superio_exit(sio->addr);
252
253	return !(dir & 1 << offset);
 
 
 
 
 
 
254}
255
256static int f7188x_gpio_direction_in(struct gpio_chip *chip, unsigned offset)
257{
258	int err;
259	struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
260	struct f7188x_sio *sio = bank->data->sio;
261	u8 dir;
262
263	err = superio_enter(sio->addr);
264	if (err)
265		return err;
266	superio_select(sio->addr, SIO_LD_GPIO);
 
 
267
268	dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
269	dir &= ~BIT(offset);
270	superio_outb(sio->addr, gpio_dir(bank->regbase), dir);
 
 
271
272	superio_exit(sio->addr);
273
274	return 0;
275}
276
277static int f7188x_gpio_get(struct gpio_chip *chip, unsigned offset)
278{
279	int err;
280	struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
281	struct f7188x_sio *sio = bank->data->sio;
282	u8 dir, data;
283
284	err = superio_enter(sio->addr);
285	if (err)
286		return err;
287	superio_select(sio->addr, SIO_LD_GPIO);
288
289	dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
290	dir = !!(dir & BIT(offset));
291	if (dir)
292		data = superio_inb(sio->addr, gpio_data_out(bank->regbase));
293	else
294		data = superio_inb(sio->addr, gpio_data_in(bank->regbase));
295
296	superio_exit(sio->addr);
297
298	return !!(data & BIT(offset));
299}
300
301static int f7188x_gpio_direction_out(struct gpio_chip *chip,
302				     unsigned offset, int value)
303{
304	int err;
305	struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
306	struct f7188x_sio *sio = bank->data->sio;
307	u8 dir, data_out;
308
309	err = superio_enter(sio->addr);
310	if (err)
311		return err;
312	superio_select(sio->addr, SIO_LD_GPIO);
313
314	data_out = superio_inb(sio->addr, gpio_data_out(bank->regbase));
315	if (value)
316		data_out |= BIT(offset);
317	else
318		data_out &= ~BIT(offset);
319	superio_outb(sio->addr, gpio_data_out(bank->regbase), data_out);
320
321	dir = superio_inb(sio->addr, gpio_dir(bank->regbase));
322	dir |= BIT(offset);
323	superio_outb(sio->addr, gpio_dir(bank->regbase), dir);
 
 
 
324
325	superio_exit(sio->addr);
326
327	return 0;
328}
329
330static void f7188x_gpio_set(struct gpio_chip *chip, unsigned offset, int value)
331{
332	int err;
333	struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
334	struct f7188x_sio *sio = bank->data->sio;
335	u8 data_out;
336
337	err = superio_enter(sio->addr);
338	if (err)
339		return;
340	superio_select(sio->addr, SIO_LD_GPIO);
341
342	data_out = superio_inb(sio->addr, gpio_data_out(bank->regbase));
343	if (value)
344		data_out |= BIT(offset);
345	else
346		data_out &= ~BIT(offset);
347	superio_outb(sio->addr, gpio_data_out(bank->regbase), data_out);
348
349	superio_exit(sio->addr);
350}
351
352static int f7188x_gpio_set_config(struct gpio_chip *chip, unsigned offset,
353				  unsigned long config)
354{
355	int err;
356	enum pin_config_param param = pinconf_to_config_param(config);
357	struct f7188x_gpio_bank *bank = gpiochip_get_data(chip);
358	struct f7188x_sio *sio = bank->data->sio;
359	u8 data;
360
361	if (param != PIN_CONFIG_DRIVE_OPEN_DRAIN &&
362	    param != PIN_CONFIG_DRIVE_PUSH_PULL)
363		return -ENOTSUPP;
364
365	err = superio_enter(sio->addr);
366	if (err)
367		return err;
368	superio_select(sio->addr, SIO_LD_GPIO);
369
370	data = superio_inb(sio->addr, gpio_out_mode(bank->regbase));
371	if (param == PIN_CONFIG_DRIVE_OPEN_DRAIN)
372		data &= ~BIT(offset);
373	else
374		data |= BIT(offset);
375	superio_outb(sio->addr, gpio_out_mode(bank->regbase), data);
376
377	superio_exit(sio->addr);
378	return 0;
379}
380
381/*
382 * Platform device and driver.
383 */
384
385static int f7188x_gpio_probe(struct platform_device *pdev)
386{
387	int err;
388	int i;
389	struct f7188x_sio *sio = dev_get_platdata(&pdev->dev);
390	struct f7188x_gpio_data *data;
391
392	data = devm_kzalloc(&pdev->dev, sizeof(*data), GFP_KERNEL);
393	if (!data)
394		return -ENOMEM;
395
396	switch (sio->type) {
397	case f71869:
398		data->nr_bank = ARRAY_SIZE(f71869_gpio_bank);
399		data->bank = f71869_gpio_bank;
400		break;
401	case f71869a:
402		data->nr_bank = ARRAY_SIZE(f71869a_gpio_bank);
403		data->bank = f71869a_gpio_bank;
404		break;
405	case f71882fg:
406		data->nr_bank = ARRAY_SIZE(f71882_gpio_bank);
407		data->bank = f71882_gpio_bank;
408		break;
409	case f71889a:
410		data->nr_bank = ARRAY_SIZE(f71889a_gpio_bank);
411		data->bank = f71889a_gpio_bank;
412		break;
413	case f71889f:
414		data->nr_bank = ARRAY_SIZE(f71889_gpio_bank);
415		data->bank = f71889_gpio_bank;
416		break;
417	case f81866:
418		data->nr_bank = ARRAY_SIZE(f81866_gpio_bank);
419		data->bank = f81866_gpio_bank;
420		break;
421	case  f81804:
422		data->nr_bank = ARRAY_SIZE(f81804_gpio_bank);
423		data->bank = f81804_gpio_bank;
424		break;
 
 
 
 
 
 
 
 
425	default:
426		return -ENODEV;
427	}
428	data->sio = sio;
429
430	platform_set_drvdata(pdev, data);
431
432	/* For each GPIO bank, register a GPIO chip. */
433	for (i = 0; i < data->nr_bank; i++) {
434		struct f7188x_gpio_bank *bank = &data->bank[i];
435
436		bank->chip.parent = &pdev->dev;
437		bank->data = data;
438
439		err = devm_gpiochip_add_data(&pdev->dev, &bank->chip, bank);
440		if (err) {
441			dev_err(&pdev->dev,
442				"Failed to register gpiochip %d: %d\n",
443				i, err);
444			return err;
445		}
446	}
447
448	return 0;
449}
450
451static int __init f7188x_find(int addr, struct f7188x_sio *sio)
452{
453	int err;
454	u16 devid;
 
455
456	err = superio_enter(addr);
457	if (err)
458		return err;
459
460	err = -ENODEV;
461	devid = superio_inw(addr, SIO_MANID);
462	if (devid != SIO_FINTEK_ID) {
463		pr_debug(DRVNAME ": Not a Fintek device at 0x%08x\n", addr);
464		goto err;
465	}
466
 
467	devid = superio_inw(addr, SIO_DEVID);
468	switch (devid) {
469	case SIO_F71869_ID:
470		sio->type = f71869;
471		break;
472	case SIO_F71869A_ID:
473		sio->type = f71869a;
474		break;
475	case SIO_F71882_ID:
476		sio->type = f71882fg;
477		break;
478	case SIO_F71889A_ID:
479		sio->type = f71889a;
480		break;
481	case SIO_F71889_ID:
482		sio->type = f71889f;
483		break;
484	case SIO_F81866_ID:
485		sio->type = f81866;
486		break;
487	case SIO_F81804_ID:
488		sio->type = f81804;
489		break;
 
 
 
 
 
 
 
490	default:
491		pr_info(DRVNAME ": Unsupported Fintek device 0x%04x\n", devid);
492		goto err;
493	}
 
 
 
 
 
 
 
 
 
 
494	sio->addr = addr;
495	err = 0;
496
497	pr_info(DRVNAME ": Found %s at %#x, revision %d\n",
498		f7188x_names[sio->type],
499		(unsigned int) addr,
500		(int) superio_inb(addr, SIO_DEVREV));
501
502err:
503	superio_exit(addr);
504	return err;
505}
506
507static struct platform_device *f7188x_gpio_pdev;
508
509static int __init
510f7188x_gpio_device_add(const struct f7188x_sio *sio)
511{
512	int err;
513
514	f7188x_gpio_pdev = platform_device_alloc(DRVNAME, -1);
515	if (!f7188x_gpio_pdev)
516		return -ENOMEM;
517
518	err = platform_device_add_data(f7188x_gpio_pdev,
519				       sio, sizeof(*sio));
520	if (err) {
521		pr_err(DRVNAME "Platform data allocation failed\n");
522		goto err;
523	}
524
525	err = platform_device_add(f7188x_gpio_pdev);
526	if (err) {
527		pr_err(DRVNAME "Device addition failed\n");
528		goto err;
529	}
530
531	return 0;
532
533err:
534	platform_device_put(f7188x_gpio_pdev);
535
536	return err;
537}
538
539/*
540 * Try to match a supported Fintek device by reading the (hard-wired)
541 * configuration I/O ports. If available, then register both the platform
542 * device and driver to support the GPIOs.
543 */
544
545static struct platform_driver f7188x_gpio_driver = {
546	.driver = {
547		.name	= DRVNAME,
548	},
549	.probe		= f7188x_gpio_probe,
550};
551
552static int __init f7188x_gpio_init(void)
553{
554	int err;
555	struct f7188x_sio sio;
556
557	if (f7188x_find(0x2e, &sio) &&
558	    f7188x_find(0x4e, &sio))
559		return -ENODEV;
560
561	err = platform_driver_register(&f7188x_gpio_driver);
562	if (!err) {
563		err = f7188x_gpio_device_add(&sio);
564		if (err)
565			platform_driver_unregister(&f7188x_gpio_driver);
566	}
567
568	return err;
569}
570subsys_initcall(f7188x_gpio_init);
571
572static void __exit f7188x_gpio_exit(void)
573{
574	platform_device_unregister(f7188x_gpio_pdev);
575	platform_driver_unregister(&f7188x_gpio_driver);
576}
577module_exit(f7188x_gpio_exit);
578
579MODULE_DESCRIPTION("GPIO driver for Super-I/O chips F71869, F71869A, F71882FG, F71889A, F71889F and F81866");
580MODULE_AUTHOR("Simon Guinot <simon.guinot@sequanux.org>");
581MODULE_LICENSE("GPL");