public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: William Zhang <william.zhang@broadcom.com>
To: U-Boot Mailing List <u-boot@lists.denx.de>
Cc: dan.beygelman@broadcom.com, anand.gore@broadcom.com,
	kursad.oney@broadcom.com, philippe.reynes@softathome.com,
	joel.peshkin@broadcom.com,
	William Zhang <william.zhang@broadcom.com>,
	Andre Przywara <andre.przywara@arm.com>,
	Christian Hewitt <christianshewitt@gmail.com>,
	Fabio Estevam <festevam@denx.de>, Marek Vasut <marex@denx.de>,
	Samuel Holland <samuel@sholland.org>,
	Simon Glass <sjg@chromium.org>, Tom Rini <trini@konsulko.com>,
	Tomer Yacoby <tomer.yacoby@broadcom.com>,
	"Ying-Chun Liu (PaulLiu)" <paul.liu@linaro.org>
Subject: [PATCH 0/5] arm: bcmbca: add basic support for Broadcom BCA SoCs
Date: Fri, 29 Jul 2022 12:48:42 -0700	[thread overview]
Message-ID: <20220729194847.18854-1-william.zhang@broadcom.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 4101 bytes --]

Broadcom BCA (Broadband Carrier Access origin) chipset family includes
DSL, PON and WLAN access point and gateway SoC. Now that the ARCH_BCMBCA
architecture and its first SoC BCM47622 are supported in u-boot 2022.07,
this patch series add the basic support for following BCA chips under
ARCH_BCMBCA: BCM63178, BCM6846, BCM6878, BCM6756 and BCM63148.

We expect to send additional patches for more BCMBCA SoCs in the near
future.


William Zhang (5):
  arm: bcmbca: add bcm63178 SoC support
  arm: bcmbca: add bcm6846 SoC support
  arm: bcmbca: add bcm6878 SoC support
  arm: bcmbca: add bcm6756 SoC support
  arm: bcmbca: add bcm63148 SoC support

 MAINTAINERS                            |   9 +-
 arch/arm/dts/Makefile                  |  10 ++
 arch/arm/dts/bcm63148.dtsi             | 103 ++++++++++++++++++++
 arch/arm/dts/bcm63178.dtsi             | 120 +++++++++++++++++++++++
 arch/arm/dts/bcm6756.dtsi              | 130 +++++++++++++++++++++++++
 arch/arm/dts/bcm6846.dtsi              | 103 ++++++++++++++++++++
 arch/arm/dts/bcm6878.dtsi              | 111 +++++++++++++++++++++
 arch/arm/dts/bcm963148.dts             |  30 ++++++
 arch/arm/dts/bcm963178.dts             |  30 ++++++
 arch/arm/dts/bcm96756.dts              |  30 ++++++
 arch/arm/dts/bcm96846.dts              |  30 ++++++
 arch/arm/dts/bcm96878.dts              |  30 ++++++
 arch/arm/mach-bcmbca/Kconfig           |  42 +++++++-
 arch/arm/mach-bcmbca/Makefile          |   5 +
 arch/arm/mach-bcmbca/bcm63148/Kconfig  |  17 ++++
 arch/arm/mach-bcmbca/bcm63148/Makefile |   5 +
 arch/arm/mach-bcmbca/bcm63178/Kconfig  |  17 ++++
 arch/arm/mach-bcmbca/bcm63178/Makefile |   5 +
 arch/arm/mach-bcmbca/bcm6756/Kconfig   |  17 ++++
 arch/arm/mach-bcmbca/bcm6756/Makefile  |   5 +
 arch/arm/mach-bcmbca/bcm6846/Kconfig   |  17 ++++
 arch/arm/mach-bcmbca/bcm6846/Makefile  |   5 +
 arch/arm/mach-bcmbca/bcm6878/Kconfig   |  17 ++++
 arch/arm/mach-bcmbca/bcm6878/Makefile  |   5 +
 board/broadcom/bcmbca/Kconfig          |  35 +++++++
 configs/bcm963148_defconfig            |  22 +++++
 configs/bcm963178_defconfig            |  22 +++++
 configs/bcm96756_defconfig             |  22 +++++
 configs/bcm96846_defconfig             |  22 +++++
 configs/bcm96878_defconfig             |  22 +++++
 include/configs/bcm963148.h            |  12 +++
 include/configs/bcm963178.h            |  12 +++
 include/configs/bcm96756.h             |  12 +++
 include/configs/bcm96846.h             |  12 +++
 include/configs/bcm96878.h             |  12 +++
 35 files changed, 1095 insertions(+), 3 deletions(-)
 create mode 100644 arch/arm/dts/bcm63148.dtsi
 create mode 100644 arch/arm/dts/bcm63178.dtsi
 create mode 100644 arch/arm/dts/bcm6756.dtsi
 create mode 100644 arch/arm/dts/bcm6846.dtsi
 create mode 100644 arch/arm/dts/bcm6878.dtsi
 create mode 100644 arch/arm/dts/bcm963148.dts
 create mode 100644 arch/arm/dts/bcm963178.dts
 create mode 100644 arch/arm/dts/bcm96756.dts
 create mode 100644 arch/arm/dts/bcm96846.dts
 create mode 100644 arch/arm/dts/bcm96878.dts
 create mode 100644 arch/arm/mach-bcmbca/bcm63148/Kconfig
 create mode 100644 arch/arm/mach-bcmbca/bcm63148/Makefile
 create mode 100644 arch/arm/mach-bcmbca/bcm63178/Kconfig
 create mode 100644 arch/arm/mach-bcmbca/bcm63178/Makefile
 create mode 100644 arch/arm/mach-bcmbca/bcm6756/Kconfig
 create mode 100644 arch/arm/mach-bcmbca/bcm6756/Makefile
 create mode 100644 arch/arm/mach-bcmbca/bcm6846/Kconfig
 create mode 100644 arch/arm/mach-bcmbca/bcm6846/Makefile
 create mode 100644 arch/arm/mach-bcmbca/bcm6878/Kconfig
 create mode 100644 arch/arm/mach-bcmbca/bcm6878/Makefile
 create mode 100644 configs/bcm963148_defconfig
 create mode 100644 configs/bcm963178_defconfig
 create mode 100644 configs/bcm96756_defconfig
 create mode 100644 configs/bcm96846_defconfig
 create mode 100644 configs/bcm96878_defconfig
 create mode 100644 include/configs/bcm963148.h
 create mode 100644 include/configs/bcm963178.h
 create mode 100644 include/configs/bcm96756.h
 create mode 100644 include/configs/bcm96846.h
 create mode 100644 include/configs/bcm96878.h

-- 
2.37.1


[-- Attachment #2: S/MIME Cryptographic Signature --]
[-- Type: application/pkcs7-signature, Size: 4212 bytes --]

             reply	other threads:[~2022-07-29 19:49 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-07-29 19:48 William Zhang [this message]
2022-07-29 19:48 ` [PATCH 1/5] arm: bcmbca: add bcm63178 SoC support William Zhang
2022-08-01 14:02   ` Tom Rini
2022-08-01 17:28     ` William Zhang
2022-07-29 19:48 ` [PATCH 2/5] arm: bcmbca: add bcm6846 " William Zhang
2022-07-29 19:48 ` [PATCH 3/5] arm: bcmbca: add bcm6878 " William Zhang
2022-07-29 19:48 ` [PATCH 4/5] arm: bcmbca: add bcm6756 " William Zhang
2022-07-29 19:48 ` [PATCH 5/5] arm: bcmbca: add bcm63148 " William Zhang

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=20220729194847.18854-1-william.zhang@broadcom.com \
    --to=william.zhang@broadcom.com \
    --cc=anand.gore@broadcom.com \
    --cc=andre.przywara@arm.com \
    --cc=christianshewitt@gmail.com \
    --cc=dan.beygelman@broadcom.com \
    --cc=festevam@denx.de \
    --cc=joel.peshkin@broadcom.com \
    --cc=kursad.oney@broadcom.com \
    --cc=marex@denx.de \
    --cc=paul.liu@linaro.org \
    --cc=philippe.reynes@softathome.com \
    --cc=samuel@sholland.org \
    --cc=sjg@chromium.org \
    --cc=tomer.yacoby@broadcom.com \
    --cc=trini@konsulko.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