public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Sonic Zhang <sonic.adi@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v4 0/11] Add BF60x processor support to Blackfin architecture.
Date: Thu, 21 Feb 2013 19:06:38 +0800	[thread overview]
Message-ID: <1361444809-22035-1-git-send-email-sonic.adi@gmail.com> (raw)

From: Sonic Zhang <sonic.zhang@analog.com>


ADSP-BF60x is the new generation Blackfin? dual-core processor announced by
Analog Devices in late March, 2012. This patch set adds BF60x processor support
to Das U-Boot Blackfin architecture.

For more information, see http://blackfin.uclinux.org .

Changes in v4:
- Remove last blank line in initcode.c.
- Fix all checkpatch issues except for cpu name bf609-0.0. It is use as the
link flags and is not an error.
- Remove the values for variables in bf609 config headers whose values are useless.
- Fix checkpatch warning whitespace before semicolon

Changes in v3:
- Remove "DO NOT EDIT THIS FILE" comments in anomaly.h
- Trim the head file to those that are used.
- Fix checkpatch issues in blackfin_cdef.h and blackfin_def.h
- Fix checkpatch issues in serial1.h and serial4.h

Changes in v2:
- Fix checkpatch issues in cgu.h, dde.h and anomaly.h
- Fix checkpatch issues.
- Clean up and merge redundant #ifdef's.
- Spearate declarations and code by a blankline.
- Replace unreable macro in uart structures with normal types.
- Replace unreable macro in uart peripheral portmux configuration with
clear inline function.
- Fix all checkpatch issues.
- Remove unrelated dma structure change to separate patch.
- The DMA config MMR on BF60x is 32 bits while it is 16 bits on BF5xx.
The different type of config MMR is correct.
- Replace unreable macro in dma structures with normal types.
- Fix all checkpatch issues.
- Replace run-time variable with additional macros when adding 4M byte
CPLB entries.
- Fix checkpatch issues.
- Does't change funtion sdh_setup_data() to return void.
- Fix checkpatch issues
- Fix checkpatch issues

Bob Liu (5):
  blackfin: bf60x: new processor header files
  blackfin: bf60x: add dma support
  blackfin: bf60x: support big cplb page
  blackfin: bf60x: add gpio support
  blackfin: bf60x: add hw watchdog support

Scott Jiang (1):
  blackfin: add bf6xx spi driver

Sonic Zhang (4):
  blackfin: bf60x: Port blackfin core architecture code to boot on
    bf60x.
  blackfin: bf60x: add serial support
  blackfin: bf60x: add board and headers files to support bf609
  blackfin: bf60x: add rsi/sdh support

Steven Miao (1):
  blackfin: bf60x: add resume from hibernate

 MAINTAINERS                                        |    3 +-
 arch/blackfin/cpu/cpu.c                            |    4 +-
 arch/blackfin/cpu/gpio.c                           |   36 ++-
 arch/blackfin/cpu/initcode.c                       |  384 +++++++++++++++++++-
 arch/blackfin/cpu/initcode.h                       |   52 +++
 arch/blackfin/cpu/reset.c                          |    6 +
 arch/blackfin/cpu/serial.c                         |   81 +++--
 arch/blackfin/cpu/serial.h                         |  222 +-----------
 arch/blackfin/cpu/serial1.h                        |  348 ++++++++++++++++++
 arch/blackfin/cpu/serial4.h                        |  161 ++++++++
 arch/blackfin/cpu/start.S                          |    2 +
 arch/blackfin/include/asm/blackfin_cdef.h          |    3 +
 arch/blackfin/include/asm/blackfin_def.h           |    5 +
 arch/blackfin/include/asm/blackfin_local.h         |    3 +
 arch/blackfin/include/asm/config-pre.h             |    4 +
 arch/blackfin/include/asm/cplb.h                   |   31 ++-
 arch/blackfin/include/asm/dma.h                    |   81 +++--
 arch/blackfin/include/asm/gpio.h                   |    2 +-
 arch/blackfin/include/asm/mach-bf533/BF531_def.h   |    1 +
 arch/blackfin/include/asm/mach-bf561/BF561_def.h   |    1 +
 arch/blackfin/include/asm/mach-bf609/BF609_cdef.h  |  192 ++++++++++
 arch/blackfin/include/asm/mach-bf609/BF609_def.h   |  241 ++++++++++++
 arch/blackfin/include/asm/mach-bf609/anomaly.h     |   97 +++++
 arch/blackfin/include/asm/mach-bf609/def_local.h   |    5 +
 arch/blackfin/include/asm/mach-bf609/gpio.h        |  151 ++++++++
 arch/blackfin/include/asm/mach-bf609/portmux.h     |  257 +++++++++++++
 arch/blackfin/include/asm/mach-bf609/ports.h       |  103 ++++++
 arch/blackfin/include/asm/mach-common/bits/cgu.h   |   80 ++++
 arch/blackfin/include/asm/mach-common/bits/dde.h   |   88 +++++
 arch/blackfin/include/asm/mach-common/bits/dma.h   |   54 +++-
 arch/blackfin/include/asm/mach-common/bits/mpu.h   |    6 +-
 arch/blackfin/include/asm/mach-common/bits/pll.h   |    5 +
 arch/blackfin/include/asm/mach-common/bits/sdh.h   |   38 ++-
 .../blackfin/include/asm/mach-common/bits/spi6xx.h |  240 ++++++++++++
 arch/blackfin/include/asm/mach-common/bits/uart4.h |   66 ++++
 arch/blackfin/lib/board.c                          |   25 ++-
 arch/blackfin/lib/clocks.c                         |  112 +++++-
 arch/blackfin/lib/string.c                         |   97 +++---
 board/bf609-ezkit/Makefile                         |   55 +++
 board/bf609-ezkit/bf609-ezkit.c                    |   67 ++++
 boards.cfg                                         |    1 +
 common/cmd_reginfo.c                               |   19 +-
 drivers/mmc/bfin_sdh.c                             |   68 +++-
 drivers/spi/Makefile                               |    1 +
 drivers/spi/bfin_spi6xx.c                          |  308 ++++++++++++++++
 include/configs/bf609-ezkit.h                      |  162 ++++++++
 include/configs/bfin_adi_common.h                  |   12 +-
 47 files changed, 3584 insertions(+), 396 deletions(-)
 create mode 100644 arch/blackfin/cpu/serial1.h
 create mode 100644 arch/blackfin/cpu/serial4.h
 create mode 100644 arch/blackfin/include/asm/mach-bf609/BF609_cdef.h
 create mode 100644 arch/blackfin/include/asm/mach-bf609/BF609_def.h
 create mode 100644 arch/blackfin/include/asm/mach-bf609/anomaly.h
 create mode 100644 arch/blackfin/include/asm/mach-bf609/def_local.h
 create mode 100644 arch/blackfin/include/asm/mach-bf609/gpio.h
 create mode 100644 arch/blackfin/include/asm/mach-bf609/portmux.h
 create mode 100644 arch/blackfin/include/asm/mach-bf609/ports.h
 create mode 100644 arch/blackfin/include/asm/mach-common/bits/cgu.h
 create mode 100644 arch/blackfin/include/asm/mach-common/bits/dde.h
 create mode 100644 arch/blackfin/include/asm/mach-common/bits/spi6xx.h
 create mode 100644 arch/blackfin/include/asm/mach-common/bits/uart4.h
 create mode 100644 board/bf609-ezkit/Makefile
 create mode 100644 board/bf609-ezkit/bf609-ezkit.c
 create mode 100644 drivers/spi/bfin_spi6xx.c
 create mode 100644 include/configs/bf609-ezkit.h

             reply	other threads:[~2013-02-21 11:06 UTC|newest]

Thread overview: 15+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2013-02-21 11:06 Sonic Zhang [this message]
2013-02-21 11:06 ` [U-Boot] [PATCH v4 01/11] blackfin: bf60x: new processor header files Sonic Zhang
2013-02-21 11:06 ` [U-Boot] [PATCH v4 02/11] blackfin: bf60x: Port blackfin core architecture code to boot on bf60x Sonic Zhang
2013-02-21 11:06 ` [U-Boot] [PATCH v4 03/11] blackfin: bf60x: add serial support Sonic Zhang
2013-02-21 11:06 ` [U-Boot] [PATCH v4 04/11] blackfin: bf60x: add dma support Sonic Zhang
2013-02-21 11:06 ` [U-Boot] [PATCH v4 05/11] blackfin: bf60x: support big cplb page Sonic Zhang
2013-02-21 11:06 ` [U-Boot] [PATCH v4 06/11] blackfin: bf60x: add gpio support Sonic Zhang
2013-02-21 11:06 ` [U-Boot] [PATCH v4 07/11] blackfin: bf60x: add board and headers files to support bf609 Sonic Zhang
2013-02-21 11:06 ` [U-Boot] [PATCH v4 08/11] blackfin: bf60x: add rsi/sdh support Sonic Zhang
2013-02-21 11:06 ` [U-Boot] [PATCH v4 09/11] blackfin: add bf6xx spi driver Sonic Zhang
2013-02-21 11:06 ` [U-Boot] [PATCH v4 10/11] blackfin: bf60x: add hw watchdog support Sonic Zhang
2013-02-21 11:06 ` [U-Boot] [PATCH v4 11/11] blackfin: bf60x: add resume from hibernate Sonic Zhang
2013-02-28 21:22 ` [U-Boot] [PATCH v4 0/11] Add BF60x processor support to Blackfin architecture Tom Rini
2013-03-01  2:10   ` Sonic Zhang
2013-03-01 14:16     ` Tom Rini

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=1361444809-22035-1-git-send-email-sonic.adi@gmail.com \
    --to=sonic.adi@gmail.com \
    --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 a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox