2 * Artec-3 general port I/O device
4 * Copyright (c) 2007 Axis Communications AB
6 * Authors: Bjorn Wesen (initial version)
7 * Ola Knutsson (LED handling)
8 * Johan Adolfsson (read/set directions, write, port G,
10 * Ricard Wanderlof (PWM for Artpec-3)
14 #include <linux/module.h>
15 #include <linux/sched.h>
16 #include <linux/slab.h>
17 #include <linux/ioport.h>
18 #include <linux/errno.h>
19 #include <linux/kernel.h>
21 #include <linux/string.h>
22 #include <linux/poll.h>
23 #include <linux/init.h>
24 #include <linux/interrupt.h>
25 #include <linux/spinlock.h>
26 #include <linux/smp_lock.h>
28 #include <asm/etraxgpio.h>
29 #include <hwregs/reg_map.h>
30 #include <hwregs/reg_rdwr.h>
31 #include <hwregs/gio_defs.h>
32 #include <hwregs/intr_vect_defs.h>
34 #include <asm/system.h>
36 #include <mach/pinmux.h>
38 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
41 #define VIRT_I2C_ADDR 0x40
44 /* The following gio ports on ARTPEC-3 is available:
48 * each port has a rw_px_dout, r_px_din and rw_px_oe register.
51 #define GPIO_MAJOR 120 /* experimental MAJOR number */
53 #define I2C_INTERRUPT_BITS 0x300 /* i2c0_done and i2c1_done bits */
62 if (dp_cnt % 1000 == 0) \
69 static char gpio_name[] = "etrax gpio";
71 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
72 static int virtual_gpio_ioctl(struct file *file, unsigned int cmd,
75 static long gpio_ioctl(struct file *file, unsigned int cmd, unsigned long arg);
76 static ssize_t gpio_write(struct file *file, const char __user *buf,
77 size_t count, loff_t *off);
78 static int gpio_open(struct inode *inode, struct file *filp);
79 static int gpio_release(struct inode *inode, struct file *filp);
80 static unsigned int gpio_poll(struct file *filp,
81 struct poll_table_struct *wait);
83 /* private data per open() of this driver */
86 struct gpio_private *next;
87 /* The IO_CFG_WRITE_MODE_VALUE only support 8 bits: */
88 unsigned char clk_mask;
89 unsigned char data_mask;
90 unsigned char write_msb;
92 /* These fields are generic */
93 unsigned long highalarm, lowalarm;
94 wait_queue_head_t alarm_wq;
98 static void gpio_set_alarm(struct gpio_private *priv);
99 static int gpio_leds_ioctl(unsigned int cmd, unsigned long arg);
100 static int gpio_pwm_ioctl(struct gpio_private *priv, unsigned int cmd,
104 /* linked list of alarms to check for */
106 static struct gpio_private *alarmlist;
108 static int wanted_interrupts;
110 static DEFINE_SPINLOCK(gpio_lock);
112 #define NUM_PORTS (GPIO_MINOR_LAST+1)
113 #define GIO_REG_RD_ADDR(reg) \
114 (unsigned long *)(regi_gio + REG_RD_ADDR_gio_##reg)
115 #define GIO_REG_WR_ADDR(reg) \
116 (unsigned long *)(regi_gio + REG_WR_ADDR_gio_##reg)
117 static unsigned long led_dummy;
118 static unsigned long port_d_dummy; /* Only input on Artpec-3 */
119 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
120 static unsigned long port_e_dummy; /* Non existent on Artpec-3 */
121 static unsigned long virtual_dummy;
122 static unsigned long virtual_rw_pv_oe = CONFIG_ETRAX_DEF_GIO_PV_OE;
123 static unsigned short cached_virtual_gpio_read;
126 static unsigned long *data_out[NUM_PORTS] = {
127 GIO_REG_WR_ADDR(rw_pa_dout),
128 GIO_REG_WR_ADDR(rw_pb_dout),
130 GIO_REG_WR_ADDR(rw_pc_dout),
132 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
138 static unsigned long *data_in[NUM_PORTS] = {
139 GIO_REG_RD_ADDR(r_pa_din),
140 GIO_REG_RD_ADDR(r_pb_din),
142 GIO_REG_RD_ADDR(r_pc_din),
143 GIO_REG_RD_ADDR(r_pd_din),
144 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
150 static unsigned long changeable_dir[NUM_PORTS] = {
151 CONFIG_ETRAX_PA_CHANGEABLE_DIR,
152 CONFIG_ETRAX_PB_CHANGEABLE_DIR,
154 CONFIG_ETRAX_PC_CHANGEABLE_DIR,
156 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
158 CONFIG_ETRAX_PV_CHANGEABLE_DIR,
162 static unsigned long changeable_bits[NUM_PORTS] = {
163 CONFIG_ETRAX_PA_CHANGEABLE_BITS,
164 CONFIG_ETRAX_PB_CHANGEABLE_BITS,
166 CONFIG_ETRAX_PC_CHANGEABLE_BITS,
168 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
170 CONFIG_ETRAX_PV_CHANGEABLE_BITS,
174 static unsigned long *dir_oe[NUM_PORTS] = {
175 GIO_REG_WR_ADDR(rw_pa_oe),
176 GIO_REG_WR_ADDR(rw_pb_oe),
178 GIO_REG_WR_ADDR(rw_pc_oe),
180 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
186 static void gpio_set_alarm(struct gpio_private *priv)
194 spin_lock_irqsave(&gpio_lock, flags);
195 intr_cfg = REG_RD_INT(gio, regi_gio, rw_intr_cfg);
196 pins = REG_RD_INT(gio, regi_gio, rw_intr_pins);
197 mask = REG_RD_INT(gio, regi_gio, rw_intr_mask) & I2C_INTERRUPT_BITS;
199 for (bit = 0; bit < 32; bit++) {
202 if (priv->minor < GPIO_MINOR_LEDS)
203 pin += priv->minor * 4;
205 pin += (priv->minor - 1) * 4;
207 if (priv->highalarm & (1<<bit)) {
208 intr_cfg |= (regk_gio_hi << (intr * 3));
210 wanted_interrupts = mask & 0xff;
211 pins |= pin << (intr * 4);
212 } else if (priv->lowalarm & (1<<bit)) {
213 intr_cfg |= (regk_gio_lo << (intr * 3));
215 wanted_interrupts = mask & 0xff;
216 pins |= pin << (intr * 4);
220 REG_WR_INT(gio, regi_gio, rw_intr_cfg, intr_cfg);
221 REG_WR_INT(gio, regi_gio, rw_intr_pins, pins);
222 REG_WR_INT(gio, regi_gio, rw_intr_mask, mask);
224 spin_unlock_irqrestore(&gpio_lock, flags);
227 static unsigned int gpio_poll(struct file *file, struct poll_table_struct *wait)
229 unsigned int mask = 0;
230 struct gpio_private *priv = file->private_data;
234 if (priv->minor >= GPIO_MINOR_PWM0 &&
235 priv->minor <= GPIO_MINOR_LAST_PWM)
238 poll_wait(file, &priv->alarm_wq, wait);
239 if (priv->minor <= GPIO_MINOR_D) {
240 data = readl(data_in[priv->minor]);
241 REG_WR_INT(gio, regi_gio, rw_ack_intr, wanted_interrupts);
242 tmp = REG_RD_INT(gio, regi_gio, rw_intr_mask);
243 tmp &= I2C_INTERRUPT_BITS;
244 tmp |= wanted_interrupts;
245 REG_WR_INT(gio, regi_gio, rw_intr_mask, tmp);
249 if ((data & priv->highalarm) || (~data & priv->lowalarm))
250 mask = POLLIN|POLLRDNORM;
252 DP(printk(KERN_DEBUG "gpio_poll ready: mask 0x%08X\n", mask));
256 static irqreturn_t gpio_interrupt(int irq, void *dev_id)
258 reg_gio_rw_intr_mask intr_mask;
259 reg_gio_r_masked_intr masked_intr;
260 reg_gio_rw_ack_intr ack_intr;
264 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
265 unsigned char enable_gpiov_ack = 0;
268 /* Find what PA interrupts are active */
269 masked_intr = REG_RD(gio, regi_gio, r_masked_intr);
270 tmp = REG_TYPE_CONV(unsigned long, reg_gio_r_masked_intr, masked_intr);
272 /* Find those that we have enabled */
273 spin_lock_irqsave(&gpio_lock, flags);
274 tmp &= wanted_interrupts;
275 spin_unlock_irqrestore(&gpio_lock, flags);
277 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
278 /* Something changed on virtual GPIO. Interrupt is acked by
279 * reading the device.
281 if (tmp & (1 << CONFIG_ETRAX_VIRTUAL_GPIO_INTERRUPT_PA_PIN)) {
282 i2c_read(VIRT_I2C_ADDR, (void *)&cached_virtual_gpio_read,
283 sizeof(cached_virtual_gpio_read));
284 enable_gpiov_ack = 1;
289 ack_intr = REG_TYPE_CONV(reg_gio_rw_ack_intr, unsigned long, tmp);
290 REG_WR(gio, regi_gio, rw_ack_intr, ack_intr);
292 /* Disable those interrupts.. */
293 intr_mask = REG_RD(gio, regi_gio, rw_intr_mask);
294 tmp2 = REG_TYPE_CONV(unsigned long, reg_gio_rw_intr_mask, intr_mask);
296 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
297 /* Do not disable interrupt on virtual GPIO. Changes on virtual
298 * pins are only noticed by an interrupt.
300 if (enable_gpiov_ack)
301 tmp2 |= (1 << CONFIG_ETRAX_VIRTUAL_GPIO_INTERRUPT_PA_PIN);
303 intr_mask = REG_TYPE_CONV(reg_gio_rw_intr_mask, unsigned long, tmp2);
304 REG_WR(gio, regi_gio, rw_intr_mask, intr_mask);
306 return IRQ_RETVAL(tmp);
309 static void gpio_write_bit(unsigned long *port, unsigned char data, int bit,
310 unsigned char clk_mask, unsigned char data_mask)
312 unsigned long shadow = readl(port) & ~clk_mask;
313 writel(shadow, port);
317 shadow &= ~data_mask;
318 writel(shadow, port);
319 /* For FPGA: min 5.0ns (DCC) before CCLK high */
321 writel(shadow, port);
324 static void gpio_write_byte(struct gpio_private *priv, unsigned long *port,
330 for (i = 7; i >= 0; i--)
331 gpio_write_bit(port, data, i, priv->clk_mask,
334 for (i = 0; i <= 7; i++)
335 gpio_write_bit(port, data, i, priv->clk_mask,
340 static ssize_t gpio_write(struct file *file, const char __user *buf,
341 size_t count, loff_t *off)
343 struct gpio_private *priv = file->private_data;
345 ssize_t retval = count;
346 /* Only bits 0-7 may be used for write operations but allow all
347 devices except leds... */
348 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
349 if (priv->minor == GPIO_MINOR_V)
352 if (priv->minor == GPIO_MINOR_LEDS)
355 if (priv->minor >= GPIO_MINOR_PWM0 &&
356 priv->minor <= GPIO_MINOR_LAST_PWM)
359 if (!access_ok(VERIFY_READ, buf, count))
362 /* It must have been configured using the IO_CFG_WRITE_MODE */
363 /* Perhaps a better error code? */
364 if (priv->clk_mask == 0 || priv->data_mask == 0)
367 D(printk(KERN_DEBUG "gpio_write: %lu to data 0x%02X clk 0x%02X "
369 count, priv->data_mask, priv->clk_mask, priv->write_msb));
371 spin_lock_irqsave(&gpio_lock, flags);
374 gpio_write_byte(priv, data_out[priv->minor], *buf++);
376 spin_unlock_irqrestore(&gpio_lock, flags);
380 static int gpio_open(struct inode *inode, struct file *filp)
382 struct gpio_private *priv;
383 int p = iminor(inode);
385 if (p > GPIO_MINOR_LAST_PWM ||
386 (p > GPIO_MINOR_LAST && p < GPIO_MINOR_PWM0))
389 priv = kmalloc(sizeof(struct gpio_private), GFP_KERNEL);
395 memset(priv, 0, sizeof(*priv));
398 filp->private_data = priv;
400 /* initialize the io/alarm struct, not for PWM ports though */
401 if (p <= GPIO_MINOR_LAST) {
408 init_waitqueue_head(&priv->alarm_wq);
410 /* link it into our alarmlist */
411 spin_lock_irq(&gpio_lock);
412 priv->next = alarmlist;
414 spin_unlock_irq(&gpio_lock);
421 static int gpio_release(struct inode *inode, struct file *filp)
423 struct gpio_private *p;
424 struct gpio_private *todel;
425 /* local copies while updating them: */
426 unsigned long a_high, a_low;
428 /* prepare to free private structure */
429 todel = filp->private_data;
431 /* unlink from alarmlist - only for non-PWM ports though */
432 if (todel->minor <= GPIO_MINOR_LAST) {
433 spin_lock_irq(&gpio_lock);
437 alarmlist = todel->next;
439 while (p->next != todel)
441 p->next = todel->next;
444 /* Check if there are still any alarms set */
449 if (p->minor == GPIO_MINOR_A) {
450 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
451 p->lowalarm |= (1 << CONFIG_ETRAX_VIRTUAL_GPIO_INTERRUPT_PA_PIN);
453 a_high |= p->highalarm;
454 a_low |= p->lowalarm;
460 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
461 /* Variable 'a_low' needs to be set here again
462 * to ensure that interrupt for virtual GPIO is handled.
464 a_low |= (1 << CONFIG_ETRAX_VIRTUAL_GPIO_INTERRUPT_PA_PIN);
467 spin_unlock_irq(&gpio_lock);
474 /* Main device API. ioctl's to read/set/clear bits, as well as to
475 * set alarms to wait for using a subsequent select().
478 inline unsigned long setget_input(struct gpio_private *priv, unsigned long arg)
480 /* Set direction 0=unchanged 1=input,
481 * return mask with 1=input
484 unsigned long dir_shadow;
486 spin_lock_irqsave(&gpio_lock, flags);
488 dir_shadow = readl(dir_oe[priv->minor]) &
489 ~(arg & changeable_dir[priv->minor]);
490 writel(dir_shadow, dir_oe[priv->minor]);
492 spin_unlock_irqrestore(&gpio_lock, flags);
494 if (priv->minor == GPIO_MINOR_C)
495 dir_shadow ^= 0xFFFF; /* Only 16 bits */
496 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
497 else if (priv->minor == GPIO_MINOR_V)
498 dir_shadow ^= 0xFFFF; /* Only 16 bits */
501 dir_shadow ^= 0xFFFFFFFF; /* PA, PB and PD 32 bits */
507 static inline unsigned long setget_output(struct gpio_private *priv,
511 unsigned long dir_shadow;
513 spin_lock_irqsave(&gpio_lock, flags);
515 dir_shadow = readl(dir_oe[priv->minor]) |
516 (arg & changeable_dir[priv->minor]);
517 writel(dir_shadow, dir_oe[priv->minor]);
519 spin_unlock_irqrestore(&gpio_lock, flags);
521 } /* setget_output */
523 static long gpio_ioctl_unlocked(struct file *file,
524 unsigned int cmd, unsigned long arg)
528 unsigned long shadow;
529 struct gpio_private *priv = file->private_data;
531 if (_IOC_TYPE(cmd) != ETRAXGPIO_IOCTYPE)
534 /* Check for special ioctl handlers first */
536 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
537 if (priv->minor == GPIO_MINOR_V)
538 return virtual_gpio_ioctl(file, cmd, arg);
541 if (priv->minor == GPIO_MINOR_LEDS)
542 return gpio_leds_ioctl(cmd, arg);
544 if (priv->minor >= GPIO_MINOR_PWM0 &&
545 priv->minor <= GPIO_MINOR_LAST_PWM)
546 return gpio_pwm_ioctl(priv, cmd, arg);
548 switch (_IOC_NR(cmd)) {
549 case IO_READBITS: /* Use IO_READ_INBITS and IO_READ_OUTBITS instead */
551 return readl(data_in[priv->minor]);
553 spin_lock_irqsave(&gpio_lock, flags);
554 /* Set changeable bits with a 1 in arg. */
555 shadow = readl(data_out[priv->minor]) |
556 (arg & changeable_bits[priv->minor]);
557 writel(shadow, data_out[priv->minor]);
558 spin_unlock_irqrestore(&gpio_lock, flags);
561 spin_lock_irqsave(&gpio_lock, flags);
562 /* Clear changeable bits with a 1 in arg. */
563 shadow = readl(data_out[priv->minor]) &
564 ~(arg & changeable_bits[priv->minor]);
565 writel(shadow, data_out[priv->minor]);
566 spin_unlock_irqrestore(&gpio_lock, flags);
569 /* Set alarm when bits with 1 in arg go high. */
570 priv->highalarm |= arg;
571 gpio_set_alarm(priv);
574 /* Set alarm when bits with 1 in arg go low. */
575 priv->lowalarm |= arg;
576 gpio_set_alarm(priv);
579 /* Clear alarm for bits with 1 in arg. */
580 priv->highalarm &= ~arg;
581 priv->lowalarm &= ~arg;
582 gpio_set_alarm(priv);
584 case IO_READDIR: /* Use IO_SETGET_INPUT/OUTPUT instead! */
585 /* Read direction 0=input 1=output */
586 return readl(dir_oe[priv->minor]);
588 case IO_SETINPUT: /* Use IO_SETGET_INPUT instead! */
589 /* Set direction 0=unchanged 1=input,
590 * return mask with 1=input
592 return setget_input(priv, arg);
594 case IO_SETOUTPUT: /* Use IO_SETGET_OUTPUT instead! */
595 /* Set direction 0=unchanged 1=output,
596 * return mask with 1=output
598 return setget_output(priv, arg);
600 case IO_CFG_WRITE_MODE:
603 unsigned long dir_shadow, clk_mask, data_mask, write_msb;
605 clk_mask = arg & 0xFF;
606 data_mask = (arg >> 8) & 0xFF;
607 write_msb = (arg >> 16) & 0x01;
609 /* Check if we're allowed to change the bits and
610 * the direction is correct
612 spin_lock_irqsave(&gpio_lock, flags);
613 dir_shadow = readl(dir_oe[priv->minor]);
614 if ((clk_mask & changeable_bits[priv->minor]) &&
615 (data_mask & changeable_bits[priv->minor]) &&
616 (clk_mask & dir_shadow) &&
617 (data_mask & dir_shadow)) {
618 priv->clk_mask = clk_mask;
619 priv->data_mask = data_mask;
620 priv->write_msb = write_msb;
623 spin_unlock_irqrestore(&gpio_lock, flags);
628 /* *arg is result of reading the input pins */
629 val = readl(data_in[priv->minor]);
630 if (copy_to_user((void __user *)arg, &val, sizeof(val)))
633 case IO_READ_OUTBITS:
634 /* *arg is result of reading the output shadow */
635 val = *data_out[priv->minor];
636 if (copy_to_user((void __user *)arg, &val, sizeof(val)))
639 case IO_SETGET_INPUT:
640 /* bits set in *arg is set to input,
641 * *arg updated with current input pins.
643 if (copy_from_user(&val, (void __user *)arg, sizeof(val)))
645 val = setget_input(priv, val);
646 if (copy_to_user((void __user *)arg, &val, sizeof(val)))
649 case IO_SETGET_OUTPUT:
650 /* bits set in *arg is set to output,
651 * *arg updated with current output pins.
653 if (copy_from_user(&val, (void __user *)arg, sizeof(val)))
655 val = setget_output(priv, val);
656 if (copy_to_user((void __user *)arg, &val, sizeof(val)))
666 static long gpio_ioctl(struct file *file, unsigned int cmd, unsigned long arg)
671 ret = gpio_ioctl_unlocked(file, cmd, arg);
677 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
678 static int virtual_gpio_ioctl(struct file *file, unsigned int cmd,
683 unsigned short shadow;
684 struct gpio_private *priv = file->private_data;
686 switch (_IOC_NR(cmd)) {
688 spin_lock_irqsave(&gpio_lock, flags);
689 /* Set changeable bits with a 1 in arg. */
690 i2c_read(VIRT_I2C_ADDR, (void *)&shadow, sizeof(shadow));
691 shadow |= ~readl(dir_oe[priv->minor]) |
692 (arg & changeable_bits[priv->minor]);
693 i2c_write(VIRT_I2C_ADDR, (void *)&shadow, sizeof(shadow));
694 spin_unlock_irqrestore(&gpio_lock, flags);
697 spin_lock_irqsave(&gpio_lock, flags);
698 /* Clear changeable bits with a 1 in arg. */
699 i2c_read(VIRT_I2C_ADDR, (void *)&shadow, sizeof(shadow));
700 shadow |= ~readl(dir_oe[priv->minor]) &
701 ~(arg & changeable_bits[priv->minor]);
702 i2c_write(VIRT_I2C_ADDR, (void *)&shadow, sizeof(shadow));
703 spin_unlock_irqrestore(&gpio_lock, flags);
706 /* Set alarm when bits with 1 in arg go high. */
707 priv->highalarm |= arg;
710 /* Set alarm when bits with 1 in arg go low. */
711 priv->lowalarm |= arg;
714 /* Clear alarm for bits with 1 in arg. */
715 priv->highalarm &= ~arg;
716 priv->lowalarm &= ~arg;
718 case IO_CFG_WRITE_MODE:
720 unsigned long dir_shadow;
721 dir_shadow = readl(dir_oe[priv->minor]);
723 priv->clk_mask = arg & 0xFF;
724 priv->data_mask = (arg >> 8) & 0xFF;
725 priv->write_msb = (arg >> 16) & 0x01;
726 /* Check if we're allowed to change the bits and
727 * the direction is correct
729 if (!((priv->clk_mask & changeable_bits[priv->minor]) &&
730 (priv->data_mask & changeable_bits[priv->minor]) &&
731 (priv->clk_mask & dir_shadow) &&
732 (priv->data_mask & dir_shadow))) {
740 /* *arg is result of reading the input pins */
741 val = cached_virtual_gpio_read & ~readl(dir_oe[priv->minor]);
742 if (copy_to_user((void __user *)arg, &val, sizeof(val)))
746 case IO_READ_OUTBITS:
747 /* *arg is result of reading the output shadow */
748 i2c_read(VIRT_I2C_ADDR, (void *)&val, sizeof(val));
749 val &= readl(dir_oe[priv->minor]);
750 if (copy_to_user((void __user *)arg, &val, sizeof(val)))
753 case IO_SETGET_INPUT:
755 /* bits set in *arg is set to input,
756 * *arg updated with current input pins.
758 unsigned short input_mask = ~readl(dir_oe[priv->minor]);
759 if (copy_from_user(&val, (void __user *)arg, sizeof(val)))
761 val = setget_input(priv, val);
762 if (copy_to_user((void __user *)arg, &val, sizeof(val)))
764 if ((input_mask & val) != input_mask) {
765 /* Input pins changed. All ports desired as input
766 * should be set to logic 1.
768 unsigned short change = input_mask ^ val;
769 i2c_read(VIRT_I2C_ADDR, (void *)&shadow,
773 i2c_write(VIRT_I2C_ADDR, (void *)&shadow,
778 case IO_SETGET_OUTPUT:
779 /* bits set in *arg is set to output,
780 * *arg updated with current output pins.
782 if (copy_from_user(&val, (void __user *)arg, sizeof(val)))
784 val = setget_output(priv, val);
785 if (copy_to_user((void __user *)arg, &val, sizeof(val)))
793 #endif /* CONFIG_ETRAX_VIRTUAL_GPIO */
795 static int gpio_leds_ioctl(unsigned int cmd, unsigned long arg)
800 switch (_IOC_NR(cmd)) {
801 case IO_LEDACTIVE_SET:
802 green = ((unsigned char) arg) & 1;
803 red = (((unsigned char) arg) >> 1) & 1;
804 CRIS_LED_ACTIVE_SET_G(green);
805 CRIS_LED_ACTIVE_SET_R(red);
815 static int gpio_pwm_set_mode(unsigned long arg, int pwm_port)
817 int pinmux_pwm = pinmux_pwm0 + pwm_port;
819 reg_gio_rw_pwm0_ctrl rw_pwm_ctrl = {
821 .ccd_override = regk_gio_no,
826 if (get_user(mode, &((struct io_pwm_set_mode *) arg)->mode))
828 rw_pwm_ctrl.mode = mode;
830 allocstatus = crisv32_pinmux_alloc_fixed(pinmux_pwm);
832 allocstatus = crisv32_pinmux_dealloc_fixed(pinmux_pwm);
835 REG_WRITE(reg_gio_rw_pwm0_ctrl, REG_ADDR(gio, regi_gio, rw_pwm0_ctrl) +
836 12 * pwm_port, rw_pwm_ctrl);
840 static int gpio_pwm_set_period(unsigned long arg, int pwm_port)
842 struct io_pwm_set_period periods;
843 reg_gio_rw_pwm0_var rw_pwm_widths;
845 if (copy_from_user(&periods, (void __user *)arg, sizeof(periods)))
847 if (periods.lo > 8191 || periods.hi > 8191)
849 rw_pwm_widths.lo = periods.lo;
850 rw_pwm_widths.hi = periods.hi;
851 REG_WRITE(reg_gio_rw_pwm0_var, REG_ADDR(gio, regi_gio, rw_pwm0_var) +
852 12 * pwm_port, rw_pwm_widths);
856 static int gpio_pwm_set_duty(unsigned long arg, int pwm_port)
859 reg_gio_rw_pwm0_data rw_pwm_duty;
861 if (get_user(duty, &((struct io_pwm_set_duty *) arg)->duty))
865 rw_pwm_duty.data = duty;
866 REG_WRITE(reg_gio_rw_pwm0_data, REG_ADDR(gio, regi_gio, rw_pwm0_data) +
867 12 * pwm_port, rw_pwm_duty);
871 static int gpio_pwm_ioctl(struct gpio_private *priv, unsigned int cmd,
874 int pwm_port = priv->minor - GPIO_MINOR_PWM0;
876 switch (_IOC_NR(cmd)) {
877 case IO_PWM_SET_MODE:
878 return gpio_pwm_set_mode(arg, pwm_port);
879 case IO_PWM_SET_PERIOD:
880 return gpio_pwm_set_period(arg, pwm_port);
881 case IO_PWM_SET_DUTY:
882 return gpio_pwm_set_duty(arg, pwm_port);
889 static const struct file_operations gpio_fops = {
890 .owner = THIS_MODULE,
892 .unlocked_ioctl = gpio_ioctl,
895 .release = gpio_release,
898 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
899 static void __init virtual_gpio_init(void)
901 reg_gio_rw_intr_cfg intr_cfg;
902 reg_gio_rw_intr_mask intr_mask;
903 unsigned short shadow;
905 shadow = ~virtual_rw_pv_oe; /* Input ports should be set to logic 1 */
906 shadow |= CONFIG_ETRAX_DEF_GIO_PV_OUT;
907 i2c_write(VIRT_I2C_ADDR, (void *)&shadow, sizeof(shadow));
909 /* Set interrupt mask and on what state the interrupt shall trigger.
910 * For virtual gpio the interrupt shall trigger on logic '0'.
912 intr_cfg = REG_RD(gio, regi_gio, rw_intr_cfg);
913 intr_mask = REG_RD(gio, regi_gio, rw_intr_mask);
915 switch (CONFIG_ETRAX_VIRTUAL_GPIO_INTERRUPT_PA_PIN) {
917 intr_cfg.pa0 = regk_gio_lo;
918 intr_mask.pa0 = regk_gio_yes;
921 intr_cfg.pa1 = regk_gio_lo;
922 intr_mask.pa1 = regk_gio_yes;
925 intr_cfg.pa2 = regk_gio_lo;
926 intr_mask.pa2 = regk_gio_yes;
929 intr_cfg.pa3 = regk_gio_lo;
930 intr_mask.pa3 = regk_gio_yes;
933 intr_cfg.pa4 = regk_gio_lo;
934 intr_mask.pa4 = regk_gio_yes;
937 intr_cfg.pa5 = regk_gio_lo;
938 intr_mask.pa5 = regk_gio_yes;
941 intr_cfg.pa6 = regk_gio_lo;
942 intr_mask.pa6 = regk_gio_yes;
945 intr_cfg.pa7 = regk_gio_lo;
946 intr_mask.pa7 = regk_gio_yes;
950 REG_WR(gio, regi_gio, rw_intr_cfg, intr_cfg);
951 REG_WR(gio, regi_gio, rw_intr_mask, intr_mask);
955 /* main driver initialization routine, called from mem.c */
957 static int __init gpio_init(void)
961 printk(KERN_INFO "ETRAX FS GPIO driver v2.7, (c) 2003-2008 "
962 "Axis Communications AB\n");
964 /* do the formalities */
966 res = register_chrdev(GPIO_MAJOR, gpio_name, &gpio_fops);
968 printk(KERN_ERR "gpio: couldn't get a major number.\n");
973 CRIS_LED_NETWORK_GRP0_SET(0);
974 CRIS_LED_NETWORK_GRP1_SET(0);
975 CRIS_LED_ACTIVE_SET(0);
976 CRIS_LED_DISK_READ(0);
977 CRIS_LED_DISK_WRITE(0);
979 int res2 = request_irq(GIO_INTR_VECT, gpio_interrupt,
980 IRQF_SHARED | IRQF_DISABLED, "gpio", &alarmlist);
982 printk(KERN_ERR "err: irq for gpio\n");
986 /* No IRQs by default. */
987 REG_WR_INT(gio, regi_gio, rw_intr_pins, 0);
989 #ifdef CONFIG_ETRAX_VIRTUAL_GPIO
996 /* this makes sure that gpio_init is called during kernel boot */
998 module_init(gpio_init);