upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
493 B
37 lines
493 B
#ifndef _LPC32XX_I2C_H
|
|
#define _LPC32XX_I2C_H
|
|
|
|
#include <common.h>
|
|
#include <asm/types.h>
|
|
|
|
/* i2c register set */
|
|
struct lpc32xx_i2c_base {
|
|
union {
|
|
u32 rx;
|
|
u32 tx;
|
|
};
|
|
u32 stat;
|
|
u32 ctrl;
|
|
u32 clk_hi;
|
|
u32 clk_lo;
|
|
u32 adr;
|
|
u32 rxfl;
|
|
u32 txfl;
|
|
u32 rxb;
|
|
u32 txb;
|
|
u32 stx;
|
|
u32 stxfl;
|
|
};
|
|
|
|
#ifdef CONFIG_DM_I2C
|
|
enum {
|
|
I2C_0, I2C_1, I2C_2,
|
|
};
|
|
|
|
struct lpc32xx_i2c_dev {
|
|
struct lpc32xx_i2c_base *base;
|
|
int index;
|
|
uint speed;
|
|
};
|
|
#endif /* CONFIG_DM_I2C */
|
|
#endif /* _LPC32XX_I2C_H */
|
|
|