From: Darwin Rambo <drambo@broadcom.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 0/6] Introducing the Broadcom bcm281xx Architecture
Date: Thu, 6 Feb 2014 19:23:02 -0800 [thread overview]
Message-ID: <1391743388-5539-1-git-send-email-drambo@broadcom.com> (raw)
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.
v3 changes
----------
Rename init_mmc_core() to init_kona_mmc_core().
Add check for card presence in init_kona_mmc_core().
Add copyright line to s_init.c. Cleanup header for bitfield.h
v2 changes
----------
Delete lowlevel_init.S and create s_init.c. File header cleanup,
cosmetic changes, dead code removal. Create include/bitfield.h.
Use get_ram_size(). Use weak timer_init(); Skip lowlevel init.
Remove memory test config. Use standard baud table and prompt.
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 | 523 +++++++++++++++++
arch/arm/cpu/armv7/bcm281xx/clk-bsc.c | 52 ++
arch/arm/cpu/armv7/bcm281xx/clk-core.c | 513 +++++++++++++++++
arch/arm/cpu/armv7/bcm281xx/clk-core.h | 495 ++++++++++++++++
arch/arm/cpu/armv7/bcm281xx/clk-sdio.c | 73 +++
arch/arm/cpu/armv7/bcm281xx/reset.c | 27 +
arch/arm/cpu/armv7/kona-common/Makefile | 9 +
arch/arm/cpu/armv7/kona-common/clk-stubs.c | 21 +
arch/arm/cpu/armv7/kona-common/hwinit-common.c | 16 +
arch/arm/cpu/armv7/kona-common/s_init.c | 12 +
arch/arm/include/asm/arch-bcm281xx/gpio.h | 15 +
arch/arm/include/asm/arch-bcm281xx/sysmap.h | 25 +
arch/arm/include/asm/kona-common/clk.h | 29 +
arch/arm/include/asm/kona-common/kona_sdhci.h | 12 +
board/broadcom/bcm28155_ap/Makefile | 7 +
board/broadcom/bcm28155_ap/bcm28155_ap.c | 87 +++
boards.cfg | 1 +
drivers/gpio/Makefile | 1 +
drivers/gpio/kona_gpio.c | 141 +++++
drivers/i2c/Makefile | 1 +
drivers/i2c/kona_i2c.c | 730 ++++++++++++++++++++++++
drivers/mmc/Makefile | 1 +
drivers/mmc/kona_sdhci.c | 134 +++++
include/bitfield.h | 58 ++
include/configs/bcm28155_ap.h | 140 +++++
27 files changed, 3135 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/s_init.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/kona_sdhci.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/bitfield.h
create mode 100644 include/configs/bcm28155_ap.h
--
1.7.9.5
next reply other threads:[~2014-02-07 3:23 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-02-07 3:23 Darwin Rambo [this message]
2014-02-07 3:23 ` [U-Boot] [PATCH v3 1/6] arch: kona: Initial commit of kona-common architecture code Darwin Rambo
2014-02-10 8:44 ` Albert ARIBAUD
2014-02-10 20:29 ` Tom Rini
2014-02-07 3:23 ` [U-Boot] [PATCH v3 2/6] arch: bcm281xx: Initial commit of bcm281xx " Darwin Rambo
2014-02-07 3:23 ` [U-Boot] [PATCH v3 3/6] gpio: kona: Add Kona gpio driver Darwin Rambo
2014-02-07 3:23 ` [U-Boot] [PATCH v3 4/6] i2c: kona: Add Kona I2C driver Darwin Rambo
2014-02-07 3:23 ` [U-Boot] [PATCH v3 5/6] mmc: kona: Add Kona mmc driver Darwin Rambo
2014-02-07 3:23 ` [U-Boot] [PATCH v3 6/6] board: bcm28155_ap: Add board files Darwin Rambo
2014-02-07 3:39 ` [U-Boot] [PATCH v3 0/6] Introducing the Broadcom bcm281xx Architecture Darwin Rambo
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=1391743388-5539-1-git-send-email-drambo@broadcom.com \
--to=drambo@broadcom.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