summaryrefslogtreecommitdiffstats
path: root/arch/ppc/mach-mpc85xx/fsl_gpio.c
blob: 468c780ff87ff8824aac5b31bdc26f0fc1295111 (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
/*
 * Copyright 2013 GE Intelligent Platforms, 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.
 *
 * Minimal GPIO support.
 */

#include <common.h>
#include <errno.h>
#include <asm/io.h>
#include <mach/gpio.h>
#include <mach/immap_85xx.h>

#ifdef CONFIG_MPC8544
/* Enable all GPIO output pins */
void fsl_enable_gpiout(void)
{
	void __iomem *gpiocr = IOMEM(MPC85xx_GUTS_ADDR + MPC85xx_GPIOCR_OFFSET);

	out_be32(gpiocr, in_be32(gpiocr) | MPC85xx_GPIOCR_GPOUT);
}

void gpio_set_value(unsigned gpio, int val)
{
	void __iomem *gpout = IOMEM(MPC85xx_GUTS_ADDR + MPC85xx_GPOUTDR_OFFSET);
	int gpoutdr;

	if (gpio >= 8)
		return;

	gpoutdr = in_be32(gpout);
	if (val)
		gpoutdr |= MPC85xx_GPIOBIT(gpio);
	else
		gpoutdr &= ~MPC85xx_GPIOBIT(gpio);
	out_be32(gpout, gpoutdr);
}
#else
int gpio_direction_output(unsigned gpio, int val)
{
	void __iomem *gpior = IOMEM(MPC85xx_GPIO_ADDR);

	if (gpio >= 16)
		return -EINVAL;

	if (val)
		setbits_be32(gpior + MPC85xx_GPIO_GPDAT_OFFSET,
				1 << (32 - gpio));
	else
		clrbits_be32(gpior + MPC85xx_GPIO_GPDAT_OFFSET,
				1 << (32 - gpio));

	setbits_be32(gpior + MPC85xx_GPIO_GPDIR_OFFSET, 1 << (32 - gpio));

	return 0;
}
#endif