public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] Pull request u-boot-blackfin.git (post branch)
@ 2011-06-28 19:26 Mike Frysinger
  2011-06-28 19:26 ` [U-Boot] [PATCH 1/5] post: fix up I/O helper usage Mike Frysinger
  2011-06-29 21:21 ` [U-Boot] Pull request u-boot-blackfin.git (post branch) Wolfgang Denk
  0 siblings, 2 replies; 30+ messages in thread
From: Mike Frysinger @ 2011-06-28 19:26 UTC (permalink / raw)
  To: u-boot

All of thse patches have been posted previously, and no one has
given feedback, so here they are in a handy branch for you to pull.

The following changes since commit b1af6f532e0d348b153d5c148369229d24af361a:

  Prepare v2011.06 (2011-06-27 22:22:42 +0200)

are available in the git repository at:
  git://www.denx.de/git/u-boot-blackfin.git post

Mike Frysinger (5):
      post: fix up I/O helper usage
      post: add gpio hotkey support
      post: use ARRAY_SIZE
      post: new nor flash test
      serial: implement common uart post test

 common/serial.c                               |   90 +++++++++++++++++++++
 include/post.h                                |    5 +-
 include/serial.h                              |    5 +
 post/board/lwmon/sysmon.c                     |    2 +-
 post/cpu/mpc8xx/ether.c                       |    4 +-
 post/cpu/mpc8xx/spr.c                         |    3 +-
 post/cpu/mpc8xx/uart.c                        |    4 +-
 post/cpu/ppc4xx/spr.c                         |    3 +-
 post/drivers/Makefile                         |    2 +-
 post/drivers/flash.c                          |  107 +++++++++++++++++++++++++
 post/drivers/memory.c                         |    2 +-
 post/lib_powerpc/andi.c                       |    3 +-
 post/lib_powerpc/cmp.c                        |    3 +-
 post/lib_powerpc/cmpi.c                       |    3 +-
 post/lib_powerpc/cr.c                         |   12 +--
 post/lib_powerpc/fpu/mul-subnormal-single-1.c |    2 +-
 post/lib_powerpc/load.c                       |    3 +-
 post/lib_powerpc/multi.c                      |    2 +-
 post/lib_powerpc/rlwimi.c                     |    3 +-
 post/lib_powerpc/rlwinm.c                     |    3 +-
 post/lib_powerpc/rlwnm.c                      |    3 +-
 post/lib_powerpc/srawi.c                      |    3 +-
 post/lib_powerpc/store.c                      |    3 +-
 post/lib_powerpc/three.c                      |    3 +-
 post/lib_powerpc/threei.c                     |    3 +-
 post/lib_powerpc/threex.c                     |    3 +-
 post/lib_powerpc/two.c                        |    3 +-
 post/lib_powerpc/twox.c                       |    3 +-
 post/post.c                                   |   23 +++++-
 post/tests.c                                  |   17 ++++-
 30 files changed, 269 insertions(+), 56 deletions(-)
 create mode 100644 post/drivers/flash.c

^ permalink raw reply	[flat|nested] 30+ messages in thread
* [U-Boot] Pull request u-boot-blackfin.git (post branch)
@ 2011-09-29 22:28 Mike Frysinger
  2011-10-01 19:43 ` Wolfgang Denk
  0 siblings, 1 reply; 30+ messages in thread
From: Mike Frysinger @ 2011-09-29 22:28 UTC (permalink / raw)
  To: u-boot

The following changes since commit 1d5e7fb403257d62f0f2419cb83fdf6b0f02f215:

  Prepare v2011.09 (2011-09-29 21:11:15 +0200)

are available in the git repository at:
  git://www.denx.de/git/u-boot-blackfin.git post

All have been posted to the list already.

Mike Frysinger (6):
      Blackfin: bf537-stamp: convert to gpio post hotkey
      Blackfin: post: drop custom test list
      Blackfin: bf537-stamp: drop uart/flash post tests
      Blackfin: post: generalize led/button tests with GPIOs
      Blackfin: bf537-stamp/bf548-ezkit: update POST flash block range
      Blackfin: uart: implement loop callback for post

 arch/blackfin/cpu/serial.c         |   40 ++++++
 arch/blackfin/include/asm/config.h |   18 +++
 arch/blackfin/lib/Makefile         |    2 +-
 arch/blackfin/lib/post.c           |   85 ++++++++++++
 arch/blackfin/lib/tests.c          |  250 ------------------------------------
 board/bf537-stamp/Makefile         |    2 +-
 board/bf537-stamp/post-memory.c    |   63 +---------
 board/bf537-stamp/post.c           |  174 -------------------------
 include/configs/bf537-stamp.h      |   11 ++-
 include/configs/bf548-ezkit.h      |   10 +-
 include/configs/bfin_adi_common.h  |    1 -
 post/tests.c                       |    2 +
 12 files changed, 165 insertions(+), 493 deletions(-)
 create mode 100644 arch/blackfin/lib/post.c
 delete mode 100644 arch/blackfin/lib/tests.c
 delete mode 100644 board/bf537-stamp/post.c

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

end of thread, other threads:[~2011-10-01 19:43 UTC | newest]

Thread overview: 30+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2011-06-28 19:26 [U-Boot] Pull request u-boot-blackfin.git (post branch) Mike Frysinger
2011-06-28 19:26 ` [U-Boot] [PATCH 1/5] post: fix up I/O helper usage Mike Frysinger
2011-06-28 19:26   ` [U-Boot] [PATCH 2/5] post: add gpio hotkey support Mike Frysinger
2011-06-28 19:26   ` [U-Boot] [PATCH 3/5] post: use ARRAY_SIZE Mike Frysinger
2011-06-28 19:26   ` [U-Boot] [PATCH 4/5] post: new nor flash test Mike Frysinger
2011-06-28 19:26   ` [U-Boot] [PATCH 5/5] serial: implement common uart post test Mike Frysinger
2011-06-29 21:21 ` [U-Boot] Pull request u-boot-blackfin.git (post branch) Wolfgang Denk
2011-06-29 23:30   ` Mike Frysinger
2011-06-30 10:29     ` Wolfgang Denk
2011-06-30 15:26       ` Mike Frysinger
2011-06-30 15:38         ` Wolfgang Denk
2011-06-30 15:42           ` Mike Frysinger
2011-06-30 15:49             ` Wolfgang Denk
2011-06-30 16:04               ` Mike Frysinger
2011-06-30 21:10                 ` Wolfgang Denk
2011-06-30 21:12                   ` Mike Frysinger
2011-06-30 22:57                     ` Wolfgang Denk
2011-06-30 23:06                       ` Mike Frysinger
2011-07-01  4:36                         ` Wolfgang Denk
2011-07-01 23:27                           ` Mike Frysinger
2011-07-03 22:30                             ` Wolfgang Denk
2011-07-05  1:25                               ` Mike Frysinger
2011-07-05  4:42                                 ` Wolfgang Denk
2011-07-05  6:14                                   ` Mike Frysinger
2011-07-05  9:59                                     ` Wolfgang Denk
2011-07-05 17:32                                       ` Mike Frysinger
2011-07-05 21:54                                         ` Wolfgang Denk
2011-07-05 22:12                                           ` Mike Frysinger
  -- strict thread matches above, loose matches on Subject: below --
2011-09-29 22:28 Mike Frysinger
2011-10-01 19:43 ` Wolfgang Denk

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