2 * arch/arm/plat-iop/gpio.c
3 * GPIO handling for Intel IOP3xx processors.
5 * Copyright (C) 2006 Lennert Buytenhek <buytenh@wantstofly.org>
7 * This program is free software; you can redistribute it and/or modify
8 * it under the terms of the GNU General Public License as published by
9 * the Free Software Foundation; either version 2 of the License, or (at
10 * your option) any later version.
13 #include <linux/device.h>
14 #include <linux/init.h>
15 #include <linux/types.h>
16 #include <linux/errno.h>
17 #include <linux/gpio.h>
18 #include <linux/export.h>
19 #include <linux/platform_device.h>
20 #include <linux/bitops.h>
23 #define IOP3XX_N_GPIOS 8
30 /* Memory base offset */
31 static void __iomem
*base
;
33 #define IOP3XX_GPIO_REG(reg) (base + (reg))
34 #define IOP3XX_GPOE IOP3XX_GPIO_REG(0x0000)
35 #define IOP3XX_GPID IOP3XX_GPIO_REG(0x0004)
36 #define IOP3XX_GPOD IOP3XX_GPIO_REG(0x0008)
38 static void gpio_line_config(int line
, int direction
)
43 local_irq_save(flags
);
44 val
= readl(IOP3XX_GPOE
);
45 if (direction
== GPIO_IN
) {
47 } else if (direction
== GPIO_OUT
) {
50 writel(val
, IOP3XX_GPOE
);
51 local_irq_restore(flags
);
54 static int gpio_line_get(int line
)
56 return !!(readl(IOP3XX_GPID
) & BIT(line
));
59 static void gpio_line_set(int line
, int value
)
64 local_irq_save(flags
);
65 val
= readl(IOP3XX_GPOD
);
66 if (value
== GPIO_LOW
) {
68 } else if (value
== GPIO_HIGH
) {
71 writel(val
, IOP3XX_GPOD
);
72 local_irq_restore(flags
);
75 static int iop3xx_gpio_direction_input(struct gpio_chip
*chip
, unsigned gpio
)
77 gpio_line_config(gpio
, GPIO_IN
);
81 static int iop3xx_gpio_direction_output(struct gpio_chip
*chip
, unsigned gpio
, int level
)
83 gpio_line_set(gpio
, level
);
84 gpio_line_config(gpio
, GPIO_OUT
);
88 static int iop3xx_gpio_get_value(struct gpio_chip
*chip
, unsigned gpio
)
90 return gpio_line_get(gpio
);
93 static void iop3xx_gpio_set_value(struct gpio_chip
*chip
, unsigned gpio
, int value
)
95 gpio_line_set(gpio
, value
);
98 static struct gpio_chip iop3xx_chip
= {
100 .direction_input
= iop3xx_gpio_direction_input
,
101 .get
= iop3xx_gpio_get_value
,
102 .direction_output
= iop3xx_gpio_direction_output
,
103 .set
= iop3xx_gpio_set_value
,
105 .ngpio
= IOP3XX_N_GPIOS
,
108 static int iop3xx_gpio_probe(struct platform_device
*pdev
)
110 struct resource
*res
;
112 res
= platform_get_resource(pdev
, IORESOURCE_MEM
, 0);
113 base
= devm_ioremap_resource(&pdev
->dev
, res
);
115 return PTR_ERR(base
);
117 return gpiochip_add(&iop3xx_chip
);
120 static struct platform_driver iop3xx_gpio_driver
= {
124 .probe
= iop3xx_gpio_probe
,
127 static int __init
iop3xx_gpio_init(void)
129 return platform_driver_register(&iop3xx_gpio_driver
);
131 arch_initcall(iop3xx_gpio_init
);