Skip to content
Snippets Groups Projects
Commit fdce7b63 authored by Dan Murphy's avatar Dan Murphy Committed by Tom Rini
Browse files

gpio: omap5-uevm: Configure the tca6424 gpio expander


Configure the tca6424 gpio expander
This allows use of the debug and tri color LEDs.

Signed-off-by: default avatarDan Murphy <dmurphy@ti.com>
parent 61c1775f
No related branches found
No related tags found
No related merge requests found
...@@ -10,6 +10,7 @@ ...@@ -10,6 +10,7 @@
#include <palmas.h> #include <palmas.h>
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <asm/arch/mmc_host_def.h> #include <asm/arch/mmc_host_def.h>
#include <tca642x.h>
#include "mux_data.h" #include "mux_data.h"
...@@ -19,6 +20,25 @@ const struct omap_sysinfo sysinfo = { ...@@ -19,6 +20,25 @@ const struct omap_sysinfo sysinfo = {
"Board: OMAP5430 EVM\n" "Board: OMAP5430 EVM\n"
}; };
/**
* @brief tca642x_init - uEVM default values for the GPIO expander
* input reg, output reg, polarity reg, configuration reg
*/
struct tca642x_bank_info tca642x_init[] = {
{ .input_reg = 0x00,
.output_reg = 0x04,
.polarity_reg = 0x00,
.configuration_reg = 0x80 },
{ .input_reg = 0x00,
.output_reg = 0x00,
.polarity_reg = 0x00,
.configuration_reg = 0xff },
{ .input_reg = 0x00,
.output_reg = 0x00,
.polarity_reg = 0x00,
.configuration_reg = 0x40 },
};
/** /**
* @brief board_init * @brief board_init
* *
...@@ -30,6 +50,8 @@ int board_init(void) ...@@ -30,6 +50,8 @@ int board_init(void)
gd->bd->bi_arch_number = MACH_TYPE_OMAP5_SEVM; gd->bd->bi_arch_number = MACH_TYPE_OMAP5_SEVM;
gd->bd->bi_boot_params = (0x80000000 + 0x100); /* boot param addr */ gd->bd->bi_boot_params = (0x80000000 + 0x100); /* boot param addr */
tca642x_set_inital_state(CONFIG_SYS_I2C_TCA642X_ADDR, tca642x_init);
return 0; return 0;
} }
......
...@@ -40,6 +40,8 @@ const struct pad_conf_entry core_padconf_array_essential[] = { ...@@ -40,6 +40,8 @@ const struct pad_conf_entry core_padconf_array_essential[] = {
{USBD0_HS_DP, (IEN | M0)}, /* USBD0_HS_DP */ {USBD0_HS_DP, (IEN | M0)}, /* USBD0_HS_DP */
{USBD0_HS_DM, (IEN | M0)}, /* USBD0_HS_DM */ {USBD0_HS_DM, (IEN | M0)}, /* USBD0_HS_DM */
{USBD0_SS_RX, (IEN | M0)}, /* USBD0_SS_RX */ {USBD0_SS_RX, (IEN | M0)}, /* USBD0_SS_RX */
{I2C5_SCL, (IEN | M0)}, /* I2C5_SCL */
{I2C5_SDA, (IEN | M0)}, /* I2C5_SDA */
}; };
......
...@@ -37,6 +37,11 @@ ...@@ -37,6 +37,11 @@
#define CONFIG_PARTITION_UUIDS #define CONFIG_PARTITION_UUIDS
#define CONFIG_CMD_PART #define CONFIG_CMD_PART
#define CONFIG_TCA642X
#define CONFIG_CMD_TCA642X
#define CONFIG_SYS_I2C_TCA642X_BUS_NUM 4
#define CONFIG_SYS_I2C_TCA642X_ADDR 0x22
#define CONFIG_SYS_PROMPT "OMAP5432 uEVM # " #define CONFIG_SYS_PROMPT "OMAP5432 uEVM # "
#define CONSOLEDEV "ttyO2" #define CONSOLEDEV "ttyO2"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment