
This patch series add support for new board Nokia RX-51 (aka N900). This patch series supersedes version v1. It was rebased on top of u-boot master and in this version was dropped BootMenu support.
Patch details:
Already commited (dropped) patches: arm,omap3: Define save_boot_params in lowlevel_init.S for SPL only
Dropped patches: Fix function readline in main.c cfb_console: Fix function console_scrollup New config variable CONFIG_MENUCMD New command bootmenu: ANSI terminal Boot Menu support RX-51: Add support for bootmenu
New patches: cfb_console: Fix function console_back cfb_console: Ignore bell character video: cfb_console: flush dcache for frame buffer in DRAM
Anatolij Gustschin (1): video: cfb_console: flush dcache for frame buffer in DRAM
Pali Rohár (10): arm: Optionally use existing atags in bootm.c Add power bus message definitions in twl4030.h cfb_console: Fix function console_back cfb_console: Add function console_clear and console_clear_line cfb_console: Add functions for moving with cursor cfb_console: Add support for some ANSI terminal escape codes cfb_console: Ignore bell character New command clear: Clear the ANSI terminal New config variable CONFIG_PREMONITOR New board support: Nokia RX-51 aka N900
README | 5 + arch/arm/lib/bootm.c | 60 +++--- board/nokia/rx51/Makefile | 46 +++++ board/nokia/rx51/lowlevel_init.S | 71 +++++++ board/nokia/rx51/rx51.c | 380 +++++++++++++++++++++++++++++++++++ board/nokia/rx51/rx51.h | 378 +++++++++++++++++++++++++++++++++++ boards.cfg | 1 + common/Makefile | 1 + common/cmd_clear.c | 42 ++++ common/env_common.c | 3 + common/main.c | 4 + drivers/video/cfb_console.c | 404 +++++++++++++++++++++++++++++++++++--- include/common.h | 7 + include/config_cmd_all.h | 1 + include/configs/nokia_rx51.h | 373 +++++++++++++++++++++++++++++++++++ include/twl4030.h | 98 +++++++++ 16 files changed, 1829 insertions(+), 45 deletions(-) create mode 100644 board/nokia/rx51/Makefile create mode 100644 board/nokia/rx51/lowlevel_init.S create mode 100644 board/nokia/rx51/rx51.c create mode 100644 board/nokia/rx51/rx51.h create mode 100644 common/cmd_clear.c create mode 100644 include/configs/nokia_rx51.h