
This patch series intend to support MPC5121e based PDM360NG board. Patches preceding the actual board support patch 6 prepare needed infrastructure for the PDM360NG board.
Anatolij Gustschin (6): mpc512x: make MEM IO Control configuration a board config option mpc512x: add multi serial PSC support mpc5121: add PSC serial communication routines fsl_diu_fb.c: add support for RLE8 bitmaps fdt_support: add partitions fixup in mtd node mpc5121: add support for PDM360NG board
MAKEALL | 1 + Makefile | 3 + board/freescale/common/fsl_diu_fb.c | 107 ++++++- board/pdm360ng/Makefile | 51 +++ board/pdm360ng/config.mk | 24 ++ board/pdm360ng/pdm360ng.c | 618 +++++++++++++++++++++++++++++++++++ common/cmd_mtdparts.c | 2 +- common/fdt_support.c | 214 ++++++++++++ common/serial.c | 23 ++ cpu/mpc512x/diu.c | 14 +- cpu/mpc512x/fixed_sdram.c | 2 +- cpu/mpc512x/serial.c | 353 ++++++++++++++++++-- include/asm-ppc/immap_512x.h | 112 +++---- include/configs/aria.h | 2 + include/configs/mecp5123.h | 2 + include/configs/mpc5121ads.h | 2 + include/configs/pdm360ng.h | 525 +++++++++++++++++++++++++++++ include/fdt_support.h | 2 + include/jffs2/load_kernel.h | 1 + include/mtd_node.h | 11 + include/post.h | 1 + include/serial.h | 15 + post/tests.c | 4 + 23 files changed, 1996 insertions(+), 93 deletions(-) create mode 100644 board/pdm360ng/Makefile create mode 100644 board/pdm360ng/config.mk create mode 100644 board/pdm360ng/pdm360ng.c create mode 100644 include/configs/pdm360ng.h create mode 100644 include/mtd_node.h