blob: 4a30564358fd43206dbca8ff2fcd87a312fbb89e (
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
|
/*
* board gpio driver
*
* Copyright (C) 2010 Thomas Chou <thomas@wytron.com.tw>
* Licensed under the GPL-2 or later.
*/
#include <common.h>
#include <asm/io.h>
#ifndef CONFIG_SYS_GPIO_BASE
#define ALTERA_PIO_BASE LED_PIO_BASE
#define ALTERA_PIO_WIDTH LED_PIO_WIDTH
#define ALTERA_PIO_DATA (ALTERA_PIO_BASE + 0)
#define ALTERA_PIO_DIR (ALTERA_PIO_BASE + 4)
static u32 pio_data_reg;
static u32 pio_dir_reg;
int gpio_request(unsigned gpio, const char *label)
{
return 0;
}
int gpio_free(unsigned gpio)
{
return 0;
}
int gpio_direction_input(unsigned gpio)
{
u32 mask = 1 << gpio;
writel(pio_dir_reg &= ~mask, ALTERA_PIO_DIR);
return 0;
}
int gpio_direction_output(unsigned gpio, int value)
{
u32 mask = 1 << gpio;
if (value)
pio_data_reg |= mask;
else
pio_data_reg &= ~mask;
writel(pio_data_reg, ALTERA_PIO_DATA);
writel(pio_dir_reg |= mask, ALTERA_PIO_DIR);
return 0;
}
int gpio_get_value(unsigned gpio)
{
u32 mask = 1 << gpio;
if (pio_dir_reg & mask)
return (pio_data_reg & mask) ? 1 : 0;
else
return (readl(ALTERA_PIO_DATA) & mask) ? 1 : 0;
}
void gpio_set_value(unsigned gpio, int value)
{
u32 mask = 1 << gpio;
if (value)
pio_data_reg |= mask;
else
pio_data_reg &= ~mask;
writel(pio_data_reg, ALTERA_PIO_DATA);
}
int gpio_is_valid(int number)
{
return ((unsigned)number) < ALTERA_PIO_WIDTH;
}
#endif
|