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-Users] Pull request u-boot-blackfin.git
Date: Sun, 30 Mar 2008 15:54:25 -0400	[thread overview]
Message-ID: <1206906865-30191-1-git-send-email-vapier@gentoo.org> (raw)

The following changes since commit 74d1e66d22dac91388bc538b2fe19f735edc5b82:
  Bartlomiej Sieka (1):
        Fix host tool build breakage, take two

are available in the git repository at:

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

Mike Frysinger (4):
      Blackfin: BF537-stamp: cleanup spi flash driver
      Blackfin: unify cpu and boot modes
      Blackfin: cleanup lib_blackfin/cache.c
      Blackfin: cleanup and overhaul common board init functions

 Makefile                                    |    5 +-
 blackfin_config.mk                          |    3 +
 board/bf533-ezkit/Makefile                  |    2 +-
 board/bf533-ezkit/config.mk                 |    6 +-
 board/bf533-ezkit/u-boot.lds.S              |  208 ++++----
 board/bf533-stamp/Makefile                  |    4 +-
 board/bf533-stamp/config.mk                 |    6 +-
 board/bf533-stamp/spi.c                     |  474 ----------------
 board/bf533-stamp/spi_flash.c               |    2 +
 board/bf533-stamp/u-boot.lds.S              |  206 ++++----
 board/bf537-stamp/Makefile                  |    4 +-
 board/bf537-stamp/bf537-stamp.c             |   13 +-
 board/bf537-stamp/config.mk                 |   10 +-
 board/bf537-stamp/spi_flash.c               |  815 +++++++++++++++++++++++++++
 board/bf537-stamp/stm_m25p64.c              |  516 -----------------
 board/bf537-stamp/u-boot.lds.S              |  258 ++++-----
 board/bf561-ezkit/Makefile                  |    2 +-
 board/bf561-ezkit/config.mk                 |    6 +-
 board/bf561-ezkit/u-boot.lds.S              |  209 ++++----
 cpu/bf533/Makefile                          |   52 --
 cpu/bf533/bf533_serial.h                    |   77 ---
 cpu/bf533/cache.S                           |  129 -----
 cpu/bf533/config.mk                         |   27 -
 cpu/bf533/cpu.c                             |  213 -------
 cpu/bf533/cpu.h                             |   66 ---
 cpu/bf533/flush.S                           |  405 -------------
 cpu/bf533/init_sdram.S                      |  183 ------
 cpu/bf533/init_sdram_bootrom_initblock.S    |  183 ------
 cpu/bf533/interrupt.S                       |  244 --------
 cpu/bf533/interrupts.c                      |  165 ------
 cpu/bf533/ints.c                            |  112 ----
 cpu/bf533/serial.c                          |  186 ------
 cpu/bf533/start.S                           |  313 ----------
 cpu/bf533/traps.c                           |  238 --------
 cpu/bf533/video.c                           |  194 -------
 cpu/bf533/video.h                           |   25 -
 cpu/bf537/Makefile                          |   52 --
 cpu/bf537/cache.S                           |  129 -----
 cpu/bf537/config.mk                         |   27 -
 cpu/bf537/cpu.c                             |  219 -------
 cpu/bf537/cpu.h                             |   66 ---
 cpu/bf537/flush.S                           |  403 -------------
 cpu/bf537/init_sdram.S                      |  178 ------
 cpu/bf537/init_sdram_bootrom_initblock.S    |  203 -------
 cpu/bf537/interrupt.S                       |  244 --------
 cpu/bf537/interrupts.c                      |  170 ------
 cpu/bf537/ints.c                            |  112 ----
 cpu/bf537/serial.c                          |  186 ------
 cpu/bf537/serial.h                          |   77 ---
 cpu/bf537/start.S                           |  576 -------------------
 cpu/bf537/start1.S                          |   38 --
 cpu/bf537/traps.c                           |  239 --------
 cpu/bf537/video.c                           |  194 -------
 cpu/bf537/video.h                           |   25 -
 cpu/bf561/Makefile                          |   52 --
 cpu/bf561/cache.S                           |  129 -----
 cpu/bf561/config.mk                         |   27 -
 cpu/bf561/cpu.c                             |  212 -------
 cpu/bf561/cpu.h                             |   66 ---
 cpu/bf561/flush.S                           |  402 -------------
 cpu/bf561/init_sdram.S                      |  175 ------
 cpu/bf561/init_sdram_bootrom_initblock.S    |  189 -------
 cpu/bf561/interrupt.S                       |  244 --------
 cpu/bf561/ints.c                            |  112 ----
 cpu/bf561/serial.c                          |  188 ------
 cpu/bf561/serial.h                          |   77 ---
 cpu/bf561/start.S                           |  303 ----------
 cpu/bf561/start1.S                          |   38 --
 cpu/bf561/traps.c                           |  238 --------
 cpu/bf561/video.c                           |  194 -------
 cpu/bf561/video.h                           |   25 -
 cpu/blackfin/.gitignore                     |    1 +
 cpu/blackfin/Makefile                       |   65 +++
 cpu/blackfin/bootrom-asm-offsets.awk        |   41 ++
 cpu/blackfin/bootrom-asm-offsets.c.in       |   12 +
 cpu/blackfin/cache.S                        |   61 ++
 cpu/blackfin/cpu.c                          |  141 +++++
 cpu/{bf533/start1.S => blackfin/cpu.h}      |   28 +-
 cpu/blackfin/flush.S                        |  230 ++++++++
 cpu/{bf537 => blackfin}/i2c.c               |   98 ++--
 cpu/blackfin/initcode.c                     |  353 ++++++++++++
 cpu/blackfin/interrupt.S                    |   33 ++
 cpu/{bf561 => blackfin}/interrupts.c        |   50 +-
 cpu/blackfin/reset.c                        |   96 ++++
 cpu/blackfin/serial.c                       |  124 ++++
 cpu/blackfin/serial.h                       |  275 +++++++++
 cpu/blackfin/start.S                        |  219 +++++++
 cpu/blackfin/system_map.S                   |   18 +
 cpu/blackfin/traps.c                        |  353 ++++++++++++
 cpu/blackfin/watchdog.c                     |   25 +
 include/asm-blackfin/blackfin-config-post.h |    6 +-
 include/configs/bf533-ezkit.h               |   44 +--
 include/configs/bf533-stamp.h               |  113 +----
 include/configs/bf537-stamp.h               |  104 +---
 include/configs/bf561-ezkit.h               |   40 +-
 lib_blackfin/Makefile                       |    6 +-
 lib_blackfin/bf533_string.c                 |  198 -------
 lib_blackfin/blackfin_board.h               |   64 ---
 lib_blackfin/board.c                        |  429 ++++++++-------
 lib_blackfin/bootm.c                        |   77 +--
 lib_blackfin/cache.c                        |   35 +-
 lib_blackfin/cache.h                        |   35 --
 lib_blackfin/string.c                       |  203 +++++++
 103 files changed, 3899 insertions(+), 11048 deletions(-)
 delete mode 100644 board/bf533-stamp/spi.c
 create mode 100644 board/bf533-stamp/spi_flash.c
 create mode 100644 board/bf537-stamp/spi_flash.c
 delete mode 100644 board/bf537-stamp/stm_m25p64.c
 delete mode 100644 cpu/bf533/Makefile
 delete mode 100644 cpu/bf533/bf533_serial.h
 delete mode 100644 cpu/bf533/cache.S
 delete mode 100644 cpu/bf533/config.mk
 delete mode 100644 cpu/bf533/cpu.c
 delete mode 100644 cpu/bf533/cpu.h
 delete mode 100644 cpu/bf533/flush.S
 delete mode 100644 cpu/bf533/init_sdram.S
 delete mode 100644 cpu/bf533/init_sdram_bootrom_initblock.S
 delete mode 100644 cpu/bf533/interrupt.S
 delete mode 100644 cpu/bf533/interrupts.c
 delete mode 100644 cpu/bf533/ints.c
 delete mode 100644 cpu/bf533/serial.c
 delete mode 100644 cpu/bf533/start.S
 delete mode 100644 cpu/bf533/traps.c
 delete mode 100644 cpu/bf533/video.c
 delete mode 100644 cpu/bf533/video.h
 delete mode 100644 cpu/bf537/Makefile
 delete mode 100644 cpu/bf537/cache.S
 delete mode 100644 cpu/bf537/config.mk
 delete mode 100644 cpu/bf537/cpu.c
 delete mode 100644 cpu/bf537/cpu.h
 delete mode 100644 cpu/bf537/flush.S
 delete mode 100644 cpu/bf537/init_sdram.S
 delete mode 100644 cpu/bf537/init_sdram_bootrom_initblock.S
 delete mode 100644 cpu/bf537/interrupt.S
 delete mode 100644 cpu/bf537/interrupts.c
 delete mode 100644 cpu/bf537/ints.c
 delete mode 100644 cpu/bf537/serial.c
 delete mode 100644 cpu/bf537/serial.h
 delete mode 100644 cpu/bf537/start.S
 delete mode 100644 cpu/bf537/start1.S
 delete mode 100644 cpu/bf537/traps.c
 delete mode 100644 cpu/bf537/video.c
 delete mode 100644 cpu/bf537/video.h
 delete mode 100644 cpu/bf561/Makefile
 delete mode 100644 cpu/bf561/cache.S
 delete mode 100644 cpu/bf561/config.mk
 delete mode 100644 cpu/bf561/cpu.c
 delete mode 100644 cpu/bf561/cpu.h
 delete mode 100644 cpu/bf561/flush.S
 delete mode 100644 cpu/bf561/init_sdram.S
 delete mode 100644 cpu/bf561/init_sdram_bootrom_initblock.S
 delete mode 100644 cpu/bf561/interrupt.S
 delete mode 100644 cpu/bf561/ints.c
 delete mode 100644 cpu/bf561/serial.c
 delete mode 100644 cpu/bf561/serial.h
 delete mode 100644 cpu/bf561/start.S
 delete mode 100644 cpu/bf561/start1.S
 delete mode 100644 cpu/bf561/traps.c
 delete mode 100644 cpu/bf561/video.c
 delete mode 100644 cpu/bf561/video.h
 create mode 100644 cpu/blackfin/.gitignore
 create mode 100644 cpu/blackfin/Makefile
 create mode 100755 cpu/blackfin/bootrom-asm-offsets.awk
 create mode 100644 cpu/blackfin/bootrom-asm-offsets.c.in
 create mode 100644 cpu/blackfin/cache.S
 create mode 100644 cpu/blackfin/cpu.c
 rename cpu/{bf533/start1.S => blackfin/cpu.h} (68%)
 create mode 100644 cpu/blackfin/flush.S
 rename cpu/{bf537 => blackfin}/i2c.c (75%)
 create mode 100644 cpu/blackfin/initcode.c
 create mode 100644 cpu/blackfin/interrupt.S
 rename cpu/{bf561 => blackfin}/interrupts.c (68%)
 create mode 100644 cpu/blackfin/reset.c
 create mode 100644 cpu/blackfin/serial.c
 create mode 100644 cpu/blackfin/serial.h
 create mode 100644 cpu/blackfin/start.S
 create mode 100644 cpu/blackfin/system_map.S
 create mode 100644 cpu/blackfin/traps.c
 create mode 100644 cpu/blackfin/watchdog.c
 delete mode 100644 lib_blackfin/bf533_string.c
 delete mode 100644 lib_blackfin/blackfin_board.h
 delete mode 100644 lib_blackfin/cache.h
 create mode 100644 lib_blackfin/string.c

             reply	other threads:[~2008-03-30 19:54 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-03-30 19:54 Mike Frysinger [this message]
2008-04-07 22:09 ` [U-Boot-Users] Pull request u-boot-blackfin.git Wolfgang Denk
  -- strict thread matches above, loose matches on Subject: below --
2008-06-01  2:59 Mike Frysinger
2008-06-01 19:45 ` Wolfgang Denk
2008-06-01 20:54   ` Mike Frysinger
2008-06-01 21:54     ` Wolfgang Denk
2008-06-01 22:02       ` Mike Frysinger
2008-06-01 22:15         ` Wolfgang Denk
2008-06-01 22:47           ` Mike Frysinger
2008-06-02 11:58             ` Wolfgang Denk
2008-03-16  2:33 Mike Frysinger
2008-03-18 21:17 ` Wolfgang Denk
2008-02-24  1:33 Wolfgang Denk
2008-02-23  6:17 Mike Frysinger
2008-02-23  8:42 ` Wolfgang Denk
2008-02-23  8:59   ` Mike Frysinger
2008-02-23 19:36     ` Wolfgang Denk
2008-02-23 20:29       ` Mike Frysinger
2008-02-23 22:25         ` Haavard Skinnemoen
2008-02-23 23:17           ` Mike Frysinger
2008-02-23 23:50             ` Haavard Skinnemoen
2008-02-24  0:07               ` Mike Frysinger
2008-02-24  0:29                 ` Wolfgang Denk
2008-02-24  0:39                   ` Mike Frysinger
2008-02-24  1:22                     ` Wolfgang Denk
2008-02-24  1:37                       ` Mike Frysinger
2008-02-24 13:44                         ` Wolfgang Denk
2008-02-24  0:35                 ` Haavard Skinnemoen
2008-02-24  1:15                   ` Mike Frysinger
2008-02-24 13:55                   ` Jean-Christophe PLAGNIOL-VILLARD
2008-02-24 16:48                     ` Mike Frysinger
2008-02-23 22:30         ` Wolfgang Denk
2008-02-23 23:19           ` Mike Frysinger
2008-02-23 23:42             ` Wolfgang Denk
2008-02-24  0:09               ` Mike Frysinger
2008-02-24  0:36                 ` Wolfgang Denk
2008-02-24  1:18                   ` Mike Frysinger
2008-02-24  1:26                     ` Wolfgang Denk
2008-02-05  0:31 Mike Frysinger
2008-02-14 23:12 ` 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=1206906865-30191-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.