aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/ar7/files/include/asm-mips/ar7/gpio.h
blob: fde93bc7c0c167c3c09e0f04132cca571dc4f64f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
/*
 * Copyright (C) 2007 Florian Fainelli <florian@openwrt.org>
 *
 * This program is free software; you can redistribute it and/or modify
 * it under the terms of the GNU General Public License as published by
 * the Free Software Foundation; either version 2 of the License, or
 * (at your option) any later version.
 *
 * This program is distributed in the hope that it will be useful,
 * but WITHOUT ANY WARRANTY; without even the implied warranty of
 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
 * GNU General Public License for more details.
 *
 * You should have received a copy of the GNU General Public License
 * along with this program; if not, write to the Free Software
 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

#ifndef __AR7_GPIO_H__
#define __AR7_GPIO_H__
#include <asm/ar7/ar7.h>
#ifndef __AR7_TITAN_H__
#include <asm/ar7/titan.h>
#endif

#define AR7_GPIO_MAX 32
#define TITAN_GPIO_MAX 51

extern int gpio_request(unsigned gpio, const char *label);
extern void gpio_free(unsigned gpio);

/* Common GPIO layer */
static inline int gpio_get_value_ar7(unsigned gpio)
{
	void __iomem *gpio_in =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_INPUT);

	return readl(gpio_in) & (1 << gpio);
}

static inline int gpio_get_value_titan(unsigned gpio)
{
	void __iomem *gpio_in0 =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + TITAN_GPIO_INPUT_0);
	void __iomem *gpio_in1 =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + TITAN_GPIO_INPUT_1);

	return readl(gpio >> 5 ? gpio_in1 : gpio_in0) & (1 << (gpio & 0x1f));
}

static inline int gpio_get_value(unsigned gpio)
{
	return ar7_is_titan() ? gpio_get_value_titan(gpio) :
		gpio_get_value_ar7(gpio);
}

static inline void gpio_set_value_ar7(unsigned gpio, int value)
{
	void __iomem *gpio_out =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_OUTPUT);
	unsigned tmp;

	tmp = readl(gpio_out) & ~(1 << gpio);
	if (value)
		tmp |= 1 << gpio;
	writel(tmp, gpio_out);
}

static inline void gpio_set_value_titan(unsigned gpio, int value)
{
	void __iomem *gpio_out0 =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + TITAN_GPIO_OUTPUT_0);
	void __iomem *gpio_out1 =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + TITAN_GPIO_OUTPUT_1);
	unsigned tmp;

	tmp = readl(gpio >> 5 ? gpio_out1 : gpio_out0) & ~(1 << (gpio & 0x1f));
	if (value)
		tmp |= 1 << (gpio & 0x1f);
	writel(tmp, gpio >> 5 ? gpio_out1 : gpio_out0);
}

static inline void gpio_set_value(unsigned gpio, int value)
{
	if (ar7_is_titan())
		gpio_set_value_titan(gpio, value);
	else
		gpio_set_value_ar7(gpio, value);
}

static inline int gpio_direction_input_ar7(unsigned gpio)
{
	void __iomem *gpio_dir =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_DIR);

	if (gpio >= AR7_GPIO_MAX)
		return -EINVAL;

	writel(readl(gpio_dir) | (1 << gpio), gpio_dir);

	return 0;
}

static inline int gpio_direction_input_titan(unsigned gpio)
{
	void __iomem *gpio_dir0 =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + TITAN_GPIO_DIR_0);
	void __iomem *gpio_dir1 =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + TITAN_GPIO_DIR_1);

	if (gpio >= TITAN_GPIO_MAX)
		return -EINVAL;

	writel(readl(gpio >> 5 ? gpio_dir1 : gpio_dir0) | (1 << (gpio & 0x1f)),
		gpio >> 5 ? gpio_dir1 : gpio_dir0);

	return 0;
}

static inline int gpio_direction_input(unsigned gpio)
{
	return ar7_is_titan() ?  gpio_direction_input_titan(gpio) :
		gpio_direction_input_ar7(gpio);
}

static inline int gpio_direction_output_ar7(unsigned gpio, int value)
{
	void __iomem *gpio_dir =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_DIR);

	if (gpio >= AR7_GPIO_MAX)
		return -EINVAL;

	gpio_set_value(gpio, value);
	writel(readl(gpio_dir) & ~(1 << gpio), gpio_dir);

	return 0;
}

static inline int gpio_direction_output_titan(unsigned gpio, int value)
{
	void __iomem *gpio_dir0 =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + TITAN_GPIO_DIR_0);
	void __iomem *gpio_dir1 =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + TITAN_GPIO_DIR_1);

	if (gpio >= TITAN_GPIO_MAX)
		return -EINVAL;

	gpio_set_value_titan(gpio, value);
	writel(readl(gpio >> 5 ? gpio_dir1 : gpio_dir0) & ~(1 <<
		(gpio & 0x1f)), gpio >> 5 ? gpio_dir1 : gpio_dir0);

	return 0;
}

static inline int gpio_direction_output(unsigned gpio, int value)
{
	return ar7_is_titan() ?  gpio_direction_output_titan(gpio, value) :
		gpio_direction_output_ar7(gpio, value);
}

static inline int gpio_to_irq(unsigned gpio)
{
	return -EINVAL;
}

static inline int irq_to_gpio(unsigned irq)
{
	return -EINVAL;
}

/* Board specific GPIO functions */
static inline int ar7_gpio_enable_ar7(unsigned gpio)
{
	void __iomem *gpio_en =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_ENABLE);

	writel(readl(gpio_en) | (1 << gpio), gpio_en);

	return 0;
}

static inline int ar7_gpio_enable_titan(unsigned gpio)
{
	void __iomem *gpio_en0 =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + TITAN_GPIO_ENBL_0);
	void __iomem *gpio_en1 =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + TITAN_GPIO_ENBL_1);

	writel(readl(gpio >> 5 ? gpio_en1 : gpio_en0) | (1 << (gpio & 0x1f)),
		gpio >> 5 ? gpio_en1 : gpio_en0);

	return 0;
}

static inline int ar7_gpio_enable(unsigned gpio)
{
	return ar7_is_titan() ? ar7_gpio_enable_titan(gpio) :
		ar7_gpio_enable_ar7(gpio);
}

static inline int ar7_gpio_disable_ar7(unsigned gpio)
{
	void __iomem *gpio_en =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + AR7_GPIO_ENABLE);

	writel(readl(gpio_en) & ~(1 << gpio), gpio_en);

	return 0;
}

static inline int ar7_gpio_disable_titan(unsigned gpio)
{
	void __iomem *gpio_en0 =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + TITAN_GPIO_ENBL_0);
	void __iomem *gpio_en1 =
		(void __iomem *)KSEG1ADDR(AR7_REGS_GPIO + TITAN_GPIO_ENBL_1);

	writel(readl(gpio >> 5 ? gpio_en1 : gpio_en0) & ~(1 << (gpio & 0x1f)),
		gpio >> 5 ? gpio_en1 : gpio_en0);

	return 0;
}

static inline int ar7_gpio_disable(unsigned gpio)
{
	return ar7_is_titan() ? ar7_gpio_disable_titan(gpio) :
		ar7_gpio_disable_ar7(gpio);
}

static inline int ar7_init_titan_variant( void )
{
	/*UINT32 new_val;*/
	unsigned new_val;

	/* set GPIO 44 - 47 as input */
	/*PAL_sysGpioCtrl(const int, GPIO_PIN, GPIO_INPUT_PIN); */
	/*define titan_gpio_ctrl in titan.h*/
	titan_gpio_ctrl(44, GPIO_PIN, GPIO_INPUT_PIN);
	titan_gpio_ctrl(45, GPIO_PIN, GPIO_INPUT_PIN);
	titan_gpio_ctrl(46, GPIO_PIN, GPIO_INPUT_PIN);
	titan_gpio_ctrl(47, GPIO_PIN, GPIO_INPUT_PIN);
    
	/* read GPIO to get Titan variant type */
	/*fix this*/
	titan_sysGpioInValue( &new_val, 1 );

	new_val >>= 12;
	new_val &= 0x0f;

	switch ( new_val )
	{
	case TITAN_CHIP_1050:
	case TITAN_CHIP_1055:
	case TITAN_CHIP_1056:
	case TITAN_CHIP_1060:
		return new_val;
 
	default:
		break;
	}
	/* In case we get an invalid value, return the default Titan chip */
	return TITAN_CHIP_1050;
}

#include <asm-generic/gpio.h>

#endif