All of lore.kernel.org
 help / color / mirror / Atom feed
From: Mike Frysinger <vapier@gentoo.org>
To: u-boot@lists.denx.de
Subject: [U-Boot] Pull request u-boot-blackfin.git
Date: Tue, 24 Mar 2009 21:29:20 -0400	[thread overview]
Message-ID: <1237944560-13637-1-git-send-email-vapier@gentoo.org> (raw)

The following changes since commit 4ace2823bc1fcc96874069a9a8c0821ff4f95f5d:
  Wolfgang Denk (1):
        Merge branch 'master' of git://git.denx.de/u-boot-avr32

are available in the git repository at:

  git://www.denx.de/git/u-boot-blackfin.git master

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                      |  457 +++++++-------------
 include/configs/bf537-stamp.h                      |  443 +++++++------------
 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, 2107 insertions(+), 1807 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

             reply	other threads:[~2009-03-25  1:29 UTC|newest]

Thread overview: 117+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-03-25  1:29 Mike Frysinger [this message]
2009-03-25 21:43 ` [U-Boot] Pull request u-boot-blackfin.git Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2011-11-19  3:19 Mike Frysinger
2011-11-21 21:05 ` Wolfgang Denk
2011-10-16 18:23 Mike Frysinger
2011-10-17 19:51 ` Wolfgang Denk
2011-06-28 19:36 [U-Boot] [PATCH 00/18] Blackfin updates for v2011.09 Mike Frysinger
2011-06-29  2:50 ` [U-Boot] Pull request u-boot-blackfin.git Mike Frysinger
2011-06-29 21:23   ` Wolfgang Denk
2011-06-30 15:45     ` Mike Frysinger
2011-06-30 15:55       ` Wolfgang Denk
2011-07-12  6:23 ` Mike Frysinger
2011-08-02 19:49   ` Wolfgang Denk
2011-05-24  3:30 [U-Boot] [PATCH 0/7] Blackfin fixes for 2011.06 Mike Frysinger
2011-05-24  3:32 ` [U-Boot] Pull request u-boot-blackfin.git Mike Frysinger
2011-06-01 19:58   ` Wolfgang Denk
2011-06-02 15:02     ` Mike Frysinger
2011-06-02 20:46       ` Wolfgang Denk
2011-04-25  6:06 [U-Boot] [PATCH 0/3] Blackfin minor config updates for 2011.06 Mike Frysinger
2011-04-25  6:07 ` [U-Boot] Pull request u-boot-blackfin.git Mike Frysinger
2011-04-27 19:44   ` Wolfgang Denk
2011-04-03  8:58 [U-Boot] [PATCH 00/34] Blackfin updates for 2011.06 Mike Frysinger
2011-04-08  4:47 ` [U-Boot] Pull request u-boot-blackfin.git Mike Frysinger
2011-04-10 19:19   ` Wolfgang Denk
2011-01-10  5:21 Mike Frysinger
2011-01-12 22:43 ` Wolfgang Denk
2011-01-12 22:50   ` Mike Frysinger
2011-01-12 23:03     ` Wolfgang Denk
2011-01-12 23:08       ` Mike Frysinger
2011-01-12 23:18         ` Wolfgang Denk
2011-01-12 23:36           ` Mike Frysinger
2011-01-12 23:47             ` Wolfgang Denk
2011-02-15  8:13               ` Mike Frysinger
2011-01-12 23:32         ` Wolfgang Denk
2011-01-12 23:37           ` Mike Frysinger
2011-01-12 23:45             ` Wolfgang Denk
2011-01-12 22:44 ` Wolfgang Denk
2011-01-12 22:50   ` Mike Frysinger
2011-01-12 23:04     ` Wolfgang Denk
2010-11-21 21:52 Mike Frysinger
2010-11-24 18:27 ` Wolfgang Denk
2010-11-18  9:45 Mike Frysinger
2010-11-19 21:02 ` Wolfgang Denk
2010-10-28  6:31 Mike Frysinger
2010-10-29 19:46 ` Wolfgang Denk
2010-10-26  2:09 Mike Frysinger
2010-10-26 19:00 ` Wolfgang Denk
2010-10-15 19:23 Mike Frysinger
2010-10-17 17:54 ` Wolfgang Denk
2010-10-02 20:05 [U-Boot] [PATCH 00/37] Blackfin updates for v2010.12-rc1 Mike Frysinger
2010-10-04 17:33 ` [U-Boot] Pull request u-boot-blackfin.git Mike Frysinger
2010-10-05 12:43   ` Wolfgang Denk
2010-09-21 22:35 Mike Frysinger
2010-09-22 20:37 ` Wolfgang Denk
2010-08-11 19:30 Mike Frysinger
2010-08-12 20:59 ` Wolfgang Denk
2010-07-25 19:19 Mike Frysinger
2010-07-25 19:36 ` Mike Frysinger
2010-08-03 21:31   ` Wolfgang Denk
2010-07-09 22:18 Mike Frysinger
2010-07-13 21:57 ` Mike Frysinger
2010-07-14 19:55 ` Wolfgang Denk
2010-04-09 21:03 Mike Frysinger
2010-01-17 23:25 [U-Boot] [PATCH 0/5] kgdb cleanup and Blackfin kgdb port Wolfgang Denk
2010-01-18  1:37 ` [U-Boot] Pull request u-boot-blackfin.git Mike Frysinger
2010-01-21 20:55   ` Wolfgang Denk
2010-01-17 14:40 Mike Frysinger
2010-01-17 22:16 ` Wolfgang Denk
2009-10-14 16:34 Mike Frysinger
2009-10-15 20:30 ` Wolfgang Denk
2009-10-01 16:09 Mike Frysinger
2009-10-03 21:39 ` Wolfgang Denk
2009-09-04  0:07 Mike Frysinger
2009-09-04 18:41 ` Wolfgang Denk
2009-08-24 21:30 Mike Frysinger
2009-08-25 20:52 ` Wolfgang Denk
2009-07-24 18:07 Mike Frysinger
2009-07-26 20:57 ` Wolfgang Denk
2009-07-19  1:17 Mike Frysinger
2009-07-20 20:55 ` Wolfgang Denk
2009-07-10  6:41 Mike Frysinger
2009-07-13 21:33 ` Wolfgang Denk
2009-07-06 22:48 Mike Frysinger
2009-07-07 18:57 ` Wolfgang Denk
2009-07-08  5:28   ` Mike Frysinger
2009-07-08 19:53     ` Wolfgang Denk
2009-07-08 20:40       ` Mike Frysinger
2009-07-08 20:47         ` Wolfgang Denk
2009-06-17  7:23 Mike Frysinger
2009-06-20  8:04 ` Wolfgang Denk
2009-06-15  0:02 Mike Frysinger
2009-06-15  9:15 ` Wolfgang Denk
2009-06-01  3:17 Mike Frysinger
2009-06-03 20:27 ` Wolfgang Denk
2009-05-26  2:39 Mike Frysinger
2009-05-28 19:28 ` Wolfgang Denk
2009-05-20  0:19 Mike Frysinger
2009-05-20 20:41 ` Wolfgang Denk
2009-05-09  7:02 Mike Frysinger
2009-05-10 20:11 ` Wolfgang Denk
2009-04-07  7:32 Mike Frysinger
2009-04-07 19:53 ` Wolfgang Denk
2009-04-03 17:21 Mike Frysinger
2009-04-03 20:42 ` Wolfgang Denk
2009-02-06 19:30 Mike Frysinger
2009-02-07 21:57 ` Wolfgang Denk
2009-02-02 17:42 Mike Frysinger
2009-02-03 22:15 ` Wolfgang Denk
2009-01-28 18:29 Mike Frysinger
2009-01-28 20:08 ` Wolfgang Denk
2009-01-23 17:39 Mike Frysinger
2009-01-23 22:01 ` Wolfgang Denk
2009-01-23 22:08   ` Mike Frysinger
2009-01-23 22:43     ` Wolfgang Denk
2009-01-23 23:28       ` Mike Frysinger
2009-01-24  1:07         ` Wolfgang Denk
2009-01-24  2:52           ` Mike Frysinger
2009-01-08 18:41 Mike Frysinger
2009-01-10 17:19 ` Wolfgang Denk
2008-10-23  9:12 Mike Frysinger
2008-10-31 13:11 ` Mike Frysinger
2008-11-01 15:12   ` Wolfgang Denk
2008-11-01 15:05 ` Wolfgang Denk

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=1237944560-13637-1-git-send-email-vapier@gentoo.org \
    --to=vapier@gentoo.org \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.