2 * linux/arch/arm/mach-sa1100/gpio.c
4 * Generic SA-1100 GPIO handling
6 * This program is free software; you can redistribute it and/or modify
7 * it under the terms of the GNU General Public License version 2 as
8 * published by the Free Software Foundation.
10 #include <linux/gpio.h>
11 #include <linux/init.h>
12 #include <linux/module.h>
14 #include <mach/hardware.h>
15 #include <mach/irqs.h>
17 static int sa1100_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
19 return GPLR
& GPIO_GPIO(offset
);
22 static void sa1100_gpio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
25 GPSR
= GPIO_GPIO(offset
);
27 GPCR
= GPIO_GPIO(offset
);
30 static int sa1100_direction_input(struct gpio_chip
*chip
, unsigned offset
)
34 local_irq_save(flags
);
35 GPDR
&= ~GPIO_GPIO(offset
);
36 local_irq_restore(flags
);
40 static int sa1100_direction_output(struct gpio_chip
*chip
, unsigned offset
, int value
)
44 local_irq_save(flags
);
45 sa1100_gpio_set(chip
, offset
, value
);
46 GPDR
|= GPIO_GPIO(offset
);
47 local_irq_restore(flags
);
51 static int sa1100_to_irq(struct gpio_chip
*chip
, unsigned offset
)
53 return offset
< 11 ? (IRQ_GPIO0
+ offset
) : (IRQ_GPIO11
- 11 + offset
);
56 static struct gpio_chip sa1100_gpio_chip
= {
58 .direction_input
= sa1100_direction_input
,
59 .direction_output
= sa1100_direction_output
,
60 .set
= sa1100_gpio_set
,
61 .get
= sa1100_gpio_get
,
62 .to_irq
= sa1100_to_irq
,
64 .ngpio
= GPIO_MAX
+ 1,
67 void __init
sa1100_init_gpio(void)
69 gpiochip_add(&sa1100_gpio_chip
);