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>
16 static int sa1100_gpio_get(struct gpio_chip
*chip
, unsigned offset
)
18 return GPLR
& GPIO_GPIO(offset
);
21 static void sa1100_gpio_set(struct gpio_chip
*chip
, unsigned offset
, int value
)
24 GPSR
= GPIO_GPIO(offset
);
26 GPCR
= GPIO_GPIO(offset
);
29 static int sa1100_direction_input(struct gpio_chip
*chip
, unsigned offset
)
33 local_irq_save(flags
);
34 GPDR
&= ~GPIO_GPIO(offset
);
35 local_irq_restore(flags
);
39 static int sa1100_direction_output(struct gpio_chip
*chip
, unsigned offset
, int value
)
43 local_irq_save(flags
);
44 sa1100_gpio_set(chip
, offset
, value
);
45 GPDR
|= GPIO_GPIO(offset
);
46 local_irq_restore(flags
);
50 static int sa1100_to_irq(struct gpio_chip
*chip
, unsigned offset
)
52 return offset
< 11 ? (IRQ_GPIO0
+ offset
) : (IRQ_GPIO11
- 11 + offset
);
55 static struct gpio_chip sa1100_gpio_chip
= {
57 .direction_input
= sa1100_direction_input
,
58 .direction_output
= sa1100_direction_output
,
59 .set
= sa1100_gpio_set
,
60 .get
= sa1100_gpio_get
,
61 .to_irq
= sa1100_to_irq
,
63 .ngpio
= GPIO_MAX
+ 1,
66 void __init
sa1100_init_gpio(void)
68 gpiochip_add(&sa1100_gpio_chip
);