2 * Nano River Technologies viperboard GPIO lib driver
4 * (C) 2012 by Lemonage GmbH
5 * Author: Lars Poeschel <poeschel@lemonage.de>
8 * This program is free software; you can redistribute it and/or modify it
9 * under the terms of the GNU General Public License as published by the
10 * Free Software Foundation; either version 2 of the License, or (at your
11 * option) any later version.
15 #include <linux/kernel.h>
16 #include <linux/errno.h>
17 #include <linux/module.h>
18 #include <linux/slab.h>
19 #include <linux/types.h>
20 #include <linux/mutex.h>
21 #include <linux/platform_device.h>
23 #include <linux/usb.h>
24 #include <linux/gpio.h>
26 #include <linux/mfd/viperboard.h>
28 #define VPRBRD_GPIOA_CLK_1MHZ 0
29 #define VPRBRD_GPIOA_CLK_100KHZ 1
30 #define VPRBRD_GPIOA_CLK_10KHZ 2
31 #define VPRBRD_GPIOA_CLK_1KHZ 3
32 #define VPRBRD_GPIOA_CLK_100HZ 4
33 #define VPRBRD_GPIOA_CLK_10HZ 5
35 #define VPRBRD_GPIOA_FREQ_DEFAULT 1000
37 #define VPRBRD_GPIOA_CMD_CONT 0x00
38 #define VPRBRD_GPIOA_CMD_PULSE 0x01
39 #define VPRBRD_GPIOA_CMD_PWM 0x02
40 #define VPRBRD_GPIOA_CMD_SETOUT 0x03
41 #define VPRBRD_GPIOA_CMD_SETIN 0x04
42 #define VPRBRD_GPIOA_CMD_SETINT 0x05
43 #define VPRBRD_GPIOA_CMD_GETIN 0x06
45 #define VPRBRD_GPIOB_CMD_SETDIR 0x00
46 #define VPRBRD_GPIOB_CMD_SETVAL 0x01
48 struct vprbrd_gpioa_msg {
62 struct vprbrd_gpiob_msg {
69 struct gpio_chip gpioa; /* gpio a related things */
72 struct gpio_chip gpiob; /* gpio b related things */
78 /* gpioa sampling clock module parameter */
79 static unsigned char gpioa_clk;
80 static unsigned int gpioa_freq = VPRBRD_GPIOA_FREQ_DEFAULT;
81 module_param(gpioa_freq, uint, 0);
82 MODULE_PARM_DESC(gpioa_freq,
83 "gpio-a sampling freq in Hz (default is 1000Hz) valid values: 10, 100, 1000, 10000, 100000, 1000000");
85 /* ----- begin of gipo a chip -------------------------------------------- */
87 static int vprbrd_gpioa_get(struct gpio_chip *chip,
90 int ret, answer, error = 0;
91 struct vprbrd_gpio *gpio = gpiochip_get_data(chip);
92 struct vprbrd *vb = gpio->vb;
93 struct vprbrd_gpioa_msg *gamsg = (struct vprbrd_gpioa_msg *)vb->buf;
95 /* if io is set to output, just return the saved value */
96 if (gpio->gpioa_out & (1 << offset))
97 return !!(gpio->gpioa_val & (1 << offset));
99 mutex_lock(&vb->lock);
101 gamsg->cmd = VPRBRD_GPIOA_CMD_GETIN;
103 gamsg->offset = offset;
106 gamsg->invert = 0x00;
107 gamsg->pwmlevel = 0x00;
108 gamsg->outval = 0x00;
109 gamsg->risefall = 0x00;
110 gamsg->answer = 0x00;
111 gamsg->__fill = 0x00;
113 ret = usb_control_msg(vb->usb_dev, usb_sndctrlpipe(vb->usb_dev, 0),
114 VPRBRD_USB_REQUEST_GPIOA, VPRBRD_USB_TYPE_OUT, 0x0000,
115 0x0000, gamsg, sizeof(struct vprbrd_gpioa_msg),
116 VPRBRD_USB_TIMEOUT_MS);
117 if (ret != sizeof(struct vprbrd_gpioa_msg))
120 ret = usb_control_msg(vb->usb_dev, usb_rcvctrlpipe(vb->usb_dev, 0),
121 VPRBRD_USB_REQUEST_GPIOA, VPRBRD_USB_TYPE_IN, 0x0000,
122 0x0000, gamsg, sizeof(struct vprbrd_gpioa_msg),
123 VPRBRD_USB_TIMEOUT_MS);
124 answer = gamsg->answer & 0x01;
126 mutex_unlock(&vb->lock);
128 if (ret != sizeof(struct vprbrd_gpioa_msg))
137 static void vprbrd_gpioa_set(struct gpio_chip *chip,
138 unsigned offset, int value)
141 struct vprbrd_gpio *gpio = gpiochip_get_data(chip);
142 struct vprbrd *vb = gpio->vb;
143 struct vprbrd_gpioa_msg *gamsg = (struct vprbrd_gpioa_msg *)vb->buf;
145 if (gpio->gpioa_out & (1 << offset)) {
147 gpio->gpioa_val |= (1 << offset);
149 gpio->gpioa_val &= ~(1 << offset);
151 mutex_lock(&vb->lock);
153 gamsg->cmd = VPRBRD_GPIOA_CMD_SETOUT;
155 gamsg->offset = offset;
158 gamsg->invert = 0x00;
159 gamsg->pwmlevel = 0x00;
160 gamsg->outval = value;
161 gamsg->risefall = 0x00;
162 gamsg->answer = 0x00;
163 gamsg->__fill = 0x00;
165 ret = usb_control_msg(vb->usb_dev,
166 usb_sndctrlpipe(vb->usb_dev, 0),
167 VPRBRD_USB_REQUEST_GPIOA, VPRBRD_USB_TYPE_OUT,
168 0x0000, 0x0000, gamsg,
169 sizeof(struct vprbrd_gpioa_msg), VPRBRD_USB_TIMEOUT_MS);
171 mutex_unlock(&vb->lock);
173 if (ret != sizeof(struct vprbrd_gpioa_msg))
174 dev_err(chip->parent, "usb error setting pin value\n");
178 static int vprbrd_gpioa_direction_input(struct gpio_chip *chip,
182 struct vprbrd_gpio *gpio = gpiochip_get_data(chip);
183 struct vprbrd *vb = gpio->vb;
184 struct vprbrd_gpioa_msg *gamsg = (struct vprbrd_gpioa_msg *)vb->buf;
186 gpio->gpioa_out &= ~(1 << offset);
188 mutex_lock(&vb->lock);
190 gamsg->cmd = VPRBRD_GPIOA_CMD_SETIN;
191 gamsg->clk = gpioa_clk;
192 gamsg->offset = offset;
195 gamsg->invert = 0x00;
196 gamsg->pwmlevel = 0x00;
197 gamsg->outval = 0x00;
198 gamsg->risefall = 0x00;
199 gamsg->answer = 0x00;
200 gamsg->__fill = 0x00;
202 ret = usb_control_msg(vb->usb_dev, usb_sndctrlpipe(vb->usb_dev, 0),
203 VPRBRD_USB_REQUEST_GPIOA, VPRBRD_USB_TYPE_OUT, 0x0000,
204 0x0000, gamsg, sizeof(struct vprbrd_gpioa_msg),
205 VPRBRD_USB_TIMEOUT_MS);
207 mutex_unlock(&vb->lock);
209 if (ret != sizeof(struct vprbrd_gpioa_msg))
215 static int vprbrd_gpioa_direction_output(struct gpio_chip *chip,
216 unsigned offset, int value)
219 struct vprbrd_gpio *gpio = gpiochip_get_data(chip);
220 struct vprbrd *vb = gpio->vb;
221 struct vprbrd_gpioa_msg *gamsg = (struct vprbrd_gpioa_msg *)vb->buf;
223 gpio->gpioa_out |= (1 << offset);
225 gpio->gpioa_val |= (1 << offset);
227 gpio->gpioa_val &= ~(1 << offset);
229 mutex_lock(&vb->lock);
231 gamsg->cmd = VPRBRD_GPIOA_CMD_SETOUT;
233 gamsg->offset = offset;
236 gamsg->invert = 0x00;
237 gamsg->pwmlevel = 0x00;
238 gamsg->outval = value;
239 gamsg->risefall = 0x00;
240 gamsg->answer = 0x00;
241 gamsg->__fill = 0x00;
243 ret = usb_control_msg(vb->usb_dev, usb_sndctrlpipe(vb->usb_dev, 0),
244 VPRBRD_USB_REQUEST_GPIOA, VPRBRD_USB_TYPE_OUT, 0x0000,
245 0x0000, gamsg, sizeof(struct vprbrd_gpioa_msg),
246 VPRBRD_USB_TIMEOUT_MS);
248 mutex_unlock(&vb->lock);
250 if (ret != sizeof(struct vprbrd_gpioa_msg))
256 /* ----- end of gpio a chip ---------------------------------------------- */
258 /* ----- begin of gipo b chip -------------------------------------------- */
260 static int vprbrd_gpiob_setdir(struct vprbrd *vb, unsigned offset,
263 struct vprbrd_gpiob_msg *gbmsg = (struct vprbrd_gpiob_msg *)vb->buf;
266 gbmsg->cmd = VPRBRD_GPIOB_CMD_SETDIR;
267 gbmsg->val = cpu_to_be16(dir << offset);
268 gbmsg->mask = cpu_to_be16(0x0001 << offset);
270 ret = usb_control_msg(vb->usb_dev, usb_sndctrlpipe(vb->usb_dev, 0),
271 VPRBRD_USB_REQUEST_GPIOB, VPRBRD_USB_TYPE_OUT, 0x0000,
272 0x0000, gbmsg, sizeof(struct vprbrd_gpiob_msg),
273 VPRBRD_USB_TIMEOUT_MS);
275 if (ret != sizeof(struct vprbrd_gpiob_msg))
281 static int vprbrd_gpiob_get(struct gpio_chip *chip,
286 struct vprbrd_gpio *gpio = gpiochip_get_data(chip);
287 struct vprbrd *vb = gpio->vb;
288 struct vprbrd_gpiob_msg *gbmsg = (struct vprbrd_gpiob_msg *)vb->buf;
290 /* if io is set to output, just return the saved value */
291 if (gpio->gpiob_out & (1 << offset))
292 return gpio->gpiob_val & (1 << offset);
294 mutex_lock(&vb->lock);
296 ret = usb_control_msg(vb->usb_dev, usb_rcvctrlpipe(vb->usb_dev, 0),
297 VPRBRD_USB_REQUEST_GPIOB, VPRBRD_USB_TYPE_IN, 0x0000,
298 0x0000, gbmsg, sizeof(struct vprbrd_gpiob_msg),
299 VPRBRD_USB_TIMEOUT_MS);
302 mutex_unlock(&vb->lock);
304 if (ret != sizeof(struct vprbrd_gpiob_msg))
307 /* cache the read values */
308 gpio->gpiob_val = be16_to_cpu(val);
310 return (gpio->gpiob_val >> offset) & 0x1;
313 static void vprbrd_gpiob_set(struct gpio_chip *chip,
314 unsigned offset, int value)
317 struct vprbrd_gpio *gpio = gpiochip_get_data(chip);
318 struct vprbrd *vb = gpio->vb;
319 struct vprbrd_gpiob_msg *gbmsg = (struct vprbrd_gpiob_msg *)vb->buf;
321 if (gpio->gpiob_out & (1 << offset)) {
323 gpio->gpiob_val |= (1 << offset);
325 gpio->gpiob_val &= ~(1 << offset);
327 mutex_lock(&vb->lock);
329 gbmsg->cmd = VPRBRD_GPIOB_CMD_SETVAL;
330 gbmsg->val = cpu_to_be16(value << offset);
331 gbmsg->mask = cpu_to_be16(0x0001 << offset);
333 ret = usb_control_msg(vb->usb_dev,
334 usb_sndctrlpipe(vb->usb_dev, 0),
335 VPRBRD_USB_REQUEST_GPIOB, VPRBRD_USB_TYPE_OUT,
336 0x0000, 0x0000, gbmsg,
337 sizeof(struct vprbrd_gpiob_msg), VPRBRD_USB_TIMEOUT_MS);
339 mutex_unlock(&vb->lock);
341 if (ret != sizeof(struct vprbrd_gpiob_msg))
342 dev_err(chip->parent, "usb error setting pin value\n");
346 static int vprbrd_gpiob_direction_input(struct gpio_chip *chip,
350 struct vprbrd_gpio *gpio = gpiochip_get_data(chip);
351 struct vprbrd *vb = gpio->vb;
353 gpio->gpiob_out &= ~(1 << offset);
355 mutex_lock(&vb->lock);
357 ret = vprbrd_gpiob_setdir(vb, offset, 0);
359 mutex_unlock(&vb->lock);
362 dev_err(chip->parent, "usb error setting pin to input\n");
367 static int vprbrd_gpiob_direction_output(struct gpio_chip *chip,
368 unsigned offset, int value)
371 struct vprbrd_gpio *gpio = gpiochip_get_data(chip);
372 struct vprbrd *vb = gpio->vb;
374 gpio->gpiob_out |= (1 << offset);
376 mutex_lock(&vb->lock);
378 ret = vprbrd_gpiob_setdir(vb, offset, 1);
380 dev_err(chip->parent, "usb error setting pin to output\n");
382 mutex_unlock(&vb->lock);
384 vprbrd_gpiob_set(chip, offset, value);
389 /* ----- end of gpio b chip ---------------------------------------------- */
391 static int vprbrd_gpio_probe(struct platform_device *pdev)
393 struct vprbrd *vb = dev_get_drvdata(pdev->dev.parent);
394 struct vprbrd_gpio *vb_gpio;
397 vb_gpio = devm_kzalloc(&pdev->dev, sizeof(*vb_gpio), GFP_KERNEL);
402 /* registering gpio a */
403 vb_gpio->gpioa.label = "viperboard gpio a";
404 vb_gpio->gpioa.parent = &pdev->dev;
405 vb_gpio->gpioa.owner = THIS_MODULE;
406 vb_gpio->gpioa.base = -1;
407 vb_gpio->gpioa.ngpio = 16;
408 vb_gpio->gpioa.can_sleep = true;
409 vb_gpio->gpioa.set = vprbrd_gpioa_set;
410 vb_gpio->gpioa.get = vprbrd_gpioa_get;
411 vb_gpio->gpioa.direction_input = vprbrd_gpioa_direction_input;
412 vb_gpio->gpioa.direction_output = vprbrd_gpioa_direction_output;
413 ret = devm_gpiochip_add_data(&pdev->dev, &vb_gpio->gpioa, vb_gpio);
415 dev_err(vb_gpio->gpioa.parent, "could not add gpio a");
419 /* registering gpio b */
420 vb_gpio->gpiob.label = "viperboard gpio b";
421 vb_gpio->gpiob.parent = &pdev->dev;
422 vb_gpio->gpiob.owner = THIS_MODULE;
423 vb_gpio->gpiob.base = -1;
424 vb_gpio->gpiob.ngpio = 16;
425 vb_gpio->gpiob.can_sleep = true;
426 vb_gpio->gpiob.set = vprbrd_gpiob_set;
427 vb_gpio->gpiob.get = vprbrd_gpiob_get;
428 vb_gpio->gpiob.direction_input = vprbrd_gpiob_direction_input;
429 vb_gpio->gpiob.direction_output = vprbrd_gpiob_direction_output;
430 ret = devm_gpiochip_add_data(&pdev->dev, &vb_gpio->gpiob, vb_gpio);
432 dev_err(vb_gpio->gpiob.parent, "could not add gpio b");
436 platform_set_drvdata(pdev, vb_gpio);
441 static struct platform_driver vprbrd_gpio_driver = {
442 .driver.name = "viperboard-gpio",
443 .probe = vprbrd_gpio_probe,
446 static int __init vprbrd_gpio_init(void)
448 switch (gpioa_freq) {
450 gpioa_clk = VPRBRD_GPIOA_CLK_1MHZ;
453 gpioa_clk = VPRBRD_GPIOA_CLK_100KHZ;
456 gpioa_clk = VPRBRD_GPIOA_CLK_10KHZ;
459 gpioa_clk = VPRBRD_GPIOA_CLK_1KHZ;
462 gpioa_clk = VPRBRD_GPIOA_CLK_100HZ;
465 gpioa_clk = VPRBRD_GPIOA_CLK_10HZ;
468 pr_warn("invalid gpioa_freq (%d)\n", gpioa_freq);
469 gpioa_clk = VPRBRD_GPIOA_CLK_1KHZ;
472 return platform_driver_register(&vprbrd_gpio_driver);
474 subsys_initcall(vprbrd_gpio_init);
476 static void __exit vprbrd_gpio_exit(void)
478 platform_driver_unregister(&vprbrd_gpio_driver);
480 module_exit(vprbrd_gpio_exit);
482 MODULE_AUTHOR("Lars Poeschel <poeschel@lemonage.de>");
483 MODULE_DESCRIPTION("GPIO driver for Nano River Techs Viperboard");
484 MODULE_LICENSE("GPL");
485 MODULE_ALIAS("platform:viperboard-gpio");