summaryrefslogtreecommitdiffstats
path: root/drivers/gpio/bcm2835_gpio.c
blob: 97b51371145e81de9f268a33f001c72d6f63ff98 (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
/*
 * Copyright (C) 2012 Vikram Narayananan
 * <vikram186@gmail.com>
 *
 * SPDX-License-Identifier:	GPL-2.0+
 */

#include <common.h>
#include <asm/gpio.h>
#include <asm/io.h>

inline int gpio_is_valid(unsigned gpio)
{
	return (gpio < BCM2835_GPIO_COUNT);
}

int gpio_request(unsigned gpio, const char *label)
{
	return !gpio_is_valid(gpio);
}

int gpio_free(unsigned gpio)
{
	return 0;
}

int gpio_direction_input(unsigned gpio)
{
	struct bcm2835_gpio_regs *reg =
		(struct bcm2835_gpio_regs *)BCM2835_GPIO_BASE;
	unsigned val;

	val = readl(&reg->gpfsel[BCM2835_GPIO_FSEL_BANK(gpio)]);
	val &= ~(BCM2835_GPIO_FSEL_MASK << BCM2835_GPIO_FSEL_SHIFT(gpio));
	val |= (BCM2835_GPIO_INPUT << BCM2835_GPIO_FSEL_SHIFT(gpio));
	writel(val, &reg->gpfsel[BCM2835_GPIO_FSEL_BANK(gpio)]);

	return 0;
}

int gpio_direction_output(unsigned gpio, int value)
{
	struct bcm2835_gpio_regs *reg =
		(struct bcm2835_gpio_regs *)BCM2835_GPIO_BASE;
	unsigned val;

	gpio_set_value(gpio, value);

	val = readl(&reg->gpfsel[BCM2835_GPIO_FSEL_BANK(gpio)]);
	val &= ~(BCM2835_GPIO_FSEL_MASK << BCM2835_GPIO_FSEL_SHIFT(gpio));
	val |= (BCM2835_GPIO_OUTPUT << BCM2835_GPIO_FSEL_SHIFT(gpio));
	writel(val, &reg->gpfsel[BCM2835_GPIO_FSEL_BANK(gpio)]);

	return 0;
}

int gpio_get_value(unsigned gpio)
{
	struct bcm2835_gpio_regs *reg =
		(struct bcm2835_gpio_regs *)BCM2835_GPIO_BASE;
	unsigned val;

	val = readl(&reg->gplev[BCM2835_GPIO_COMMON_BANK(gpio)]);

	return (val >> BCM2835_GPIO_COMMON_SHIFT(gpio)) & 0x1;
}

int gpio_set_value(unsigned gpio, int value)
{
	struct bcm2835_gpio_regs *reg =
		(struct bcm2835_gpio_regs *)BCM2835_GPIO_BASE;
	u32 *output_reg = value ? reg->gpset : reg->gpclr;

	writel(1 << BCM2835_GPIO_COMMON_SHIFT(gpio),
				&output_reg[BCM2835_GPIO_COMMON_BANK(gpio)]);

	return 0;
}
OpenPOWER on IntegriCloud