Skip to content
Snippets Groups Projects
Commit a4adedd4 authored by Stefano Babic's avatar Stefano Babic Committed by Albert ARIBAUD
Browse files

MX35: mx35pdk: make use of GPIO framework


Signed-off-by: default avatarStefano Babic <sbabic@denx.de>
parent 50410078
No related branches found
No related tags found
No related merge requests found
...@@ -34,7 +34,7 @@ ...@@ -34,7 +34,7 @@
#include <mc9sdz60.h> #include <mc9sdz60.h>
#include <mc13892.h> #include <mc13892.h>
#include <linux/types.h> #include <linux/types.h>
#include <mxc_gpio.h> #include <asm/gpio.h>
#include <asm/arch/sys_proto.h> #include <asm/arch/sys_proto.h>
#include <netdev.h> #include <netdev.h>
...@@ -240,8 +240,7 @@ int board_late_init(void) ...@@ -240,8 +240,7 @@ int board_late_init(void)
mxc_request_iomux(MX35_PIN_COMPARE, MUX_CONFIG_GPIO); mxc_request_iomux(MX35_PIN_COMPARE, MUX_CONFIG_GPIO);
mxc_iomux_set_input(MUX_IN_GPIO1_IN_5, INPUT_CTL_PATH0); mxc_iomux_set_input(MUX_IN_GPIO1_IN_5, INPUT_CTL_PATH0);
mxc_gpio_direction(37, MXC_GPIO_DIRECTION_OUT); gpio_direction_output(37, 1);
mxc_gpio_set(37, 1);
} }
val = mc9sdz60_reg_read(MC9SDZ60_REG_GPIO_1) | 0x04; val = mc9sdz60_reg_read(MC9SDZ60_REG_GPIO_1) | 0x04;
......
...@@ -63,6 +63,7 @@ ...@@ -63,6 +63,7 @@
#define CONFIG_SYS_I2C_SPEED 100000 #define CONFIG_SYS_I2C_SPEED 100000
#define CONFIG_SYS_I2C_SLAVE 0xfe #define CONFIG_SYS_I2C_SLAVE 0xfe
#define CONFIG_MXC_SPI #define CONFIG_MXC_SPI
#define CONFIG_MXC_GPIO
/* /*
......
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