aboutsummaryrefslogtreecommitdiffstats
path: root/target/linux/adm5120/files-3.18/arch/mips/adm5120/common/gpio.c
blob: 461ea15e8223d368ea877a959cf3efaf103ed825 (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
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
/*
 *  ADM5120 generic GPIO API support via GPIOLIB
 *
 *  Copyright (C) 2007-2008 Gabor Juhos <juhosg@openwrt.org>
 *
 *  This program is free software; you can redistribute it and/or modify it
 *  under the terms of the GNU General Public License version 2 as published
 *  by the Free Software Foundation.
 *
 */

#include <linux/init.h>
#include <linux/types.h>
#include <linux/module.h>
#include <linux/irq.h>
#include <linux/delay.h>
#include <linux/platform_device.h>
#include <linux/io.h>
#include <linux/gpio.h>

#include <asm/addrspace.h>

#include <asm/mach-adm5120/adm5120_defs.h>
#include <asm/mach-adm5120/adm5120_info.h>
#include <asm/mach-adm5120/adm5120_switch.h>

#define GPIO_REG(r)	(void __iomem *)(KSEG1ADDR(ADM5120_SWITCH_BASE) + r)

struct gpio1_desc {
	void __iomem	*reg;		/* register address */
	u8		iv_shift;	/* shift amount for input bit */
	u8		mode_shift;	/* shift amount for mode bits */
};

#define GPIO1_DESC(p, l) {						\
		.reg = GPIO_REG(SWITCH_REG_PORT0_LED + ((p) * 4)),	\
		.iv_shift = LED0_IV_SHIFT + (l),			\
		.mode_shift = (l) * 4					\
	}

static struct gpio1_desc gpio1_table[15] = {
	GPIO1_DESC(0, 0), GPIO1_DESC(0, 1), GPIO1_DESC(0, 2),
	GPIO1_DESC(1, 0), GPIO1_DESC(1, 1), GPIO1_DESC(1, 2),
	GPIO1_DESC(2, 0), GPIO1_DESC(2, 1), GPIO1_DESC(2, 2),
	GPIO1_DESC(3, 0), GPIO1_DESC(3, 1), GPIO1_DESC(3, 2),
	GPIO1_DESC(4, 0), GPIO1_DESC(4, 1), GPIO1_DESC(4, 2)
};

static u32 gpio_conf2;

int adm5120_gpio_to_irq(unsigned gpio)
{
	int ret;

	switch (gpio) {
	case ADM5120_GPIO_PIN2:
		ret = ADM5120_IRQ_GPIO2;
		break;
	case ADM5120_GPIO_PIN4:
		ret = ADM5120_IRQ_GPIO4;
		break;
	default:
		ret = -EINVAL;
		break;
	}

	return ret;
}
EXPORT_SYMBOL(adm5120_gpio_to_irq);

int adm5120_irq_to_gpio(unsigned irq)
{
	int ret;

	switch (irq) {
	case ADM5120_IRQ_GPIO2:
		ret = ADM5120_GPIO_PIN2;
		break;
	case ADM5120_IRQ_GPIO4:
		ret = ADM5120_GPIO_PIN4;
		break;
	default:
		ret = -EINVAL;
		break;
	}

	return ret;
}
EXPORT_SYMBOL(adm5120_irq_to_gpio);

/*
 * Helpers for GPIO lines in GPIO_CONF0 register
 */
#define PIN_IM(p)	((1 << GPIO_CONF0_IM_SHIFT) << p)
#define PIN_IV(p)	((1 << GPIO_CONF0_IV_SHIFT) << p)
#define PIN_OE(p)	((1 << GPIO_CONF0_OE_SHIFT) << p)
#define PIN_OV(p)	((1 << GPIO_CONF0_OV_SHIFT) << p)

int __adm5120_gpio0_get_value(unsigned offset)
{
	void __iomem **reg;
	u32 t;

	reg = GPIO_REG(SWITCH_REG_GPIO_CONF0);

	t = __raw_readl(reg);
	if ((t & PIN_IM(offset)) != 0)
		t &= PIN_IV(offset);
	else
		t &= PIN_OV(offset);

	return (t) ? 1 : 0;
}
EXPORT_SYMBOL(__adm5120_gpio0_get_value);

void __adm5120_gpio0_set_value(unsigned offset, int value)
{
	void __iomem **reg;
	u32 t;

	reg = GPIO_REG(SWITCH_REG_GPIO_CONF0);

	t = __raw_readl(reg);
	if (value == 0)
		t &= ~(PIN_OV(offset));
	else
		t |= PIN_OV(offset);

	__raw_writel(t, reg);
}
EXPORT_SYMBOL(__adm5120_gpio0_set_value);

static int adm5120_gpio0_get_value(struct gpio_chip *chip, unsigned offset)
{
	return __adm5120_gpio0_get_value(offset);
}

static void adm5120_gpio0_set_value(struct gpio_chip *chip,
				    unsigned offset, int value)
{
	__adm5120_gpio0_set_value(offset, value);
}

static int adm5120_gpio0_direction_input(struct gpio_chip *chip,
					 unsigned offset)
{
	void __iomem **reg;
	u32 t;

	reg = GPIO_REG(SWITCH_REG_GPIO_CONF0);

	t = __raw_readl(reg);
	t &= ~(PIN_OE(offset));
	t |= PIN_IM(offset);
	__raw_writel(t, reg);

	return 0;
}

static int adm5120_gpio0_direction_output(struct gpio_chip *chip,
					  unsigned offset, int value)
{
	void __iomem **reg;
	u32 t;

	reg = GPIO_REG(SWITCH_REG_GPIO_CONF0);

	t = __raw_readl(reg);
	t &= ~(PIN_IM(offset) | PIN_OV(offset));
	t |= PIN_OE(offset);

	if (value)
		t |= PIN_OV(offset);

	__raw_writel(t, reg);

	return 0;
}

static struct gpio_chip adm5120_gpio0_chip = {
	.label			= "adm5120 gpio0",
	.get			= adm5120_gpio0_get_value,
	.set			= adm5120_gpio0_set_value,
	.direction_input	= adm5120_gpio0_direction_input,
	.direction_output	= adm5120_gpio0_direction_output,
	.base			= ADM5120_GPIO_PIN0,
	.ngpio			= ADM5120_GPIO_PIN7 - ADM5120_GPIO_PIN0 + 1,
};

int __adm5120_gpio1_get_value(unsigned offset)
{
	void __iomem **reg;
	u32 t, m;

	reg = gpio1_table[offset].reg;

	t = __raw_readl(reg);
	m = (t >> gpio1_table[offset].mode_shift) & LED_MODE_MASK;
	if (m == LED_MODE_INPUT)
		return (t >> gpio1_table[offset].iv_shift) & 1;

	if (m == LED_MODE_OUT_LOW)
		return 0;

	return 1;
}
EXPORT_SYMBOL(__adm5120_gpio1_get_value);

void __adm5120_gpio1_set_value(unsigned offset, int value)
{
	void __iomem **reg;
	u32 t, s;

	reg = gpio1_table[offset].reg;
	s = gpio1_table[offset].mode_shift;

	t = __raw_readl(reg);
	t &= ~(LED_MODE_MASK << s);

	switch (value) {
	case ADM5120_GPIO_LOW:
		t |= (LED_MODE_OUT_LOW << s);
		break;
	case ADM5120_GPIO_FLASH:
	case ADM5120_GPIO_LINK:
	case ADM5120_GPIO_SPEED:
	case ADM5120_GPIO_DUPLEX:
	case ADM5120_GPIO_ACT:
	case ADM5120_GPIO_COLL:
	case ADM5120_GPIO_LINK_ACT:
	case ADM5120_GPIO_DUPLEX_COLL:
	case ADM5120_GPIO_10M_ACT:
	case ADM5120_GPIO_100M_ACT:
		t |= ((value & LED_MODE_MASK) << s);
		break;
	default:
		t |= (LED_MODE_OUT_HIGH << s);
		break;
	}

	__raw_writel(t, reg);
}
EXPORT_SYMBOL(__adm5120_gpio1_set_value);

static int adm5120_gpio1_get_value(struct gpio_chip *chip, unsigned offset)
{
	return __adm5120_gpio1_get_value(offset);
}

static void adm5120_gpio1_set_value(struct gpio_chip *chip,
				    unsigned offset, int value)
{
	__adm5120_gpio1_set_value(offset, value);
}

static int adm5120_gpio1_direction_input(struct gpio_chip *chip,
					 unsigned offset)
{
	void __iomem **reg;
	u32 t;

	reg = gpio1_table[offset].reg;
	t = __raw_readl(reg);
	t &= ~(LED_MODE_MASK << gpio1_table[offset].mode_shift);
	__raw_writel(t, reg);

	return 0;
}

static int adm5120_gpio1_direction_output(struct gpio_chip *chip,
					  unsigned offset, int value)
{
	__adm5120_gpio1_set_value(offset, value);
	return 0;
}

static struct gpio_chip adm5120_gpio1_chip = {
	.label			= "adm5120 gpio1",
	.get			= adm5120_gpio1_get_value,
	.set			= adm5120_gpio1_set_value,
	.direction_input	= adm5120_gpio1_direction_input,
	.direction_output	= adm5120_gpio1_direction_output,
	.base			= ADM5120_GPIO_P0L0,
	.ngpio			= ADM5120_GPIO_P4L2 - ADM5120_GPIO_P0L0 + 1,
};

void __init adm5120_gpio_csx0_enable(void)
{
	gpio_conf2 |= GPIO_CONF2_CSX0;
	SW_WRITE_REG(SWITCH_REG_GPIO_CONF2, gpio_conf2);

	gpio_request(ADM5120_GPIO_PIN1, "CSX0");
}

void __init adm5120_gpio_csx1_enable(void)
{
	gpio_conf2 |= GPIO_CONF2_CSX1;
	SW_WRITE_REG(SWITCH_REG_GPIO_CONF2, gpio_conf2);

	gpio_request(ADM5120_GPIO_PIN3, "CSX1");
}

void __init adm5120_gpio_ew_enable(void)
{
	gpio_conf2 |= GPIO_CONF2_EW;
	SW_WRITE_REG(SWITCH_REG_GPIO_CONF2, gpio_conf2);

	gpio_request(ADM5120_GPIO_PIN0, "EW");
}

void __init adm5120_gpio_init(void)
{
	int err;

	SW_WRITE_REG(SWITCH_REG_GPIO_CONF2, gpio_conf2);

	if (adm5120_package_pqfp())
		adm5120_gpio0_chip.ngpio = 4;

	err = gpiochip_add(&adm5120_gpio0_chip);
	if (err)
		panic("cannot add ADM5120 GPIO0 chip, error=%d", err);

	err = gpiochip_add(&adm5120_gpio1_chip);
	if (err)
		panic("cannot add ADM5120 GPIO1 chip, error=%d", err);

}