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
|
/*
* Copyright 2013 Google Inc.
*
* 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.
*/
#include <arch/io.h>
#include <console/console.h>
#include <cpu/ti/am335x/gpio.h>
#include <stdint.h>
#include <stdlib.h>
static struct am335x_gpio_regs *gpio_regs_and_bit(unsigned gpio, uint32_t *bit)
{
unsigned bank = gpio / AM335X_GPIO_BITS_PER_BANK;
if (bank >= ARRAY_SIZE(am335x_gpio_banks)) {
printk(BIOS_ERR, "Bad gpio index %d.\n", gpio);
return NULL;
}
*bit = 1 << (gpio % 32);
return am335x_gpio_banks[bank];
}
void am335x_disable_gpio_irqs(void)
{
int i;
for (i = 0; i < ARRAY_SIZE(am335x_gpio_banks); i++)
write32(&am335x_gpio_banks[i]->irqstatus_clr_0, 0xffffffff);
}
int gpio_direction_input(unsigned gpio)
{
uint32_t bit;
struct am335x_gpio_regs *regs = gpio_regs_and_bit(gpio, &bit);
if (!regs)
return -1;
setbits_le32(®s->oe, bit);
return 0;
}
int gpio_direction_output(unsigned gpio, int value)
{
uint32_t bit;
struct am335x_gpio_regs *regs = gpio_regs_and_bit(gpio, &bit);
if (!regs)
return -1;
if (value)
write32(®s->setdataout, bit);
else
write32(®s->cleardataout, bit);
clrbits_le32(®s->oe, bit);
return 0;
}
int gpio_get_value(unsigned gpio)
{
uint32_t bit;
struct am335x_gpio_regs *regs = gpio_regs_and_bit(gpio, &bit);
if (!regs)
return -1;
return (read32(®s->datain) & bit) ? 1 : 0;
}
int gpio_set_value(unsigned gpio, int value)
{
uint32_t bit;
struct am335x_gpio_regs *regs = gpio_regs_and_bit(gpio, &bit);
if (!regs)
return -1;
if (value)
write32(®s->setdataout, bit);
else
write32(®s->cleardataout, bit);
return 0;
}
|