public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH V3 00/12] Blackfin: add new processor and board
@ 2012-11-14 10:24 Bob Liu
  2012-11-14 10:24 ` [U-Boot] [PATCH V3 01/12] Blackfin: Bf60x: new processor header files Bob Liu
                   ` (11 more replies)
  0 siblings, 12 replies; 13+ messages in thread
From: Bob Liu @ 2012-11-14 10:24 UTC (permalink / raw)
  To: u-boot

Blackfin bf60x is a new processor for blackfin.
This series patches add some basic support for it with a bf609-ezkit reference
board.

I got some suggestion in the former commit. Some of them are fixed, but some
is still not clear.
Since it's a long time ago, i send out V3 for feedback.

Bob Liu (7):
  Blackfin: bf60x: new processor header files
  Blackfin: bf60x: add dma support
  Blackfin: bf60x: support big cplb page
  Blackfin: bf60x: add gpio support
  Blackfin: bf60x: core support
  blackfin: bf609: add board support
  Blackfin: bf60x: add hw watchdog support

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

Sonic Zhang (3):
  Blackfin: bf60x: add serial support
  Blackfin: bf60x: add rsi/sdh support
  Blackfin: bf609-ezkit: implement soft switch

Steven Miao (1):
  Blackfin: Bf60x: add resume from hibernate

 MAINTAINERS                                        |    1 +
 arch/blackfin/cpu/cpu.c                            |    4 +-
 arch/blackfin/cpu/gpio.c                           |   36 +-
 arch/blackfin/cpu/initcode.c                       |  365 +-
 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                        |  275 ++
 arch/blackfin/cpu/serial4.h                        |  139 +
 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                   |   17 +-
 arch/blackfin/include/asm/dma.h                    |  113 +-
 arch/blackfin/include/asm/gpio.h                   |    2 +-
 arch/blackfin/include/asm/mach-bf609/BF609_cdef.h  |  543 +++
 arch/blackfin/include/asm/mach-bf609/BF609_def.h   | 3758 ++++++++++++++++++++
 arch/blackfin/include/asm/mach-bf609/anomaly.h     |  128 +
 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   |   48 +-
 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                          |   33 +-
 arch/blackfin/lib/clocks.c                         |  113 +-
 arch/blackfin/lib/string.c                         |   97 +-
 board/bf609-ezkit/Makefile                         |   55 +
 board/bf609-ezkit/bf609-ezkit.c                    |   67 +
 board/bf609-ezkit/soft_switch.c                    |  169 +
 board/bf609-ezkit/soft_switch.h                    |   71 +
 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                      |  175 +
 include/configs/bfin_adi_common.h                  |    8 +-
 47 files changed, 7611 insertions(+), 420 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 board/bf609-ezkit/soft_switch.c
 create mode 100644 board/bf609-ezkit/soft_switch.h
 create mode 100644 drivers/spi/bfin_spi6xx.c
 create mode 100644 include/configs/bf609-ezkit.h

-- 
1.7.9.5

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

end of thread, other threads:[~2012-11-14 10:24 UTC | newest]

Thread overview: 13+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2012-11-14 10:24 [U-Boot] [PATCH V3 00/12] Blackfin: add new processor and board Bob Liu
2012-11-14 10:24 ` [U-Boot] [PATCH V3 01/12] Blackfin: Bf60x: new processor header files Bob Liu
2012-11-14 10:24 ` [U-Boot] [PATCH V3 02/12] Blackfin: bf60x: add serial support Bob Liu
2012-11-14 10:24 ` [U-Boot] [PATCH V3 03/12] Blackfin: bf60x: add dma support Bob Liu
2012-11-14 10:24 ` [U-Boot] [PATCH V3 04/12] Blackfin: bf60x: support big cplb page Bob Liu
2012-11-14 10:24 ` [U-Boot] [PATCH V3 05/12] Blackfin: bf60x: add rsi/sdh support Bob Liu
2012-11-14 10:24 ` [U-Boot] [PATCH V3 06/12] Blackfin: bf609-ezkit: implement soft switch Bob Liu
2012-11-14 10:24 ` [U-Boot] [PATCH V3 07/12] Blackfin: spi: add bf6xx spi driver Bob Liu
2012-11-14 10:24 ` [U-Boot] [PATCH V3 08/12] Blackfin: bf60x: add gpio support Bob Liu
2012-11-14 10:24 ` [U-Boot] [PATCH V3 09/12] Blackfin: bf60x: core support Bob Liu
2012-11-14 10:24 ` [U-Boot] [PATCH V3 10/12] blackfin: bf609: add board support Bob Liu
2012-11-14 10:24 ` [U-Boot] [PATCH V3 11/12] Blackfin: bf60x: add hw watchdog support Bob Liu
2012-11-14 10:24 ` [U-Boot] [PATCH V3 12/12] Blackfin: bf60x: add resume from hibernate Bob Liu

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