public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/6] Introducing the Broadcom bcm281xx Architecture
@ 2014-01-27 18:53 Darwin Rambo
  2014-01-27 18:53 ` [U-Boot] [PATCH 1/6] arch: kona: Initial commit of kona-common architecture code Darwin Rambo
                   ` (6 more replies)
  0 siblings, 7 replies; 23+ messages in thread
From: Darwin Rambo @ 2014-01-27 18:53 UTC (permalink / raw)
  To: u-boot

This patchset introduces the Broadcom bcm281xx family of mobile SoC 
chips. Broadcom kona hardware blocks are often found in Broadcom mobile
SoC chips including the bcm281xx family, so support for some of these 
kona blocks is also provided here. These patches work on u-boot master
as well as the u-boot-arm custodian tree.

Darwin Rambo (6):
  arch: kona: Initial commit of kona-common architecture code
  arch: bcm281xx: Initial commit of bcm281xx architecture code
  gpio: kona: Add Kona gpio driver
  i2c: kona: Add Kona I2C driver
  mmc: kona: Add Kona mmc driver
  board: bcm28155_ap: Add board files

 arch/arm/cpu/armv7/Makefile                    |    1 +
 arch/arm/cpu/armv7/bcm281xx/Makefile           |   11 +
 arch/arm/cpu/armv7/bcm281xx/clk-bcm281xx.c     |  525 +++++++++++++++++
 arch/arm/cpu/armv7/bcm281xx/clk-bsc.c          |   54 ++
 arch/arm/cpu/armv7/bcm281xx/clk-core.c         |  536 +++++++++++++++++
 arch/arm/cpu/armv7/bcm281xx/clk-core.h         |  510 +++++++++++++++++
 arch/arm/cpu/armv7/bcm281xx/clk-sdio.c         |   75 +++
 arch/arm/cpu/armv7/bcm281xx/reset.c            |   29 +
 arch/arm/cpu/armv7/kona-common/Makefile        |   10 +
 arch/arm/cpu/armv7/kona-common/clk-stubs.c     |   22 +
 arch/arm/cpu/armv7/kona-common/hwinit-common.c |   18 +
 arch/arm/cpu/armv7/kona-common/lowlevel_init.S |   15 +
 arch/arm/cpu/armv7/kona-common/proc.c          |   20 +
 arch/arm/include/asm/arch-bcm281xx/gpio.h      |   17 +
 arch/arm/include/asm/arch-bcm281xx/sysmap.h    |   27 +
 arch/arm/include/asm/kona-common/clk.h         |   31 +
 arch/arm/include/asm/kona-common/misc.h        |   20 +
 board/broadcom/bcm28155_ap/Makefile            |    7 +
 board/broadcom/bcm28155_ap/bcm28155_ap.c       |   99 ++++
 boards.cfg                                     |    1 +
 drivers/gpio/Makefile                          |    1 +
 drivers/gpio/kona_gpio.c                       |  143 +++++
 drivers/i2c/Makefile                           |    1 +
 drivers/i2c/kona_i2c.c                         |  730 ++++++++++++++++++++++++
 drivers/mmc/Makefile                           |    1 +
 drivers/mmc/kona_sdhci.c                       |  127 +++++
 include/configs/bcm28155_ap.h                  |  148 +++++
 27 files changed, 3179 insertions(+)
 create mode 100644 arch/arm/cpu/armv7/bcm281xx/Makefile
 create mode 100644 arch/arm/cpu/armv7/bcm281xx/clk-bcm281xx.c
 create mode 100644 arch/arm/cpu/armv7/bcm281xx/clk-bsc.c
 create mode 100644 arch/arm/cpu/armv7/bcm281xx/clk-core.c
 create mode 100644 arch/arm/cpu/armv7/bcm281xx/clk-core.h
 create mode 100644 arch/arm/cpu/armv7/bcm281xx/clk-sdio.c
 create mode 100644 arch/arm/cpu/armv7/bcm281xx/reset.c
 create mode 100644 arch/arm/cpu/armv7/kona-common/Makefile
 create mode 100644 arch/arm/cpu/armv7/kona-common/clk-stubs.c
 create mode 100644 arch/arm/cpu/armv7/kona-common/hwinit-common.c
 create mode 100644 arch/arm/cpu/armv7/kona-common/lowlevel_init.S
 create mode 100644 arch/arm/cpu/armv7/kona-common/proc.c
 create mode 100644 arch/arm/include/asm/arch-bcm281xx/gpio.h
 create mode 100644 arch/arm/include/asm/arch-bcm281xx/sysmap.h
 create mode 100644 arch/arm/include/asm/kona-common/clk.h
 create mode 100644 arch/arm/include/asm/kona-common/misc.h
 create mode 100644 board/broadcom/bcm28155_ap/Makefile
 create mode 100644 board/broadcom/bcm28155_ap/bcm28155_ap.c
 create mode 100644 drivers/gpio/kona_gpio.c
 create mode 100644 drivers/i2c/kona_i2c.c
 create mode 100644 drivers/mmc/kona_sdhci.c
 create mode 100644 include/configs/bcm28155_ap.h

-- 
1.7.9.5

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

end of thread, other threads:[~2014-01-31 19:14 UTC | newest]

Thread overview: 23+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2014-01-27 18:53 [U-Boot] [PATCH 0/6] Introducing the Broadcom bcm281xx Architecture Darwin Rambo
2014-01-27 18:53 ` [U-Boot] [PATCH 1/6] arch: kona: Initial commit of kona-common architecture code Darwin Rambo
2014-01-29 22:32   ` Tom Rini
2014-01-30 23:09     ` Darwin Rambo
2014-01-27 18:53 ` [U-Boot] [PATCH 2/6] arch: bcm281xx: Initial commit of bcm281xx " Darwin Rambo
2014-01-29 22:32   ` Tom Rini
2014-01-30 22:03     ` Darwin Rambo
2014-01-31 17:54       ` Tom Rini
2014-01-31 18:19         ` Darwin Rambo
2014-01-31 17:47     ` Matt Porter
2014-01-27 18:53 ` [U-Boot] [PATCH 3/6] gpio: kona: Add Kona gpio driver Darwin Rambo
2014-01-27 18:53 ` [U-Boot] [PATCH 4/6] i2c: kona: Add Kona I2C driver Darwin Rambo
2014-01-27 18:53 ` [U-Boot] [PATCH 5/6] mmc: kona: Add Kona mmc driver Darwin Rambo
2014-01-27 18:53 ` [U-Boot] [PATCH 6/6] board: bcm28155_ap: Add board files Darwin Rambo
2014-01-29 22:33   ` Tom Rini
2014-01-30 23:05     ` Darwin Rambo
2014-01-31 14:17       ` Tom Rini
2014-01-31 17:05         ` Tim Kryger
2014-01-31 17:15           ` Tom Rini
2014-01-31 18:18             ` Darwin Rambo
2014-01-29 22:32 ` [U-Boot] [PATCH 0/6] Introducing the Broadcom bcm281xx Architecture Tom Rini
2014-01-30 23:12   ` Darwin Rambo
2014-01-31 19:14     ` Tom Rini

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