Drivers: hv: vmbus: Treat Fibre Channel devices as performance critical
[linux/fpc-iii.git] / drivers / gpio / gpio-74xx-mmio.c
blob6b186829087c4b3f4746ebebb1e327df58486d15
1 /*
2 * 74xx MMIO GPIO driver
4 * Copyright (C) 2014 Alexander Shiyan <shc_work@mail.ru>
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.
12 #include <linux/err.h>
13 #include <linux/gpio.h>
14 #include <linux/module.h>
15 #include <linux/of_device.h>
16 #include <linux/basic_mmio_gpio.h>
17 #include <linux/platform_device.h>
19 #define MMIO_74XX_DIR_IN (0 << 8)
20 #define MMIO_74XX_DIR_OUT (1 << 8)
21 #define MMIO_74XX_BIT_CNT(x) ((x) & 0xff)
23 struct mmio_74xx_gpio_priv {
24 struct bgpio_chip bgc;
25 unsigned flags;
28 static const struct of_device_id mmio_74xx_gpio_ids[] = {
30 .compatible = "ti,741g125",
31 .data = (const void *)(MMIO_74XX_DIR_IN | 1),
34 .compatible = "ti,742g125",
35 .data = (const void *)(MMIO_74XX_DIR_IN | 2),
38 .compatible = "ti,74125",
39 .data = (const void *)(MMIO_74XX_DIR_IN | 4),
42 .compatible = "ti,74365",
43 .data = (const void *)(MMIO_74XX_DIR_IN | 6),
46 .compatible = "ti,74244",
47 .data = (const void *)(MMIO_74XX_DIR_IN | 8),
50 .compatible = "ti,741624",
51 .data = (const void *)(MMIO_74XX_DIR_IN | 16),
54 .compatible = "ti,741g74",
55 .data = (const void *)(MMIO_74XX_DIR_OUT | 1),
58 .compatible = "ti,7474",
59 .data = (const void *)(MMIO_74XX_DIR_OUT | 2),
62 .compatible = "ti,74175",
63 .data = (const void *)(MMIO_74XX_DIR_OUT | 4),
66 .compatible = "ti,74174",
67 .data = (const void *)(MMIO_74XX_DIR_OUT | 6),
70 .compatible = "ti,74273",
71 .data = (const void *)(MMIO_74XX_DIR_OUT | 8),
74 .compatible = "ti,7416374",
75 .data = (const void *)(MMIO_74XX_DIR_OUT | 16),
77 { }
79 MODULE_DEVICE_TABLE(of, mmio_74xx_gpio_ids);
81 static inline struct mmio_74xx_gpio_priv *to_74xx_gpio(struct gpio_chip *gc)
83 struct bgpio_chip *bgc = to_bgpio_chip(gc);
85 return container_of(bgc, struct mmio_74xx_gpio_priv, bgc);
88 static int mmio_74xx_get_direction(struct gpio_chip *gc, unsigned offset)
90 struct mmio_74xx_gpio_priv *priv = to_74xx_gpio(gc);
92 return (priv->flags & MMIO_74XX_DIR_OUT) ? GPIOF_DIR_OUT : GPIOF_DIR_IN;
95 static int mmio_74xx_dir_in(struct gpio_chip *gc, unsigned int gpio)
97 struct mmio_74xx_gpio_priv *priv = to_74xx_gpio(gc);
99 return (priv->flags & MMIO_74XX_DIR_OUT) ? -ENOTSUPP : 0;
102 static int mmio_74xx_dir_out(struct gpio_chip *gc, unsigned int gpio, int val)
104 struct mmio_74xx_gpio_priv *priv = to_74xx_gpio(gc);
106 if (priv->flags & MMIO_74XX_DIR_OUT) {
107 gc->set(gc, gpio, val);
108 return 0;
111 return -ENOTSUPP;
114 static int mmio_74xx_gpio_probe(struct platform_device *pdev)
116 const struct of_device_id *of_id;
117 struct mmio_74xx_gpio_priv *priv;
118 struct resource *res;
119 void __iomem *dat;
120 int err;
122 of_id = of_match_device(mmio_74xx_gpio_ids, &pdev->dev);
123 if (!of_id)
124 return -ENODEV;
126 priv = devm_kzalloc(&pdev->dev, sizeof(*priv), GFP_KERNEL);
127 if (!priv)
128 return -ENOMEM;
130 res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
131 dat = devm_ioremap_resource(&pdev->dev, res);
132 if (IS_ERR(dat))
133 return PTR_ERR(dat);
135 priv->flags = (uintptr_t) of_id->data;
137 err = bgpio_init(&priv->bgc, &pdev->dev,
138 DIV_ROUND_UP(MMIO_74XX_BIT_CNT(priv->flags), 8),
139 dat, NULL, NULL, NULL, NULL, 0);
140 if (err)
141 return err;
143 priv->bgc.gc.direction_input = mmio_74xx_dir_in;
144 priv->bgc.gc.direction_output = mmio_74xx_dir_out;
145 priv->bgc.gc.get_direction = mmio_74xx_get_direction;
146 priv->bgc.gc.ngpio = MMIO_74XX_BIT_CNT(priv->flags);
147 priv->bgc.gc.owner = THIS_MODULE;
149 platform_set_drvdata(pdev, priv);
151 return gpiochip_add(&priv->bgc.gc);
154 static int mmio_74xx_gpio_remove(struct platform_device *pdev)
156 struct mmio_74xx_gpio_priv *priv = platform_get_drvdata(pdev);
158 return bgpio_remove(&priv->bgc);
161 static struct platform_driver mmio_74xx_gpio_driver = {
162 .driver = {
163 .name = "74xx-mmio-gpio",
164 .of_match_table = mmio_74xx_gpio_ids,
166 .probe = mmio_74xx_gpio_probe,
167 .remove = mmio_74xx_gpio_remove,
169 module_platform_driver(mmio_74xx_gpio_driver);
171 MODULE_LICENSE("GPL");
172 MODULE_AUTHOR("Alexander Shiyan <shc_work@mail.ru>");
173 MODULE_DESCRIPTION("74xx MMIO GPIO driver");