public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/7] Add support for PDM360NG board
@ 2010-03-16 16:10 Anatolij Gustschin
  2010-03-16 16:10 ` [U-Boot] [PATCH v2 1/7] mpc512x: make MEM IO Control configuration a board config option Anatolij Gustschin
  2010-03-21 19:00 ` [U-Boot] [PATCH v2 0/7] Add support for PDM360NG board Wolfgang Denk
  0 siblings, 2 replies; 34+ messages in thread
From: Anatolij Gustschin @ 2010-03-16 16:10 UTC (permalink / raw)
  To: u-boot

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.

Changes since first version:
 - addressed comments, detailed log of changes is
   provided in patch description.

NOTE:
 - if splashscreen is used, another fix should also
   be applied, see patch
   http://lists.denx.de/pipermail/u-boot/2010-March/068505.html

 - for RLE8 BMP support see patch
   http://lists.denx.de/pipermail/u-boot/2010-March/068476.html

Anatolij Gustschin (7):
  mpc512x: make MEM IO Control configuration a board config option
  mpc512x: add multi serial PSC support
  mpc5121: add PSC serial communication routines
  fdt_support: add partitions fixup in mtd node
  mpc5121: add common post_word_load/store code
  mpc5121: add support for PDM360NG board
  mpc5121: cpu/mpc512x/diu.c: fix warnings

 MAKEALL                             |    1 +
 Makefile                            |    3 +
 board/freescale/common/fsl_diu_fb.c |   29 ++-
 board/pdm360ng/Makefile             |   52 ++++
 board/pdm360ng/config.mk            |   24 ++
 board/pdm360ng/pdm360ng.c           |  525 +++++++++++++++++++++++++++++++++++
 board/pdm360ng/post.c               |   75 +++++
 common/cmd_mtdparts.c               |    2 +-
 common/fdt_support.c                |  219 +++++++++++++++
 common/serial.c                     |   23 ++
 cpu/mpc512x/Makefile                |    1 +
 cpu/mpc512x/commproc.c              |   25 ++
 cpu/mpc512x/diu.c                   |   18 +-
 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/mpc5121-common.h    |   52 ++++
 include/configs/mpc5121ads.h        |    2 +
 include/configs/pdm360ng.h          |  520 ++++++++++++++++++++++++++++++++++
 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 +
 27 files changed, 1981 insertions(+), 95 deletions(-)
 create mode 100644 board/pdm360ng/Makefile
 create mode 100644 board/pdm360ng/config.mk
 create mode 100644 board/pdm360ng/pdm360ng.c
 create mode 100644 board/pdm360ng/post.c
 create mode 100644 cpu/mpc512x/commproc.c
 create mode 100644 include/configs/mpc5121-common.h
 create mode 100644 include/configs/pdm360ng.h
 create mode 100644 include/mtd_node.h

^ permalink raw reply	[flat|nested] 34+ messages in thread

end of thread, other threads:[~2010-04-15 15:18 UTC | newest]

Thread overview: 34+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2010-03-16 16:10 [U-Boot] [PATCH v2 0/7] Add support for PDM360NG board Anatolij Gustschin
2010-03-16 16:10 ` [U-Boot] [PATCH v2 1/7] mpc512x: make MEM IO Control configuration a board config option Anatolij Gustschin
2010-03-16 16:10   ` [U-Boot] [PATCH v2 2/7] mpc512x: add multi serial PSC support Anatolij Gustschin
2010-03-16 16:10     ` [U-Boot] [PATCH v2 3/7] mpc5121: add PSC serial communication routines Anatolij Gustschin
2010-03-16 16:10       ` [U-Boot] [PATCH v2 4/7] fdt_support: add partitions fixup in mtd node Anatolij Gustschin
2010-03-16 16:10         ` [U-Boot] [PATCH v2 5/7] mpc5121: add common post_word_load/store code Anatolij Gustschin
2010-03-16 16:10           ` [U-Boot] [PATCH v2 6/7] mpc5121: add support for PDM360NG board Anatolij Gustschin
2010-03-16 16:10             ` [U-Boot] [PATCH v2 7/7] mpc5121: cpu/mpc512x/diu.c: fix warnings Anatolij Gustschin
2010-03-21 19:24               ` Wolfgang Denk
2010-03-21 19:23             ` [U-Boot] [PATCH v2 6/7] mpc5121: add support for PDM360NG board Wolfgang Denk
2010-04-14 10:39               ` Anatolij Gustschin
2010-04-14 14:21               ` [U-Boot] [PATCH v3 0/3] Add " Anatolij Gustschin
2010-04-14 14:21                 ` [U-Boot] [PATCH v3 1/3] mpc5121: determine RAM size using get_ram_size() Anatolij Gustschin
2010-04-14 14:21                   ` [U-Boot] [PATCH v3 2/3] mpc5121: add support for PDM360NG board Anatolij Gustschin
2010-04-14 14:21                     ` [U-Boot] [PATCH v3 3/3] mpc5121: pdm360ng: add coprocessor POST Anatolij Gustschin
2010-04-14 15:40                       ` Wolfgang Denk
2010-04-15  9:18                         ` Detlev Zundel
2010-04-15  9:25                           ` Anatolij Gustschin
2010-04-15 11:48                             ` Wolfgang Denk
2010-04-15 11:46                           ` Wolfgang Denk
2010-04-15 10:24                         ` Anatolij Gustschin
2010-04-15 11:54                           ` Wolfgang Denk
2010-04-14 15:48                     ` [U-Boot] [PATCH v3 2/3] mpc5121: add support for PDM360NG board Wolfgang Denk
2010-04-15 12:32                       ` Anatolij Gustschin
2010-04-15 12:43                         ` Stefan Roese
2010-04-15 15:18                         ` Wolfgang Denk
2010-04-14 15:31                   ` [U-Boot] [PATCH v3 1/3] mpc5121: determine RAM size using get_ram_size() Wolfgang Denk
2010-04-15 12:20                     ` Anatolij Gustschin
2010-03-21 19:09           ` [U-Boot] [PATCH v2 5/7] mpc5121: add common post_word_load/store code Wolfgang Denk
2010-03-21 19:08         ` [U-Boot] [PATCH v2 4/7] fdt_support: add partitions fixup in mtd node Wolfgang Denk
2010-03-21 19:05       ` [U-Boot] [PATCH v2 3/7] mpc5121: add PSC serial communication routines Wolfgang Denk
2010-03-21 19:04     ` [U-Boot] [PATCH v2 2/7] mpc512x: add multi serial PSC support Wolfgang Denk
2010-03-21 19:03   ` [U-Boot] [PATCH v2 1/7] mpc512x: make MEM IO Control configuration a board config option Wolfgang Denk
2010-03-21 19:00 ` [U-Boot] [PATCH v2 0/7] Add support for PDM360NG board Wolfgang Denk

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox