gpio-clps711x.c 2.2 KB
Newer Older
1 2 3
/*
 *  CLPS711X GPIO driver
 *
4
 *  Copyright (C) 2012,2013 Alexander Shiyan <shc_work@mail.ru>
5 6 7 8 9 10 11
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 */

12
#include <linux/err.h>
13
#include <linux/module.h>
14
#include <linux/gpio/driver.h>
15 16
#include <linux/platform_device.h>

17
static int clps711x_gpio_probe(struct platform_device *pdev)
18
{
19
	struct device_node *np = pdev->dev.of_node;
20
	void __iomem *dat, *dir;
21
	struct gpio_chip *gc;
22
	struct resource *res;
23
	int err, id = np ? of_alias_get_id(np, "gpio") : pdev->id;
24

25 26
	if ((id < 0) || (id > 4))
		return -ENODEV;
27

28 29
	gc = devm_kzalloc(&pdev->dev, sizeof(*gc), GFP_KERNEL);
	if (!gc)
30
		return -ENOMEM;
31

32 33 34 35 36 37 38 39 40 41 42 43 44
	res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
	dat = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(dat))
		return PTR_ERR(dat);

	res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
	dir = devm_ioremap_resource(&pdev->dev, res);
	if (IS_ERR(dir))
		return PTR_ERR(dir);

	switch (id) {
	case 3:
		/* PORTD is inverted logic for direction register */
45
		err = bgpio_init(gc, &pdev->dev, 1, dat, NULL, NULL,
46 47 48
				 NULL, dir, 0);
		break;
	default:
49
		err = bgpio_init(gc, &pdev->dev, 1, dat, NULL, NULL,
50 51 52
				 dir, NULL, 0);
		break;
	}
53

54 55
	if (err)
		return err;
56

57 58 59
	switch (id) {
	case 4:
		/* PORTE is 3 lines only */
60
		gc->ngpio = 3;
61 62 63 64
		break;
	default:
		break;
	}
65

66 67 68
	gc->base = id * 8;
	gc->owner = THIS_MODULE;
	platform_set_drvdata(pdev, gc);
69

70
	return devm_gpiochip_add_data(&pdev->dev, gc, NULL);
71 72
}

73
static const struct of_device_id __maybe_unused clps711x_gpio_ids[] = {
74
	{ .compatible = "cirrus,ep7209-gpio" },
75 76 77 78
	{ }
};
MODULE_DEVICE_TABLE(of, clps711x_gpio_ids);

79 80
static struct platform_driver clps711x_gpio_driver = {
	.driver	= {
81
		.name		= "clps711x-gpio",
82
		.of_match_table	= of_match_ptr(clps711x_gpio_ids),
83 84
	},
	.probe	= clps711x_gpio_probe,
85
};
86
module_platform_driver(clps711x_gpio_driver);
87

88
MODULE_LICENSE("GPL");
89 90
MODULE_AUTHOR("Alexander Shiyan <shc_work@mail.ru>");
MODULE_DESCRIPTION("CLPS711X GPIO driver");
91
MODULE_ALIAS("platform:clps711x-gpio");