blob: c84f9551f1082b4655d8cf86007395ea4a942173 [file] [log] [blame]
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +04001/*
2 * CLPS711X GPIO driver
3 *
Alexander Shiyan55fe14a2013-04-26 19:47:28 +04004 * Copyright (C) 2012,2013 Alexander Shiyan <shc_work@mail.ru>
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +04005 *
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License as published by
8 * the Free Software Foundation; either version 2 of the License, or
9 * (at your option) any later version.
10 */
11
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040012#include <linux/err.h>
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040013#include <linux/module.h>
Linus Walleij0f4630f2015-12-04 14:02:58 +010014#include <linux/gpio/driver.h>
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040015#include <linux/platform_device.h>
16
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040017static int clps711x_gpio_probe(struct platform_device *pdev)
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040018{
Alexander Shiyana1801322013-04-26 19:47:30 +040019 struct device_node *np = pdev->dev.of_node;
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040020 void __iomem *dat, *dir;
Linus Walleij0f4630f2015-12-04 14:02:58 +010021 struct gpio_chip *gc;
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040022 struct resource *res;
Alexander Shiyana1801322013-04-26 19:47:30 +040023 int err, id = np ? of_alias_get_id(np, "gpio") : pdev->id;
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040024
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040025 if ((id < 0) || (id > 4))
26 return -ENODEV;
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040027
Linus Walleij0f4630f2015-12-04 14:02:58 +010028 gc = devm_kzalloc(&pdev->dev, sizeof(*gc), GFP_KERNEL);
29 if (!gc)
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040030 return -ENOMEM;
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040031
32 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
33 dat = devm_ioremap_resource(&pdev->dev, res);
34 if (IS_ERR(dat))
35 return PTR_ERR(dat);
36
37 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
38 dir = devm_ioremap_resource(&pdev->dev, res);
39 if (IS_ERR(dir))
40 return PTR_ERR(dir);
41
42 switch (id) {
43 case 3:
44 /* PORTD is inverted logic for direction register */
Linus Walleij0f4630f2015-12-04 14:02:58 +010045 err = bgpio_init(gc, &pdev->dev, 1, dat, NULL, NULL,
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040046 NULL, dir, 0);
47 break;
48 default:
Linus Walleij0f4630f2015-12-04 14:02:58 +010049 err = bgpio_init(gc, &pdev->dev, 1, dat, NULL, NULL,
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040050 dir, NULL, 0);
51 break;
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040052 }
53
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040054 if (err)
55 return err;
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040056
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040057 switch (id) {
58 case 4:
59 /* PORTE is 3 lines only */
Linus Walleij0f4630f2015-12-04 14:02:58 +010060 gc->ngpio = 3;
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040061 break;
62 default:
63 break;
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040064 }
65
Linus Walleij0f4630f2015-12-04 14:02:58 +010066 gc->base = id * 8;
67 gc->owner = THIS_MODULE;
68 platform_set_drvdata(pdev, gc);
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040069
Linus Walleij0f4630f2015-12-04 14:02:58 +010070 return gpiochip_add_data(gc, NULL);
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040071}
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040072
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040073static int clps711x_gpio_remove(struct platform_device *pdev)
74{
Linus Walleij0f4630f2015-12-04 14:02:58 +010075 struct gpio_chip *gc = platform_get_drvdata(pdev);
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040076
Linus Walleij0f4630f2015-12-04 14:02:58 +010077 gpiochip_remove(gc);
78 return 0;
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040079}
80
Alexander Shiyane8b49e02013-12-24 18:08:53 +040081static const struct of_device_id __maybe_unused clps711x_gpio_ids[] = {
Alexander Shiyana1801322013-04-26 19:47:30 +040082 { .compatible = "cirrus,clps711x-gpio" },
83 { }
84};
85MODULE_DEVICE_TABLE(of, clps711x_gpio_ids);
86
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040087static struct platform_driver clps711x_gpio_driver = {
88 .driver = {
Alexander Shiyana1801322013-04-26 19:47:30 +040089 .name = "clps711x-gpio",
Alexander Shiyane8b49e02013-12-24 18:08:53 +040090 .of_match_table = of_match_ptr(clps711x_gpio_ids),
Alexander Shiyan55fe14a2013-04-26 19:47:28 +040091 },
92 .probe = clps711x_gpio_probe,
93 .remove = clps711x_gpio_remove,
94};
95module_platform_driver(clps711x_gpio_driver);
96
97MODULE_LICENSE("GPL");
Alexander Shiyana3b8d4a2012-10-09 20:05:56 +040098MODULE_AUTHOR("Alexander Shiyan <shc_work@mail.ru>");
99MODULE_DESCRIPTION("CLPS711X GPIO driver");
Axel Lin21708c92014-02-04 17:39:15 +0800100MODULE_ALIAS("platform:clps711x-gpio");