20 #include <linux/kernel.h>
21 #include <linux/compiler.h>
29 #include <linux/slab.h>
30 #include <linux/module.h>
32 #define GEF_GPIO_DIRECT 0x00
33 #define GEF_GPIO_IN 0x04
34 #define GEF_GPIO_OUT 0x08
35 #define GEF_GPIO_TRIG 0x0C
36 #define GEF_GPIO_POLAR_A 0x10
37 #define GEF_GPIO_POLAR_B 0x14
38 #define GEF_GPIO_INT_STAT 0x18
39 #define GEF_GPIO_OVERRUN 0x1C
40 #define GEF_GPIO_MODE 0x20
49 data = data | (0x1 <<
offset);
51 data = data & ~(0x1 <<
offset);
57 static int gef_gpio_dir_in(
struct gpio_chip *
chip,
unsigned offset)
60 struct of_mm_gpio_chip *mmchip = to_of_mm_gpio_chip(chip);
63 data = data | (0x1 <<
offset);
69 static int gef_gpio_dir_out(
struct gpio_chip *
chip,
unsigned offset,
int value)
72 struct of_mm_gpio_chip *mmchip = to_of_mm_gpio_chip(chip);
75 _gef_gpio_set(mmchip->regs +
GEF_GPIO_OUT, offset, value);
78 data = data & ~(0x1 <<
offset);
84 static int gef_gpio_get(
struct gpio_chip *
chip,
unsigned offset)
88 struct of_mm_gpio_chip *mmchip = to_of_mm_gpio_chip(chip);
91 state = (
int)((data >> offset) & 0x1);
96 static void gef_gpio_set(
struct gpio_chip *chip,
unsigned offset,
int value)
98 struct of_mm_gpio_chip *mmchip = to_of_mm_gpio_chip(chip);
100 _gef_gpio_set(mmchip->regs +
GEF_GPIO_OUT, offset, value);
103 static int __init gef_gpio_init(
void)
107 struct of_mm_gpio_chip *gef_gpio_chip;
109 for_each_compatible_node(np,
NULL,
"gef,sbc610-gpio") {
114 gef_gpio_chip = kzalloc(
sizeof(*gef_gpio_chip),
GFP_KERNEL);
115 if (!gef_gpio_chip) {
116 pr_err(
"%s: Unable to allocate structure\n",
122 gef_gpio_chip->gc.of_gpio_n_cells = 2;
123 gef_gpio_chip->gc.ngpio = 19;
124 gef_gpio_chip->gc.direction_input = gef_gpio_dir_in;
125 gef_gpio_chip->gc.direction_output = gef_gpio_dir_out;
126 gef_gpio_chip->gc.get = gef_gpio_get;
127 gef_gpio_chip->gc.set = gef_gpio_set;
132 kfree(gef_gpio_chip);
137 for_each_compatible_node(np,
NULL,
"gef,sbc310-gpio") {
142 gef_gpio_chip = kzalloc(
sizeof(*gef_gpio_chip),
GFP_KERNEL);
143 if (!gef_gpio_chip) {
144 pr_err(
"%s: Unable to allocate structure\n",
150 gef_gpio_chip->gc.of_gpio_n_cells = 2;
151 gef_gpio_chip->gc.ngpio = 6;
152 gef_gpio_chip->gc.direction_input = gef_gpio_dir_in;
153 gef_gpio_chip->gc.direction_output = gef_gpio_dir_out;
154 gef_gpio_chip->gc.get = gef_gpio_get;
155 gef_gpio_chip->gc.set = gef_gpio_set;
160 kfree(gef_gpio_chip);
165 for_each_compatible_node(np,
NULL,
"ge,imp3a-gpio") {
170 gef_gpio_chip = kzalloc(
sizeof(*gef_gpio_chip),
GFP_KERNEL);
171 if (!gef_gpio_chip) {
172 pr_err(
"%s: Unable to allocate structure\n",
178 gef_gpio_chip->gc.of_gpio_n_cells = 2;
179 gef_gpio_chip->gc.ngpio = 16;
180 gef_gpio_chip->gc.direction_input = gef_gpio_dir_in;
181 gef_gpio_chip->gc.direction_output = gef_gpio_dir_out;
182 gef_gpio_chip->gc.get = gef_gpio_get;
183 gef_gpio_chip->gc.set = gef_gpio_set;
188 kfree(gef_gpio_chip);