[U-Boot] [PATCH 00/32] Blackfin updates for 2009.05

Mike Frysinger vapier at gentoo.org
Mon Mar 23 03:45:09 CET 2009


Here's the first patch of updates.  Should be mostly simple things before
I move onto the new board ports and such in the next update.

Mike Frysinger (31):
  Blackfin: update anomaly lists
  Blackfin: fix SWRST/SYSCR register sizes
  Blackfin: unify net-related init code
  Blackfin: bf537-stamp: move CONFIG_POST handling to COBJS-$(...)
  Blackfin: fix jtag console tstc
  Blackfin: mark bfin_reset static
  Blackfin: update lockbox api according to latest documentation
  Blackfin: safely flush data caches when in writeback mode
  Blackfin: print out Flash: before checking it
  Blackfin: drop now-unused CONFIG_SYS_BFIN_CMD_XXX
  Blackfin: unify duplicate CPU port definitions
  Blackfin: drop SPORT_TX read helper macros
  Blackfin: fix SIC_RVECT definition: it is 16bits, not 32bits
  Blackfin: simplify symbol_lookup() a bit
  Blackfin: kill off LDR jump block
  Blackfin: handle reboot anomaly 432
  Blackfin: setup a sane default EBIU_SDBCTL for SDRAM controllers
  Blackfin: do not program voltage regulator on parts that do not have
    one
  Blackfin: put memory into self-refresh before/after programming
    clocks
  Blackfin: unify common ADI board settings
  Blackfin: bf533-stamp: rewrite startup LED notifications
  Blackfin: bf533-stamp: bump up default clocks
  Blackfin: add clkin_hz= to default kernel command line for ADI boards
  Blackfin: bf537-stamp: rewrite MAC-in-flash handling
  Blackfin: bf537-stamp: bump default SCLK up to 125MHz
  Blackfin: bf537-stamp: increase monitor size
  Blackfin: add hack for crappy m25p80
  Blackfin: add support for SST SPI flashes
  Blackfin: overhaul SPI flash handling to speed things up
  Blackfin: add support for S25FL128 parts
  Blackfin: bf537-stamp: split post code out into dedicated post.c

Sonic Zhang (1):
  Blackfin: spi: there is no PORTJ_FER MMR on BF537

 blackfin_config.mk                                 |    1 +
 board/bf533-ezkit/u-boot.lds.S                     |    5 +-
 board/bf533-stamp/bf533-stamp.c                    |   62 ++-
 board/bf533-stamp/u-boot.lds.S                     |    5 +-
 board/bf537-stamp/Makefile                         |    3 +-
 board/bf537-stamp/bf537-stamp.c                    |  313 +++-----------
 board/bf537-stamp/post-memory.c                    |    3 -
 board/bf537-stamp/post.c                           |  244 +++++++++++
 board/bf537-stamp/spi_flash.c                      |  297 +++++++++++---
 board/bf537-stamp/u-boot.lds.S                     |    5 +-
 board/bf561-ezkit/u-boot.lds.S                     |    5 +-
 cpu/blackfin/cpu.c                                 |    8 +-
 cpu/blackfin/initcode.c                            |  255 +++++++++---
 cpu/blackfin/jtag-console.c                        |   15 +-
 cpu/blackfin/reset.c                               |    2 +-
 cpu/blackfin/start.S                               |   83 +++--
 cpu/blackfin/traps.c                               |    2 +-
 drivers/spi/bfin_spi.c                             |    8 +-
 include/asm-blackfin/blackfin-config-pre.h         |    6 -
 .../mach-bf527/ADSP-EDN-BF52x-extended_cdef.h      |    8 +-
 include/asm-blackfin/mach-bf527/anomaly.h          |    6 +-
 include/asm-blackfin/mach-bf527/ports.h            |   75 +---
 include/asm-blackfin/mach-bf533/anomaly.h          |    7 +-
 include/asm-blackfin/mach-bf533/ports.h            |   18 +-
 .../mach-bf537/ADSP-EDN-BF534-extended_cdef.h      |    8 +-
 include/asm-blackfin/mach-bf537/anomaly.h          |    7 +-
 include/asm-blackfin/mach-bf537/ports.h            |   56 +---
 .../mach-bf548/ADSP-EDN-BF542-extended_cdef.h      |    3 -
 .../mach-bf548/ADSP-EDN-BF544-extended_cdef.h      |    3 -
 .../mach-bf548/ADSP-EDN-BF547-extended_cdef.h      |    4 -
 .../mach-bf548/ADSP-EDN-BF548-extended_cdef.h      |    4 -
 .../mach-bf548/ADSP-EDN-BF549-extended_cdef.h      |    4 -
 include/asm-blackfin/mach-bf548/anomaly.h          |   23 +-
 include/asm-blackfin/mach-bf548/ports.h            |  189 +--------
 include/asm-blackfin/mach-bf561/BF561_cdef.h       |   12 +-
 include/asm-blackfin/mach-bf561/anomaly.h          |    7 +-
 include/asm-blackfin/mach-bf561/def_local.h        |    2 +
 include/asm-blackfin/mach-bf561/ports.h            |   44 ++
 .../mach-common/ADSP-EDN-DUAL-CORE-extended_cdef.h |    2 -
 .../mach-common/ADSP-EDN-extended_cdef.h           |    8 +-
 include/asm-blackfin/mach-common/bits/lockbox.h    |   70 ++--
 include/asm-blackfin/mach-common/bits/ports-a.h    |   25 ++
 include/asm-blackfin/mach-common/bits/ports-b.h    |   25 ++
 include/asm-blackfin/mach-common/bits/ports-c.h    |   25 ++
 include/asm-blackfin/mach-common/bits/ports-d.h    |   25 ++
 include/asm-blackfin/mach-common/bits/ports-e.h    |   25 ++
 include/asm-blackfin/mach-common/bits/ports-f.h    |   25 ++
 include/asm-blackfin/mach-common/bits/ports-g.h    |   25 ++
 include/asm-blackfin/mach-common/bits/ports-h.h    |   25 ++
 include/asm-blackfin/mach-common/bits/ports-i.h    |   25 ++
 include/asm-blackfin/mach-common/bits/ports-j.h    |   25 ++
 include/asm-blackfin/net.h                         |   28 ++
 include/configs/bf533-ezkit.h                      |  286 +++++--------
 include/configs/bf533-stamp.h                      |  450 +++++++-------------
 include/configs/bf537-stamp.h                      |  423 ++++++-------------
 include/configs/bf561-ezkit.h                      |  295 +++++--------
 include/configs/bfin_adi_common.h                  |  199 +++++++++
 lib_blackfin/board.c                               |   32 +-
 lib_blackfin/cache.c                               |   42 ++
 59 files changed, 2078 insertions(+), 1809 deletions(-)
 create mode 100644 board/bf537-stamp/post.c
 create mode 100644 include/asm-blackfin/mach-bf561/ports.h
 create mode 100644 include/asm-blackfin/mach-common/bits/ports-a.h
 create mode 100644 include/asm-blackfin/mach-common/bits/ports-b.h
 create mode 100644 include/asm-blackfin/mach-common/bits/ports-c.h
 create mode 100644 include/asm-blackfin/mach-common/bits/ports-d.h
 create mode 100644 include/asm-blackfin/mach-common/bits/ports-e.h
 create mode 100644 include/asm-blackfin/mach-common/bits/ports-f.h
 create mode 100644 include/asm-blackfin/mach-common/bits/ports-g.h
 create mode 100644 include/asm-blackfin/mach-common/bits/ports-h.h
 create mode 100644 include/asm-blackfin/mach-common/bits/ports-i.h
 create mode 100644 include/asm-blackfin/mach-common/bits/ports-j.h
 create mode 100644 include/asm-blackfin/net.h
 create mode 100644 include/configs/bfin_adi_common.h



More information about the U-Boot mailing list