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

mxc_i2c: Add support for the i.MX35 processor


Signed-off-by: default avatarStefano Babic <sbabic@denx.de>
CC: Heiko Schocher <hs@denx.de>
Acked-by: default avatarHeiko Schocher <hs@denx.de>
parent 1b22b0d3
No related branches found
No related tags found
No related merge requests found
...@@ -29,9 +29,8 @@ ...@@ -29,9 +29,8 @@
#if defined(CONFIG_MX31) #if defined(CONFIG_MX31)
#include <asm/arch/mx31.h> #include <asm/arch/mx31.h>
#include <asm/arch/mx31-regs.h> #include <asm/arch/mx31-regs.h>
#endif #else
#include <asm/arch/imx-regs.h>
#if defined(CONFIG_MX53)
#include <asm/arch/clock.h> #include <asm/arch/clock.h>
#endif #endif
...@@ -66,8 +65,10 @@ ...@@ -66,8 +65,10 @@
#define I2C_BASE I2C1_BASE_ADDR #define I2C_BASE I2C1_BASE_ADDR
#elif defined(CONFIG_SYS_I2C_MX53_PORT2) #elif defined(CONFIG_SYS_I2C_MX53_PORT2)
#define I2C_BASE I2C2_BASE_ADDR #define I2C_BASE I2C2_BASE_ADDR
#elif defined(CONFIG_SYS_I2C_MX35_PORT1)
#define I2C_BASE I2C_BASE_ADDR
#else #else
#error "define CONFIG_SYS_I2C_MXxx_PORTx to use the I2C driver" #error "define CONFIG_SYS_I2C_MX<Processor>_PORTx to use the mx I2C driver"
#endif #endif
#ifdef DEBUG #ifdef DEBUG
......
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