2007-03-24 14:57:09 +00:00
|
|
|
/*
|
2008-03-11 15:53:00 +00:00
|
|
|
* (C) Copyright 2007-2008
|
2007-03-24 14:57:09 +00:00
|
|
|
* Stefan Roese, DENX Software Engineering, sr@denx.de.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2007-03-24 14:57:09 +00:00
|
|
|
*/
|
|
|
|
|
2007-11-15 13:23:55 +00:00
|
|
|
#ifndef __ASM_PPC_GPIO_H
|
|
|
|
#define __ASM_PPC_GPIO_H
|
|
|
|
|
2009-07-20 10:15:38 +00:00
|
|
|
#include <asm/types.h>
|
|
|
|
|
2007-03-24 14:57:09 +00:00
|
|
|
/* 4xx PPC's have 2 GPIO controllers */
|
|
|
|
#if defined(CONFIG_405EZ) || \
|
|
|
|
defined(CONFIG_440EP) || defined(CONFIG_440GR) || \
|
2008-03-11 15:53:00 +00:00
|
|
|
defined(CONFIG_440EPX) || defined(CONFIG_440GRX) || \
|
|
|
|
defined(CONFIG_460EX) || defined(CONFIG_460GT)
|
2007-03-24 14:57:09 +00:00
|
|
|
#define GPIO_GROUP_MAX 2
|
|
|
|
#else
|
|
|
|
#define GPIO_GROUP_MAX 1
|
|
|
|
#endif
|
|
|
|
|
2009-07-20 10:15:38 +00:00
|
|
|
/* GPIO controller */
|
|
|
|
struct ppc4xx_gpio {
|
|
|
|
u32 or; /* Output Control */
|
|
|
|
u32 tcr; /* Tri-State Control */
|
|
|
|
u32 osl; /* Output Select 16..31 */
|
|
|
|
u32 osh; /* Output Select 0..15 */
|
|
|
|
u32 tsl; /* Tri-State Select 16..31 */
|
|
|
|
u32 tsh; /* Tri-State Select 0..15 */
|
|
|
|
u32 odr; /* Open Drain */
|
|
|
|
u32 ir; /* Input */
|
|
|
|
u32 rr1; /* Receive Register 1 */
|
|
|
|
u32 rr2; /* Receive Register 2 */
|
|
|
|
u32 rr3; /* Receive Register 3 */
|
|
|
|
u32 reserved;
|
|
|
|
u32 is1l; /* Input Select 1 16..31 */
|
|
|
|
u32 is1h; /* Input Select 1 0..15 */
|
|
|
|
u32 is2l; /* Input Select 2 16..31 */
|
|
|
|
u32 is2h; /* Input Select 2 0..15 */
|
|
|
|
u32 is3l; /* Input Select 3 16..31 */
|
|
|
|
u32 is3h; /* Input Select 3 0..15 */
|
|
|
|
};
|
|
|
|
|
2007-11-15 13:23:55 +00:00
|
|
|
/* Offsets */
|
|
|
|
#define GPIOx_OR 0x00 /* GPIO Output Register */
|
|
|
|
#define GPIOx_TCR 0x04 /* GPIO Three-State Control Register */
|
|
|
|
#define GPIOx_OSL 0x08 /* GPIO Output Select Register (Bits 0-31) */
|
|
|
|
#define GPIOx_OSH 0x0C /* GPIO Ouput Select Register (Bits 32-63) */
|
|
|
|
#define GPIOx_TSL 0x10 /* GPIO Three-State Select Register (Bits 0-31) */
|
|
|
|
#define GPIOx_TSH 0x14 /* GPIO Three-State Select Register (Bits 32-63) */
|
|
|
|
#define GPIOx_ODR 0x18 /* GPIO Open drain Register */
|
|
|
|
#define GPIOx_IR 0x1C /* GPIO Input Register */
|
|
|
|
#define GPIOx_RR1 0x20 /* GPIO Receive Register 1 */
|
|
|
|
#define GPIOx_RR2 0x24 /* GPIO Receive Register 2 */
|
|
|
|
#define GPIOx_RR3 0x28 /* GPIO Receive Register 3 */
|
|
|
|
#define GPIOx_IS1L 0x30 /* GPIO Input Select Register 1 (Bits 0-31) */
|
|
|
|
#define GPIOx_IS1H 0x34 /* GPIO Input Select Register 1 (Bits 32-63) */
|
|
|
|
#define GPIOx_IS2L 0x38 /* GPIO Input Select Register 2 (Bits 0-31) */
|
|
|
|
#define GPIOx_IS2H 0x3C /* GPIO Input Select Register 2 (Bits 32-63) */
|
|
|
|
#define GPIOx_IS3L 0x40 /* GPIO Input Select Register 3 (Bits 0-31) */
|
|
|
|
#define GPIOx_IS3H 0x44 /* GPIO Input Select Register 3 (Bits 32-63) */
|
|
|
|
|
|
|
|
#define GPIO_OR(x) (x+GPIOx_OR) /* GPIO Output Register */
|
|
|
|
#define GPIO_TCR(x) (x+GPIOx_TCR) /* GPIO Three-State Control Register */
|
|
|
|
#define GPIO_OS(x) (x+GPIOx_OSL) /* GPIO Output Select Register High or Low */
|
|
|
|
#define GPIO_TS(x) (x+GPIOx_TSL) /* GPIO Three-state Control Reg High or Low */
|
|
|
|
#define GPIO_IS1(x) (x+GPIOx_IS1L) /* GPIO Input register1 High or Low */
|
|
|
|
#define GPIO_IS2(x) (x+GPIOx_IS2L) /* GPIO Input register2 High or Low */
|
|
|
|
#define GPIO_IS3(x) (x+GPIOx_IS3L) /* GPIO Input register3 High or Low */
|
|
|
|
|
|
|
|
#define GPIO0 0
|
|
|
|
#define GPIO1 1
|
|
|
|
|
2007-03-24 14:57:09 +00:00
|
|
|
#define GPIO_MAX 32
|
|
|
|
#define GPIO_ALT1_SEL 0x40000000
|
|
|
|
#define GPIO_ALT2_SEL 0x80000000
|
|
|
|
#define GPIO_ALT3_SEL 0xc0000000
|
|
|
|
#define GPIO_IN_SEL 0x40000000
|
|
|
|
#define GPIO_MASK 0xc0000000
|
|
|
|
|
|
|
|
#define GPIO_VAL(gpio) (0x80000000 >> (gpio))
|
|
|
|
|
|
|
|
#ifndef __ASSEMBLY__
|
|
|
|
typedef enum gpio_select { GPIO_SEL, GPIO_ALT1, GPIO_ALT2, GPIO_ALT3 } gpio_select_t;
|
|
|
|
typedef enum gpio_driver { GPIO_DIS, GPIO_IN, GPIO_OUT, GPIO_BI } gpio_driver_t;
|
|
|
|
typedef enum gpio_out { GPIO_OUT_0, GPIO_OUT_1, GPIO_OUT_NO_CHG } gpio_out_t;
|
|
|
|
|
|
|
|
typedef struct {
|
2007-06-15 05:39:43 +00:00
|
|
|
unsigned long add; /* gpio core base address */
|
|
|
|
gpio_driver_t in_out; /* Driver Setting */
|
|
|
|
gpio_select_t alt_nb; /* Selected Alternate */
|
|
|
|
gpio_out_t out_val;/* Default Output Value */
|
2007-03-24 14:57:09 +00:00
|
|
|
} gpio_param_s;
|
|
|
|
#endif
|
|
|
|
|
|
|
|
void gpio_config(int pin, int in_out, int gpio_alt, int out_val);
|
|
|
|
void gpio_write_bit(int pin, int val);
|
2007-06-15 05:39:43 +00:00
|
|
|
int gpio_read_out_bit(int pin);
|
ppc4xx: Add functionality to GPIO support
This patch makes two additions to GPIO support:
First, it adds function gpio_read_in_bit() to read the a bit from the
GPIO Input Register (GPIOx_IR) in the same way that function
gpio_read_out_bit() reads a bit from the GPIO Output Register
(GPIOx_OR).
Second, it modifies function gpio_set_chip_configuration() to provide
an additional option for configuring the GPIO from the
"CFG_4xx_GPIO_TABLE".
According to the 440EPx User's Manual, when an alternate output is used,
the three-state control is configured in one of two ways, depending on
the particular output. The first option is to select the corresponding
alternate three-state control in the GPIOx_TRSH/L registers. The second
option is to select the GPIO Three-State Control Register (GPIOx_TCR) in
the GPIOx_TRSH/L registers, and set the corresponding bit in the
GPIOx_TCR register to enable the output. For example, the Manual
specifies configuring the GPIO00 Alternate 1 Signal (PreAddr07) to use
the alternate three-state control (first option), and specifies
configuring the GPIO32 Alternate 1 Signal (USB2OM0) with the output
enabled in the GPIOx_TCR register (second option).
Currently, gpio_set_chip_configuration() configures all alternate signal
outputs to use the first option. This patch allow the second option to
be selected by setting the "out_val" element in the table entry to
"GPIO_OUT_1". The first option is used when the "out_val" element is
set to "GPIO_OUT_0". Because "out_val" is not currently used when an
alternate signal is selected, and because all current GPIO tables set
"out_val" to "GPIO_OUT_0" for all alternate signals, this patch should
not change any existing configurations.
Signed-off-by: Larry Johnson <lrj@acm.org>
2008-01-03 23:54:00 +00:00
|
|
|
int gpio_read_in_bit(int pin);
|
2007-03-24 14:57:09 +00:00
|
|
|
void gpio_set_chip_configuration(void);
|
2007-11-15 13:23:55 +00:00
|
|
|
|
|
|
|
#endif /* __ASM_PPC_GPIO_H */
|