bfin_gpio.c 29.5 KB
Newer Older
B
Bryan Wu 已提交
1 2 3 4 5 6 7 8 9
/*
 * File:         arch/blackfin/kernel/bfin_gpio.c
 * Based on:
 * Author:       Michael Hennerich (hennerich@blackfin.uclinux.org)
 *
 * Created:
 * Description:  GPIO Abstraction Layer
 *
 * Modified:
10
 *               Copyright 2008 Analog Devices Inc.
B
Bryan Wu 已提交
11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30
 *
 * Bugs:         Enter bugs at http://blackfin.uclinux.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, see the file COPYING, or write
 * to the Free Software Foundation, Inc.,
 * 51 Franklin St, Fifth Floor, Boston, MA  02110-1301  USA
 */

/*
31
*  Number     BF537/6/4    BF561    BF533/2/1	   BF549/8/4/2
B
Bryan Wu 已提交
32
*
33
*  GPIO_0       PF0         PF0        PF0	   PA0...PJ13
B
Bryan Wu 已提交
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
*  GPIO_1       PF1         PF1        PF1
*  GPIO_2       PF2         PF2        PF2
*  GPIO_3       PF3         PF3        PF3
*  GPIO_4       PF4         PF4        PF4
*  GPIO_5       PF5         PF5        PF5
*  GPIO_6       PF6         PF6        PF6
*  GPIO_7       PF7         PF7        PF7
*  GPIO_8       PF8         PF8        PF8
*  GPIO_9       PF9         PF9        PF9
*  GPIO_10      PF10        PF10       PF10
*  GPIO_11      PF11        PF11       PF11
*  GPIO_12      PF12        PF12       PF12
*  GPIO_13      PF13        PF13       PF13
*  GPIO_14      PF14        PF14       PF14
*  GPIO_15      PF15        PF15       PF15
*  GPIO_16      PG0         PF16
*  GPIO_17      PG1         PF17
*  GPIO_18      PG2         PF18
*  GPIO_19      PG3         PF19
*  GPIO_20      PG4         PF20
*  GPIO_21      PG5         PF21
*  GPIO_22      PG6         PF22
*  GPIO_23      PG7         PF23
*  GPIO_24      PG8         PF24
*  GPIO_25      PG9         PF25
*  GPIO_26      PG10        PF26
*  GPIO_27      PG11        PF27
*  GPIO_28      PG12        PF28
*  GPIO_29      PG13        PF29
*  GPIO_30      PG14        PF30
*  GPIO_31      PG15        PF31
*  GPIO_32      PH0         PF32
*  GPIO_33      PH1         PF33
*  GPIO_34      PH2         PF34
*  GPIO_35      PH3         PF35
*  GPIO_36      PH4         PF36
*  GPIO_37      PH5         PF37
*  GPIO_38      PH6         PF38
*  GPIO_39      PH7         PF39
*  GPIO_40      PH8         PF40
*  GPIO_41      PH9         PF41
*  GPIO_42      PH10        PF42
*  GPIO_43      PH11        PF43
*  GPIO_44      PH12        PF44
*  GPIO_45      PH13        PF45
*  GPIO_46      PH14        PF46
*  GPIO_47      PH15        PF47
*/

83
#include <linux/delay.h>
B
Bryan Wu 已提交
84 85
#include <linux/module.h>
#include <linux/err.h>
86
#include <linux/proc_fs.h>
B
Bryan Wu 已提交
87 88
#include <asm/blackfin.h>
#include <asm/gpio.h>
89
#include <asm/portmux.h>
B
Bryan Wu 已提交
90 91
#include <linux/irq.h>

92 93 94 95 96 97
#if ANOMALY_05000311 || ANOMALY_05000323
enum {
	AWA_data = SYSCR,
	AWA_data_clear = SYSCR,
	AWA_data_set = SYSCR,
	AWA_toggle = SYSCR,
98 99 100 101 102 103 104 105
	AWA_maska = BFIN_UART_SCR,
	AWA_maska_clear = BFIN_UART_SCR,
	AWA_maska_set = BFIN_UART_SCR,
	AWA_maska_toggle = BFIN_UART_SCR,
	AWA_maskb = BFIN_UART_GCTL,
	AWA_maskb_clear = BFIN_UART_GCTL,
	AWA_maskb_set = BFIN_UART_GCTL,
	AWA_maskb_toggle = BFIN_UART_GCTL,
106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121
	AWA_dir = SPORT1_STAT,
	AWA_polar = SPORT1_STAT,
	AWA_edge = SPORT1_STAT,
	AWA_both = SPORT1_STAT,
#if ANOMALY_05000311
	AWA_inen = TIMER_ENABLE,
#elif ANOMALY_05000323
	AWA_inen = DMA1_1_CONFIG,
#endif
};
	/* Anomaly Workaround */
#define AWA_DUMMY_READ(name) bfin_read16(AWA_ ## name)
#else
#define AWA_DUMMY_READ(...)  do { } while (0)
#endif

B
Bryan Wu 已提交
122 123 124 125 126 127
#ifdef BF533_FAMILY
static struct gpio_port_t *gpio_bankb[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
	(struct gpio_port_t *) FIO_FLAG_D,
};
#endif

128
#if defined(BF527_FAMILY) || defined(BF537_FAMILY)
B
Bryan Wu 已提交
129 130 131 132 133 134 135 136 137 138 139 140 141
static struct gpio_port_t *gpio_bankb[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
	(struct gpio_port_t *) PORTFIO,
	(struct gpio_port_t *) PORTGIO,
	(struct gpio_port_t *) PORTHIO,
};

static unsigned short *port_fer[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
	(unsigned short *) PORTF_FER,
	(unsigned short *) PORTG_FER,
	(unsigned short *) PORTH_FER,
};
#endif

142 143 144 145 146 147 148 149 150 151 152 153 154 155 156
#ifdef BF527_FAMILY
static unsigned short *port_mux[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
	(unsigned short *) PORTF_MUX,
	(unsigned short *) PORTG_MUX,
	(unsigned short *) PORTH_MUX,
};

static const
u8 pmux_offset[][16] =
	{{ 0, 0, 0, 0, 0, 0, 0, 0, 2, 2, 4, 6, 8, 8, 10, 10 }, /* PORTF */
	 { 0, 0, 0, 0, 0, 2, 2, 4, 4, 6, 8, 10, 10, 10, 12, 12 }, /* PORTG */
	 { 0, 0, 0, 0, 0, 0, 0, 0, 2, 4, 4, 4, 4, 4, 4, 4 }, /* PORTH */
	};
#endif

B
Bryan Wu 已提交
157 158 159 160 161 162 163 164
#ifdef BF561_FAMILY
static struct gpio_port_t *gpio_bankb[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
	(struct gpio_port_t *) FIO0_FLAG_D,
	(struct gpio_port_t *) FIO1_FLAG_D,
	(struct gpio_port_t *) FIO2_FLAG_D,
};
#endif

165 166 167 168 169 170 171 172 173 174 175 176 177 178 179
#ifdef BF548_FAMILY
static struct gpio_port_t *gpio_array[gpio_bank(MAX_BLACKFIN_GPIOS)] = {
	(struct gpio_port_t *)PORTA_FER,
	(struct gpio_port_t *)PORTB_FER,
	(struct gpio_port_t *)PORTC_FER,
	(struct gpio_port_t *)PORTD_FER,
	(struct gpio_port_t *)PORTE_FER,
	(struct gpio_port_t *)PORTF_FER,
	(struct gpio_port_t *)PORTG_FER,
	(struct gpio_port_t *)PORTH_FER,
	(struct gpio_port_t *)PORTI_FER,
	(struct gpio_port_t *)PORTJ_FER,
};
#endif

180
static unsigned short reserved_gpio_map[gpio_bank(MAX_BLACKFIN_GPIOS)];
181
static unsigned short reserved_peri_map[gpio_bank(MAX_RESOURCES)];
182

183 184
#define RESOURCE_LABEL_SIZE 	16

185
static struct str_ident {
186
	char name[RESOURCE_LABEL_SIZE];
187
} str_ident[MAX_RESOURCES];
B
Bryan Wu 已提交
188

189
#if defined(CONFIG_PM) && !defined(CONFIG_BF54x)
B
Bryan Wu 已提交
190 191 192 193 194 195 196 197 198 199 200 201
static unsigned short wakeup_map[gpio_bank(MAX_BLACKFIN_GPIOS)];
static unsigned char wakeup_flags_map[MAX_BLACKFIN_GPIOS];
static struct gpio_port_s gpio_bank_saved[gpio_bank(MAX_BLACKFIN_GPIOS)];

#ifdef BF533_FAMILY
static unsigned int sic_iwr_irqs[gpio_bank(MAX_BLACKFIN_GPIOS)] = {IRQ_PROG_INTB};
#endif

#ifdef BF537_FAMILY
static unsigned int sic_iwr_irqs[gpio_bank(MAX_BLACKFIN_GPIOS)] = {IRQ_PROG_INTB, IRQ_PORTG_INTB, IRQ_MAC_TX};
#endif

202 203 204 205
#ifdef BF527_FAMILY
static unsigned int sic_iwr_irqs[gpio_bank(MAX_BLACKFIN_GPIOS)] = {IRQ_PORTF_INTB, IRQ_PORTG_INTB, IRQ_PORTH_INTB};
#endif

B
Bryan Wu 已提交
206 207 208 209 210 211
#ifdef BF561_FAMILY
static unsigned int sic_iwr_irqs[gpio_bank(MAX_BLACKFIN_GPIOS)] = {IRQ_PROG0_INTB, IRQ_PROG1_INTB, IRQ_PROG2_INTB};
#endif

#endif /* CONFIG_PM */

212
#if defined(BF548_FAMILY)
213
inline int check_gpio(unsigned gpio)
214 215 216 217 218 219 220 221 222
{
	if (gpio == GPIO_PB15 || gpio == GPIO_PC14 || gpio == GPIO_PC15
	    || gpio == GPIO_PH14 || gpio == GPIO_PH15
	    || gpio == GPIO_PJ14 || gpio == GPIO_PJ15
	    || gpio > MAX_BLACKFIN_GPIOS)
		return -EINVAL;
	return 0;
}
#else
223
inline int check_gpio(unsigned gpio)
B
Bryan Wu 已提交
224
{
225
	if (gpio >= MAX_BLACKFIN_GPIOS)
B
Bryan Wu 已提交
226 227 228
		return -EINVAL;
	return 0;
}
229
#endif
B
Bryan Wu 已提交
230

231 232 233 234 235
void gpio_error(unsigned gpio)
{
	printk(KERN_ERR "bfin-gpio: GPIO %d wasn't requested!\n", gpio);
}

236 237 238
static void set_label(unsigned short ident, const char *label)
{
	if (label && str_ident) {
239
		strncpy(str_ident[ident].name, label,
240
			 RESOURCE_LABEL_SIZE);
241
		str_ident[ident].name[RESOURCE_LABEL_SIZE - 1] = 0;
242 243 244 245 246 247 248 249
	}
}

static char *get_label(unsigned short ident)
{
	if (!str_ident)
		return "UNKNOWN";

250
	return (*str_ident[ident].name ? str_ident[ident].name : "UNKNOWN");
251 252 253 254
}

static int cmp_label(unsigned short ident, const char *label)
{
255 256 257 258 259
	if (label == NULL) {
		dump_stack();
		printk(KERN_ERR "Please provide none-null label\n");
	}

260
	if (label && str_ident)
261
		return strncmp(str_ident[ident].name,
262 263 264 265 266
				 label, strlen(label));
	else
		return -EINVAL;
}

267
#if defined(BF527_FAMILY) || defined(BF537_FAMILY)
268
static void port_setup(unsigned gpio, unsigned short usage)
B
Bryan Wu 已提交
269
{
270
	if (!check_gpio(gpio)) {
271
		if (usage == GPIO_USAGE)
272
			*port_fer[gpio_bank(gpio)] &= ~gpio_bit(gpio);
273
		else
274 275 276
			*port_fer[gpio_bank(gpio)] |= gpio_bit(gpio);
		SSYNC();
	}
B
Bryan Wu 已提交
277
}
278
#elif defined(BF548_FAMILY)
279
static void port_setup(unsigned gpio, unsigned short usage)
280 281 282 283 284 285 286
{
	if (usage == GPIO_USAGE)
		gpio_array[gpio_bank(gpio)]->port_fer &= ~gpio_bit(gpio);
	else
		gpio_array[gpio_bank(gpio)]->port_fer |= gpio_bit(gpio);
	SSYNC();
}
B
Bryan Wu 已提交
287 288 289 290
#else
# define port_setup(...)  do { } while (0)
#endif

291
#ifdef BF537_FAMILY
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 329 330 331 332 333 334 335 336
static struct {
	unsigned short res;
	unsigned short offset;
} port_mux_lut[] = {
	{.res = P_PPI0_D13, .offset = 11},
	{.res = P_PPI0_D14, .offset = 11},
	{.res = P_PPI0_D15, .offset = 11},
	{.res = P_SPORT1_TFS, .offset = 11},
	{.res = P_SPORT1_TSCLK, .offset = 11},
	{.res = P_SPORT1_DTPRI, .offset = 11},
	{.res = P_PPI0_D10, .offset = 10},
	{.res = P_PPI0_D11, .offset = 10},
	{.res = P_PPI0_D12, .offset = 10},
	{.res = P_SPORT1_RSCLK, .offset = 10},
	{.res = P_SPORT1_RFS, .offset = 10},
	{.res = P_SPORT1_DRPRI, .offset = 10},
	{.res = P_PPI0_D8, .offset = 9},
	{.res = P_PPI0_D9, .offset = 9},
	{.res = P_SPORT1_DRSEC, .offset = 9},
	{.res = P_SPORT1_DTSEC, .offset = 9},
	{.res = P_TMR2, .offset = 8},
	{.res = P_PPI0_FS3, .offset = 8},
	{.res = P_TMR3, .offset = 7},
	{.res = P_SPI0_SSEL4, .offset = 7},
	{.res = P_TMR4, .offset = 6},
	{.res = P_SPI0_SSEL5, .offset = 6},
	{.res = P_TMR5, .offset = 5},
	{.res = P_SPI0_SSEL6, .offset = 5},
	{.res = P_UART1_RX, .offset = 4},
	{.res = P_UART1_TX, .offset = 4},
	{.res = P_TMR6, .offset = 4},
	{.res = P_TMR7, .offset = 4},
	{.res = P_UART0_RX, .offset = 3},
	{.res = P_UART0_TX, .offset = 3},
	{.res = P_DMAR0, .offset = 3},
	{.res = P_DMAR1, .offset = 3},
	{.res = P_SPORT0_DTSEC, .offset = 1},
	{.res = P_SPORT0_DRSEC, .offset = 1},
	{.res = P_CAN0_RX, .offset = 1},
	{.res = P_CAN0_TX, .offset = 1},
	{.res = P_SPI0_SSEL7, .offset = 1},
	{.res = P_SPORT0_TFS, .offset = 0},
	{.res = P_SPORT0_DTPRI, .offset = 0},
	{.res = P_SPI0_SSEL2, .offset = 0},
	{.res = P_SPI0_SSEL3, .offset = 0},
337 338 339 340
};

static void portmux_setup(unsigned short per, unsigned short function)
{
341
	u16 y, offset, muxreg;
342

343 344
	for (y = 0; y < ARRAY_SIZE(port_mux_lut); y++) {
		if (port_mux_lut[y].res == per) {
345 346 347

			/* SET PORTMUX REG */

348
			offset = port_mux_lut[y].offset;
349 350
			muxreg = bfin_read_PORT_MUX();

351
			if (offset != 1)
352
				muxreg &= ~(1 << offset);
353
			else
354 355 356 357 358 359 360
				muxreg &= ~(3 << 1);

			muxreg |= (function << offset);
			bfin_write_PORT_MUX(muxreg);
		}
	}
}
361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376
#elif defined(BF548_FAMILY)
inline void portmux_setup(unsigned short portno, unsigned short function)
{
	u32 pmux;

	pmux = gpio_array[gpio_bank(portno)]->port_mux;

	pmux &= ~(0x3 << (2 * gpio_sub_n(portno)));
	pmux |= (function & 0x3) << (2 * gpio_sub_n(portno));

	gpio_array[gpio_bank(portno)]->port_mux = pmux;
}

inline u16 get_portmux(unsigned short portno)
{
	u32 pmux;
377

378 379 380 381
	pmux = gpio_array[gpio_bank(portno)]->port_mux;

	return (pmux >> (2 * gpio_sub_n(portno)) & 0x3);
}
382 383 384 385 386 387 388 389 390 391 392 393
#elif defined(BF527_FAMILY)
inline void portmux_setup(unsigned short portno, unsigned short function)
{
	u16 pmux, ident = P_IDENT(portno);
	u8 offset = pmux_offset[gpio_bank(ident)][gpio_sub_n(ident)];

	pmux = *port_mux[gpio_bank(ident)];
	pmux &= ~(3 << offset);
	pmux |= (function & 3) << offset;
	*port_mux[gpio_bank(ident)] = pmux;
	SSYNC();
}
394 395 396
#else
# define portmux_setup(...)  do { } while (0)
#endif
B
Bryan Wu 已提交
397

398
#ifndef BF548_FAMILY
399
static void default_gpio(unsigned gpio)
B
Bryan Wu 已提交
400
{
401
	unsigned short bank, bitmask;
402
	unsigned long flags;
B
Bryan Wu 已提交
403 404 405 406

	bank = gpio_bank(gpio);
	bitmask = gpio_bit(gpio);

407 408
	local_irq_save(flags);

B
Bryan Wu 已提交
409 410 411 412 413 414 415 416
	gpio_bankb[bank]->maska_clear = bitmask;
	gpio_bankb[bank]->maskb_clear = bitmask;
	SSYNC();
	gpio_bankb[bank]->inen &= ~bitmask;
	gpio_bankb[bank]->dir &= ~bitmask;
	gpio_bankb[bank]->polar &= ~bitmask;
	gpio_bankb[bank]->both &= ~bitmask;
	gpio_bankb[bank]->edge &= ~bitmask;
417 418
	AWA_DUMMY_READ(edge);
	local_irq_restore(flags);
B
Bryan Wu 已提交
419
}
420 421 422
#else
# define default_gpio(...)  do { } while (0)
#endif
B
Bryan Wu 已提交
423

424
static int __init bfin_gpio_init(void)
B
Bryan Wu 已提交
425
{
426
	printk(KERN_INFO "Blackfin GPIO Controller\n");
B
Bryan Wu 已提交
427 428 429 430 431 432

	return 0;
}
arch_initcall(bfin_gpio_init);


433
#ifndef BF548_FAMILY
B
Bryan Wu 已提交
434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453
/***********************************************************
*
* FUNCTIONS: Blackfin General Purpose Ports Access Functions
*
* INPUTS/OUTPUTS:
* gpio - GPIO Number between 0 and MAX_BLACKFIN_GPIOS
*
*
* DESCRIPTION: These functions abstract direct register access
*              to Blackfin processor General Purpose
*              Ports Regsiters
*
* CAUTION: These functions do not belong to the GPIO Driver API
*************************************************************
* MODIFICATION HISTORY :
**************************************************************/

/* Set a specific bit */

#define SET_GPIO(name) \
454
void set_gpio_ ## name(unsigned gpio, unsigned short arg) \
B
Bryan Wu 已提交
455 456 457 458 459 460 461
{ \
	unsigned long flags; \
	local_irq_save(flags); \
	if (arg) \
		gpio_bankb[gpio_bank(gpio)]->name |= gpio_bit(gpio); \
	else \
		gpio_bankb[gpio_bank(gpio)]->name &= ~gpio_bit(gpio); \
462
	AWA_DUMMY_READ(name); \
B
Bryan Wu 已提交
463 464 465 466 467 468 469 470 471 472 473
	local_irq_restore(flags); \
} \
EXPORT_SYMBOL(set_gpio_ ## name);

SET_GPIO(dir)
SET_GPIO(inen)
SET_GPIO(polar)
SET_GPIO(edge)
SET_GPIO(both)


474 475
#if ANOMALY_05000311 || ANOMALY_05000323
#define SET_GPIO_SC(name) \
476
void set_gpio_ ## name(unsigned gpio, unsigned short arg) \
477 478 479 480 481 482 483 484 485 486 487 488
{ \
	unsigned long flags; \
	local_irq_save(flags); \
	if (arg) \
		gpio_bankb[gpio_bank(gpio)]->name ## _set = gpio_bit(gpio); \
	else \
		gpio_bankb[gpio_bank(gpio)]->name ## _clear = gpio_bit(gpio); \
	AWA_DUMMY_READ(name); \
	local_irq_restore(flags); \
} \
EXPORT_SYMBOL(set_gpio_ ## name);
#else
B
Bryan Wu 已提交
489
#define SET_GPIO_SC(name) \
490
void set_gpio_ ## name(unsigned gpio, unsigned short arg) \
B
Bryan Wu 已提交
491 492 493 494 495 496 497
{ \
	if (arg) \
		gpio_bankb[gpio_bank(gpio)]->name ## _set = gpio_bit(gpio); \
	else \
		gpio_bankb[gpio_bank(gpio)]->name ## _clear = gpio_bit(gpio); \
} \
EXPORT_SYMBOL(set_gpio_ ## name);
498
#endif
B
Bryan Wu 已提交
499 500 501 502 503

SET_GPIO_SC(maska)
SET_GPIO_SC(maskb)
SET_GPIO_SC(data)

504
#if ANOMALY_05000311 || ANOMALY_05000323
505
void set_gpio_toggle(unsigned gpio)
B
Bryan Wu 已提交
506 507 508 509
{
	unsigned long flags;
	local_irq_save(flags);
	gpio_bankb[gpio_bank(gpio)]->toggle = gpio_bit(gpio);
510
	AWA_DUMMY_READ(toggle);
B
Bryan Wu 已提交
511 512 513
	local_irq_restore(flags);
}
#else
514
void set_gpio_toggle(unsigned gpio)
B
Bryan Wu 已提交
515 516 517 518 519 520 521 522 523
{
	gpio_bankb[gpio_bank(gpio)]->toggle = gpio_bit(gpio);
}
#endif
EXPORT_SYMBOL(set_gpio_toggle);


/*Set current PORT date (16-bit word)*/

524
#if ANOMALY_05000311 || ANOMALY_05000323
B
Bryan Wu 已提交
525
#define SET_GPIO_P(name) \
526
void set_gpiop_ ## name(unsigned gpio, unsigned short arg) \
B
Bryan Wu 已提交
527
{ \
528 529
	unsigned long flags; \
	local_irq_save(flags); \
B
Bryan Wu 已提交
530
	gpio_bankb[gpio_bank(gpio)]->name = arg; \
531 532
	AWA_DUMMY_READ(name); \
	local_irq_restore(flags); \
B
Bryan Wu 已提交
533 534
} \
EXPORT_SYMBOL(set_gpiop_ ## name);
535 536
#else
#define SET_GPIO_P(name) \
537
void set_gpiop_ ## name(unsigned gpio, unsigned short arg) \
538 539 540 541 542
{ \
	gpio_bankb[gpio_bank(gpio)]->name = arg; \
} \
EXPORT_SYMBOL(set_gpiop_ ## name);
#endif
B
Bryan Wu 已提交
543

544
SET_GPIO_P(data)
B
Bryan Wu 已提交
545 546 547 548 549 550 551 552 553
SET_GPIO_P(dir)
SET_GPIO_P(inen)
SET_GPIO_P(polar)
SET_GPIO_P(edge)
SET_GPIO_P(both)
SET_GPIO_P(maska)
SET_GPIO_P(maskb)

/* Get a specific bit */
554 555
#if ANOMALY_05000311 || ANOMALY_05000323
#define GET_GPIO(name) \
556
unsigned short get_gpio_ ## name(unsigned gpio) \
557 558 559 560 561 562 563 564 565 566 567
{ \
	unsigned long flags; \
	unsigned short ret; \
	local_irq_save(flags); \
	ret = 0x01 & (gpio_bankb[gpio_bank(gpio)]->name >> gpio_sub_n(gpio)); \
	AWA_DUMMY_READ(name); \
	local_irq_restore(flags); \
	return ret; \
} \
EXPORT_SYMBOL(get_gpio_ ## name);
#else
B
Bryan Wu 已提交
568
#define GET_GPIO(name) \
569
unsigned short get_gpio_ ## name(unsigned gpio) \
B
Bryan Wu 已提交
570 571 572 573
{ \
	return (0x01 & (gpio_bankb[gpio_bank(gpio)]->name >> gpio_sub_n(gpio))); \
} \
EXPORT_SYMBOL(get_gpio_ ## name);
574
#endif
B
Bryan Wu 已提交
575

576
GET_GPIO(data)
B
Bryan Wu 已提交
577 578 579 580 581 582 583 584 585 586
GET_GPIO(dir)
GET_GPIO(inen)
GET_GPIO(polar)
GET_GPIO(edge)
GET_GPIO(both)
GET_GPIO(maska)
GET_GPIO(maskb)

/*Get current PORT date (16-bit word)*/

587 588
#if ANOMALY_05000311 || ANOMALY_05000323
#define GET_GPIO_P(name) \
589
unsigned short get_gpiop_ ## name(unsigned gpio) \
590 591 592 593 594 595 596 597 598 599 600
{ \
	unsigned long flags; \
	unsigned short ret; \
	local_irq_save(flags); \
	ret = (gpio_bankb[gpio_bank(gpio)]->name); \
	AWA_DUMMY_READ(name); \
	local_irq_restore(flags); \
	return ret; \
} \
EXPORT_SYMBOL(get_gpiop_ ## name);
#else
B
Bryan Wu 已提交
601
#define GET_GPIO_P(name) \
602
unsigned short get_gpiop_ ## name(unsigned gpio) \
B
Bryan Wu 已提交
603 604 605 606
{ \
	return (gpio_bankb[gpio_bank(gpio)]->name);\
} \
EXPORT_SYMBOL(get_gpiop_ ## name);
607
#endif
B
Bryan Wu 已提交
608

609
GET_GPIO_P(data)
B
Bryan Wu 已提交
610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638
GET_GPIO_P(dir)
GET_GPIO_P(inen)
GET_GPIO_P(polar)
GET_GPIO_P(edge)
GET_GPIO_P(both)
GET_GPIO_P(maska)
GET_GPIO_P(maskb)


#ifdef CONFIG_PM
/***********************************************************
*
* FUNCTIONS: Blackfin PM Setup API
*
* INPUTS/OUTPUTS:
* gpio - GPIO Number between 0 and MAX_BLACKFIN_GPIOS
* type -
*	PM_WAKE_RISING
*	PM_WAKE_FALLING
*	PM_WAKE_HIGH
*	PM_WAKE_LOW
*	PM_WAKE_BOTH_EDGES
*
* DESCRIPTION: Blackfin PM Driver API
*
* CAUTION:
*************************************************************
* MODIFICATION HISTORY :
**************************************************************/
639
int gpio_pm_wakeup_request(unsigned gpio, unsigned char type)
B
Bryan Wu 已提交
640 641 642 643 644 645 646 647 648 649 650 651 652 653 654
{
	unsigned long flags;

	if ((check_gpio(gpio) < 0) || !type)
		return -EINVAL;

	local_irq_save(flags);
	wakeup_map[gpio_bank(gpio)] |= gpio_bit(gpio);
	wakeup_flags_map[gpio] = type;
	local_irq_restore(flags);

	return 0;
}
EXPORT_SYMBOL(gpio_pm_wakeup_request);

655
void gpio_pm_wakeup_free(unsigned gpio)
B
Bryan Wu 已提交
656 657 658 659 660 661 662 663 664 665 666 667 668 669
{
	unsigned long flags;

	if (check_gpio(gpio) < 0)
		return;

	local_irq_save(flags);

	wakeup_map[gpio_bank(gpio)] &= ~gpio_bit(gpio);

	local_irq_restore(flags);
}
EXPORT_SYMBOL(gpio_pm_wakeup_free);

670
static int bfin_gpio_wakeup_type(unsigned gpio, unsigned char type)
B
Bryan Wu 已提交
671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695
{
	port_setup(gpio, GPIO_USAGE);
	set_gpio_dir(gpio, 0);
	set_gpio_inen(gpio, 1);

	if (type & (PM_WAKE_RISING | PM_WAKE_FALLING))
		set_gpio_edge(gpio, 1);
	 else
		set_gpio_edge(gpio, 0);

	if ((type & (PM_WAKE_BOTH_EDGES)) == (PM_WAKE_BOTH_EDGES))
		set_gpio_both(gpio, 1);
	else
		set_gpio_both(gpio, 0);

	if ((type & (PM_WAKE_FALLING | PM_WAKE_LOW)))
		set_gpio_polar(gpio, 1);
	else
		set_gpio_polar(gpio, 0);

	SSYNC();

	return 0;
}

696
u32 bfin_pm_setup(void)
B
Bryan Wu 已提交
697 698 699
{
	u16 bank, mask, i, gpio;

700
	for (i = 0; i < MAX_BLACKFIN_GPIOS; i += GPIO_BANKSIZE) {
B
Bryan Wu 已提交
701 702 703 704 705 706 707 708 709 710 711 712 713 714 715
		mask = wakeup_map[gpio_bank(i)];
		bank = gpio_bank(i);

		gpio_bank_saved[bank].maskb = gpio_bankb[bank]->maskb;
		gpio_bankb[bank]->maskb = 0;

		if (mask) {
#ifdef BF537_FAMILY
			gpio_bank_saved[bank].fer   = *port_fer[bank];
#endif
			gpio_bank_saved[bank].inen  = gpio_bankb[bank]->inen;
			gpio_bank_saved[bank].polar = gpio_bankb[bank]->polar;
			gpio_bank_saved[bank].dir   = gpio_bankb[bank]->dir;
			gpio_bank_saved[bank].edge  = gpio_bankb[bank]->edge;
			gpio_bank_saved[bank].both  = gpio_bankb[bank]->both;
716 717
			gpio_bank_saved[bank].reserved =
						reserved_gpio_map[bank];
B
Bryan Wu 已提交
718 719 720 721

			gpio = i;

			while (mask) {
722 723
				if ((mask & 1) && (wakeup_flags_map[gpio] !=
					PM_WAKE_IGNORE)) {
724
					reserved_gpio_map[gpio_bank(gpio)] |=
725 726 727
							gpio_bit(gpio);
					bfin_gpio_wakeup_type(gpio,
						wakeup_flags_map[gpio]);
B
Bryan Wu 已提交
728 729 730 731 732 733
					set_gpio_data(gpio, 0); /*Clear*/
				}
				gpio++;
				mask >>= 1;
			}

734
			bfin_internal_set_wake(sic_iwr_irqs[bank], 1);
B
Bryan Wu 已提交
735 736 737 738
			gpio_bankb[bank]->maskb_set = wakeup_map[gpio_bank(i)];
		}
	}

739 740
	AWA_DUMMY_READ(maskb_set);

741
	return 0;
B
Bryan Wu 已提交
742 743
}

744
void bfin_pm_restore(void)
B
Bryan Wu 已提交
745 746 747
{
	u16 bank, mask, i;

748
	for (i = 0; i < MAX_BLACKFIN_GPIOS; i += GPIO_BANKSIZE) {
B
Bryan Wu 已提交
749 750 751 752 753 754 755 756 757 758 759 760
		mask = wakeup_map[gpio_bank(i)];
		bank = gpio_bank(i);

		if (mask) {
#ifdef BF537_FAMILY
			*port_fer[bank]   	= gpio_bank_saved[bank].fer;
#endif
			gpio_bankb[bank]->inen  = gpio_bank_saved[bank].inen;
			gpio_bankb[bank]->dir   = gpio_bank_saved[bank].dir;
			gpio_bankb[bank]->polar = gpio_bank_saved[bank].polar;
			gpio_bankb[bank]->edge  = gpio_bank_saved[bank].edge;
			gpio_bankb[bank]->both  = gpio_bank_saved[bank].both;
761

762 763
			reserved_gpio_map[bank] =
					gpio_bank_saved[bank].reserved;
764
			bfin_internal_set_wake(sic_iwr_irqs[bank], 0);
B
Bryan Wu 已提交
765 766 767 768
		}

		gpio_bankb[bank]->maskb = gpio_bank_saved[bank].maskb;
	}
769
	AWA_DUMMY_READ(maskb);
B
Bryan Wu 已提交
770 771 772
}

#endif
773 774
#else /* BF548_FAMILY */

775
unsigned short get_gpio_dir(unsigned gpio)
776 777 778 779 780
{
	return (0x01 & (gpio_array[gpio_bank(gpio)]->port_dir_clear >> gpio_sub_n(gpio)));
}
EXPORT_SYMBOL(get_gpio_dir);

781
#endif /* BF548_FAMILY */
B
Bryan Wu 已提交
782

783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807
/***********************************************************
*
* FUNCTIONS: 	Blackfin Peripheral Resource Allocation
*		and PortMux Setup
*
* INPUTS/OUTPUTS:
* per	Peripheral Identifier
* label	String
*
* DESCRIPTION: Blackfin Peripheral Resource Allocation and Setup API
*
* CAUTION:
*************************************************************
* MODIFICATION HISTORY :
**************************************************************/

#ifdef BF548_FAMILY
int peripheral_request(unsigned short per, const char *label)
{
	unsigned long flags;
	unsigned short ident = P_IDENT(per);

	/*
	 * Don't cares are pins with only one dedicated function
	 */
808

809 810 811 812 813 814 815 816
	if (per & P_DONTCARE)
		return 0;

	if (!(per & P_DEFINED))
		return -ENODEV;

	if (check_gpio(ident) < 0)
		return -EINVAL;
817

818 819 820
	local_irq_save(flags);

	if (unlikely(reserved_gpio_map[gpio_bank(ident)] & gpio_bit(ident))) {
821
		dump_stack();
822 823
		printk(KERN_ERR
		    "%s: Peripheral %d is already reserved as GPIO by %s !\n",
824
		       __func__, ident, get_label(ident));
825 826 827 828 829 830 831 832
		local_irq_restore(flags);
		return -EBUSY;
	}

	if (unlikely(reserved_peri_map[gpio_bank(ident)] & gpio_bit(ident))) {

		u16 funct = get_portmux(ident);

833 834 835 836
		/*
		 * Pin functions like AMC address strobes my
		 * be requested and used by several drivers
		 */
837 838 839

		if (!((per & P_MAYSHARE) && (funct == P_FUNCT2MUX(per)))) {

840 841 842 843
			/*
			 * Allow that the identical pin function can
			 * be requested from the same driver twice
			 */
844

845 846
			if (cmp_label(ident, label) == 0)
				goto anyway;
847

848
			dump_stack();
849 850
			printk(KERN_ERR
			       "%s: Peripheral %d function %d is already reserved by %s !\n",
851
			       __func__, ident, P_FUNCT2MUX(per), get_label(ident));
852 853 854 855 856
			local_irq_restore(flags);
			return -EBUSY;
		}
	}

857
 anyway:
858 859 860 861 862 863 864 865 866 867 868 869
	reserved_peri_map[gpio_bank(ident)] |= gpio_bit(ident);

	portmux_setup(ident, P_FUNCT2MUX(per));
	port_setup(ident, PERIPHERAL_USAGE);

	local_irq_restore(flags);
	set_label(ident, label);

	return 0;
}
EXPORT_SYMBOL(peripheral_request);
#else
870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887

int peripheral_request(unsigned short per, const char *label)
{
	unsigned long flags;
	unsigned short ident = P_IDENT(per);

	/*
	 * Don't cares are pins with only one dedicated function
	 */

	if (per & P_DONTCARE)
		return 0;

	if (!(per & P_DEFINED))
		return -ENODEV;

	local_irq_save(flags);

888 889
	if (!check_gpio(ident)) {

890 891 892 893
		if (unlikely(reserved_gpio_map[gpio_bank(ident)] & gpio_bit(ident))) {
			dump_stack();
			printk(KERN_ERR
			       "%s: Peripheral %d is already reserved as GPIO by %s !\n",
894
			       __func__, ident, get_label(ident));
895 896 897
			local_irq_restore(flags);
			return -EBUSY;
		}
898

899 900
	}

901 902
	if (unlikely(reserved_peri_map[gpio_bank(ident)] & gpio_bit(ident))) {

903 904 905 906
		/*
		 * Pin functions like AMC address strobes my
		 * be requested and used by several drivers
		 */
907

908
		if (!(per & P_MAYSHARE)) {
909

910 911 912 913
			/*
			 * Allow that the identical pin function can
			 * be requested from the same driver twice
			 */
914

915 916
			if (cmp_label(ident, label) == 0)
				goto anyway;
917

918
			dump_stack();
919 920
			printk(KERN_ERR
			       "%s: Peripheral %d function %d is already"
921
			       " reserved by %s !\n",
922
			       __func__, ident, P_FUNCT2MUX(per),
923 924 925 926 927 928 929
				get_label(ident));
			local_irq_restore(flags);
			return -EBUSY;
		}

	}

930
 anyway:
931 932 933 934 935 936 937 938 939 940 941
	portmux_setup(per, P_FUNCT2MUX(per));

	port_setup(ident, PERIPHERAL_USAGE);

	reserved_peri_map[gpio_bank(ident)] |= gpio_bit(ident);
	local_irq_restore(flags);
	set_label(ident, label);

	return 0;
}
EXPORT_SYMBOL(peripheral_request);
942
#endif
943 944 945 946 947 948 949

int peripheral_request_list(unsigned short per[], const char *label)
{
	u16 cnt;
	int ret;

	for (cnt = 0; per[cnt] != 0; cnt++) {
950

951
		ret = peripheral_request(per[cnt], label);
952 953

		if (ret < 0) {
954
			for ( ; cnt > 0; cnt--)
955
				peripheral_free(per[cnt - 1]);
956 957

			return ret;
958
		}
959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980
	}

	return 0;
}
EXPORT_SYMBOL(peripheral_request_list);

void peripheral_free(unsigned short per)
{
	unsigned long flags;
	unsigned short ident = P_IDENT(per);

	if (per & P_DONTCARE)
		return;

	if (!(per & P_DEFINED))
		return;

	if (check_gpio(ident) < 0)
		return;

	local_irq_save(flags);

981
	if (unlikely(!(reserved_peri_map[gpio_bank(ident)] & gpio_bit(ident)))) {
982 983 984 985
		local_irq_restore(flags);
		return;
	}

986
	if (!(per & P_MAYSHARE))
987 988 989 990
		port_setup(ident, GPIO_USAGE);

	reserved_peri_map[gpio_bank(ident)] &= ~gpio_bit(ident);

991 992
	set_label(ident, "free");

993 994 995 996 997 998 999
	local_irq_restore(flags);
}
EXPORT_SYMBOL(peripheral_free);

void peripheral_free_list(unsigned short per[])
{
	u16 cnt;
1000
	for (cnt = 0; per[cnt] != 0; cnt++)
1001 1002 1003 1004
		peripheral_free(per[cnt]);
}
EXPORT_SYMBOL(peripheral_free_list);

B
Bryan Wu 已提交
1005 1006 1007 1008 1009
/***********************************************************
*
* FUNCTIONS: Blackfin GPIO Driver
*
* INPUTS/OUTPUTS:
1010 1011
* gpio	PIO Number between 0 and MAX_BLACKFIN_GPIOS
* label	String
B
Bryan Wu 已提交
1012 1013 1014 1015 1016 1017 1018 1019
*
* DESCRIPTION: Blackfin GPIO Driver API
*
* CAUTION:
*************************************************************
* MODIFICATION HISTORY :
**************************************************************/

1020
int gpio_request(unsigned gpio, const char *label)
B
Bryan Wu 已提交
1021 1022 1023 1024 1025 1026 1027 1028
{
	unsigned long flags;

	if (check_gpio(gpio) < 0)
		return -EINVAL;

	local_irq_save(flags);

1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039
	/*
	 * Allow that the identical GPIO can
	 * be requested from the same driver twice
	 * Do nothing and return -
	 */

	if (cmp_label(gpio, label) == 0) {
		local_irq_restore(flags);
		return 0;
	}

1040
	if (unlikely(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) {
1041
		dump_stack();
1042 1043 1044 1045 1046 1047
		printk(KERN_ERR "bfin-gpio: GPIO %d is already reserved by %s !\n",
			 gpio, get_label(gpio));
		local_irq_restore(flags);
		return -EBUSY;
	}
	if (unlikely(reserved_peri_map[gpio_bank(gpio)] & gpio_bit(gpio))) {
1048
		dump_stack();
1049 1050 1051
		printk(KERN_ERR
		       "bfin-gpio: GPIO %d is already reserved as Peripheral by %s !\n",
		       gpio, get_label(gpio));
B
Bryan Wu 已提交
1052 1053 1054
		local_irq_restore(flags);
		return -EBUSY;
	}
1055

1056
	reserved_gpio_map[gpio_bank(gpio)] |= gpio_bit(gpio);
B
Bryan Wu 已提交
1057 1058 1059 1060

	local_irq_restore(flags);

	port_setup(gpio, GPIO_USAGE);
1061
	set_label(gpio, label);
B
Bryan Wu 已提交
1062 1063 1064 1065 1066

	return 0;
}
EXPORT_SYMBOL(gpio_request);

1067
void gpio_free(unsigned gpio)
B
Bryan Wu 已提交
1068 1069 1070 1071 1072 1073 1074 1075
{
	unsigned long flags;

	if (check_gpio(gpio) < 0)
		return;

	local_irq_save(flags);

1076
	if (unlikely(!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio)))) {
B
Bryan Wu 已提交
1077
		dump_stack();
1078
		gpio_error(gpio);
B
Bryan Wu 已提交
1079 1080 1081 1082 1083 1084
		local_irq_restore(flags);
		return;
	}

	default_gpio(gpio);

1085
	reserved_gpio_map[gpio_bank(gpio)] &= ~gpio_bit(gpio);
B
Bryan Wu 已提交
1086

1087 1088
	set_label(gpio, "free");

B
Bryan Wu 已提交
1089 1090 1091 1092
	local_irq_restore(flags);
}
EXPORT_SYMBOL(gpio_free);

1093

1094
#ifdef BF548_FAMILY
1095
int gpio_direction_input(unsigned gpio)
1096 1097 1098
{
	unsigned long flags;

1099 1100 1101 1102 1103
	if (!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) {
		gpio_error(gpio);
		return -EINVAL;
	}

1104 1105 1106 1107
	local_irq_save(flags);
	gpio_array[gpio_bank(gpio)]->port_dir_clear = gpio_bit(gpio);
	gpio_array[gpio_bank(gpio)]->port_inen |= gpio_bit(gpio);
	local_irq_restore(flags);
1108 1109

	return 0;
1110 1111 1112
}
EXPORT_SYMBOL(gpio_direction_input);

1113
int gpio_direction_output(unsigned gpio, int value)
1114 1115 1116
{
	unsigned long flags;

1117 1118 1119 1120
	if (!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) {
		gpio_error(gpio);
		return -EINVAL;
	}
1121 1122 1123

	local_irq_save(flags);
	gpio_array[gpio_bank(gpio)]->port_inen &= ~gpio_bit(gpio);
1124
	gpio_set_value(gpio, value);
1125 1126
	gpio_array[gpio_bank(gpio)]->port_dir_set = gpio_bit(gpio);
	local_irq_restore(flags);
1127 1128

	return 0;
1129 1130 1131
}
EXPORT_SYMBOL(gpio_direction_output);

1132
void gpio_set_value(unsigned gpio, int arg)
1133 1134 1135 1136 1137 1138 1139 1140
{
	if (arg)
		gpio_array[gpio_bank(gpio)]->port_set = gpio_bit(gpio);
	else
		gpio_array[gpio_bank(gpio)]->port_clear = gpio_bit(gpio);
}
EXPORT_SYMBOL(gpio_set_value);

1141
int gpio_get_value(unsigned gpio)
1142 1143 1144 1145 1146 1147 1148
{
	return (1 & (gpio_array[gpio_bank(gpio)]->port_data >> gpio_sub_n(gpio)));
}
EXPORT_SYMBOL(gpio_get_value);

#else

1149
int gpio_direction_input(unsigned gpio)
B
Bryan Wu 已提交
1150 1151 1152
{
	unsigned long flags;

1153 1154 1155 1156
	if (!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) {
		gpio_error(gpio);
		return -EINVAL;
	}
B
Bryan Wu 已提交
1157 1158 1159 1160

	local_irq_save(flags);
	gpio_bankb[gpio_bank(gpio)]->dir &= ~gpio_bit(gpio);
	gpio_bankb[gpio_bank(gpio)]->inen |= gpio_bit(gpio);
1161
	AWA_DUMMY_READ(inen);
B
Bryan Wu 已提交
1162
	local_irq_restore(flags);
1163 1164

	return 0;
B
Bryan Wu 已提交
1165 1166 1167
}
EXPORT_SYMBOL(gpio_direction_input);

1168
int gpio_direction_output(unsigned gpio, int value)
B
Bryan Wu 已提交
1169 1170 1171
{
	unsigned long flags;

1172 1173 1174 1175
	if (!(reserved_gpio_map[gpio_bank(gpio)] & gpio_bit(gpio))) {
		gpio_error(gpio);
		return -EINVAL;
	}
B
Bryan Wu 已提交
1176 1177 1178

	local_irq_save(flags);
	gpio_bankb[gpio_bank(gpio)]->inen &= ~gpio_bit(gpio);
1179 1180 1181 1182 1183 1184

	if (value)
		gpio_bankb[gpio_bank(gpio)]->data_set = gpio_bit(gpio);
	else
		gpio_bankb[gpio_bank(gpio)]->data_clear = gpio_bit(gpio);

B
Bryan Wu 已提交
1185
	gpio_bankb[gpio_bank(gpio)]->dir |= gpio_bit(gpio);
1186
	AWA_DUMMY_READ(dir);
B
Bryan Wu 已提交
1187
	local_irq_restore(flags);
1188 1189

	return 0;
B
Bryan Wu 已提交
1190 1191
}
EXPORT_SYMBOL(gpio_direction_output);
1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204

/* If we are booting from SPI and our board lacks a strong enough pull up,
 * the core can reset and execute the bootrom faster than the resistor can
 * pull the signal logically high.  To work around this (common) error in
 * board design, we explicitly set the pin back to GPIO mode, force /CS
 * high, and wait for the electrons to do their thing.
 *
 * This function only makes sense to be called from reset code, but it
 * lives here as we need to force all the GPIO states w/out going through
 * BUG() checks and such.
 */
void bfin_gpio_reset_spi0_ssel1(void)
{
1205 1206 1207 1208
	u16 gpio = P_IDENT(P_SPI0_SSEL1);

	port_setup(gpio, GPIO_USAGE);
	gpio_bankb[gpio_bank(gpio)]->data_set = gpio_bit(gpio);
1209
	AWA_DUMMY_READ(data_set);
1210 1211
	udelay(1);
}
1212 1213

#endif /*BF548_FAMILY */
1214 1215 1216 1217 1218 1219 1220 1221 1222

#if defined(CONFIG_PROC_FS)
static int gpio_proc_read(char *buf, char **start, off_t offset,
			  int len, int *unused_i, void *unused_v)
{
	int c, outlen = 0;

	for (c = 0; c < MAX_RESOURCES; c++) {
		if (!check_gpio(c) && (reserved_gpio_map[gpio_bank(c)] & gpio_bit(c)))
1223
			len = sprintf(buf, "GPIO_%d: %s \t\tGPIO %s\n", c,
1224 1225
				 get_label(c), get_gpio_dir(c) ? "OUTPUT" : "INPUT");
		else if (reserved_peri_map[gpio_bank(c)] & gpio_bit(c))
1226
			len = sprintf(buf, "GPIO_%d: %s \t\tPeripheral\n", c, get_label(c));
1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245
		else
			continue;
		buf += len;
		outlen += len;
	}
	return outlen;
}

static __init int gpio_register_proc(void)
{
	struct proc_dir_entry *proc_gpio;

	proc_gpio = create_proc_entry("gpio", S_IRUGO, NULL);
	if (proc_gpio)
		proc_gpio->read_proc = gpio_proc_read;
	return proc_gpio != NULL;
}
__initcall(gpio_register_proc);
#endif