1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23#include <common.h>
24#include <asm/io.h>
25#include <asm/arch/gpio.h>
26
27static unsigned long gpio_base[4] = {
28 NOMADIK_GPIO0_BASE,
29 NOMADIK_GPIO1_BASE,
30 NOMADIK_GPIO2_BASE,
31 NOMADIK_GPIO3_BASE
32};
33
34enum gpio_registers {
35 GPIO_DAT = 0x00,
36 GPIO_DATS = 0x04,
37 GPIO_DATC = 0x08,
38 GPIO_PDIS = 0x0c,
39 GPIO_DIR = 0x10,
40 GPIO_DIRS = 0x14,
41 GPIO_DIRC = 0x18,
42 GPIO_AFSLA = 0x20,
43 GPIO_AFSLB = 0x24,
44};
45
46static inline unsigned long gpio_to_base(int gpio)
47{
48 return gpio_base[gpio / 32];
49}
50
51static inline u32 gpio_to_bit(int gpio)
52{
53 return 1 << (gpio & 0x1f);
54}
55
56void nmk_gpio_af(int gpio, int alternate_function)
57{
58 unsigned long base = gpio_to_base(gpio);
59 u32 bit = gpio_to_bit(gpio);
60 u32 afunc, bfunc;
61
62
63 afunc = readl(base + GPIO_AFSLA) & ~bit;
64 bfunc = readl(base + GPIO_AFSLB) & ~bit;
65 if (alternate_function & 1) afunc |= bit;
66 if (alternate_function & 2) bfunc |= bit;
67 writel(afunc, base + GPIO_AFSLA);
68 writel(bfunc, base + GPIO_AFSLB);
69}
70
71void nmk_gpio_dir(int gpio, int dir)
72{
73 unsigned long base = gpio_to_base(gpio);
74 u32 bit = gpio_to_bit(gpio);
75
76 if (dir)
77 writel(bit, base + GPIO_DIRS);
78 else
79 writel(bit, base + GPIO_DIRC);
80}
81
82void nmk_gpio_set(int gpio, int val)
83{
84 unsigned long base = gpio_to_base(gpio);
85 u32 bit = gpio_to_bit(gpio);
86
87 if (val)
88 writel(bit, base + GPIO_DATS);
89 else
90 writel(bit, base + GPIO_DATC);
91}
92
93int nmk_gpio_get(int gpio)
94{
95 unsigned long base = gpio_to_base(gpio);
96 u32 bit = gpio_to_bit(gpio);
97
98 return readl(base + GPIO_DAT) & bit;
99}
100