
The following changes since commit 1f1554841a4c8e069d331176f0c3059fb2bb8280: Wolfgang Denk (1): Merge branch 'master' of /home/wd/git/u-boot/custodians
are available in the git repository at:
git://www.denx.de/git/u-boot-blackfin.git review
Mike Frysinger (14): Blackfin: make baud calculation more accurate Blackfin: fix up UART status bit handling Blackfin: fix up comment about CONFIG_BFIN_BOOT_MODE Blackfin: punt unused page_descriptor_table_size definition Blackfin: punt mem_init.h since it is no longer used Blackfin: update cpu header definitions from latest Blackfin toolchain Blackfin: punt unused BF533-STAMP definitions Blackfin: resurrect BF533-STAMP video splash driver Blackfin: touchup BF561-EZKIT board file Blackfin: set default boot SPI CS for BF538/BF539 Blackfin: kill conversion warnings in async nand driver Blackfin: tighten up post memory coding style Blackfin: overhaul i2c driver Blackfin: implement go/boote wrappers
board/bf533-stamp/Makefile | 9 +- board/bf533-stamp/bf533-stamp.c | 1 - board/bf533-stamp/bf533-stamp.h | 3 - board/bf533-stamp/video.c | 257 +++++++++++++ board/bf533-stamp/video.h | 25 ++ board/bf537-stamp/nand.c | 8 +- board/bf537-stamp/post-memory.c | 23 +- board/bf537-stamp/spi_flash.c | 4 +- board/bf561-ezkit/bf561-ezkit.c | 6 +- cpu/blackfin/Makefile | 2 +- cpu/blackfin/i2c.c | 444 ----------------------- cpu/blackfin/initcode.c | 2 +- cpu/blackfin/serial.c | 72 +++- cpu/blackfin/serial.h | 8 +- drivers/i2c/Makefile | 1 + drivers/i2c/bfin-twi_i2c.c | 298 +++++++++++++++ include/asm-blackfin/blackfin-config-pre.h | 4 +- include/asm-blackfin/cplb.h | 7 +- include/asm-blackfin/mach-common/bits/lockbox.h | 70 ++-- include/asm-blackfin/mem_init.h | 321 ---------------- include/configs/bf533-ezkit.h | 2 +- include/configs/bf533-stamp.h | 2 +- include/configs/bf537-stamp.h | 43 +-- lib_blackfin/Makefile | 2 +- lib_blackfin/{bootm.c => boot.c} | 20 + 25 files changed, 738 insertions(+), 896 deletions(-) create mode 100644 board/bf533-stamp/video.c create mode 100644 board/bf533-stamp/video.h delete mode 100644 cpu/blackfin/i2c.c create mode 100644 drivers/i2c/bfin-twi_i2c.c delete mode 100644 include/asm-blackfin/mem_init.h rename lib_blackfin/{bootm.c => boot.c} (80%)