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: kursad.oney@broadcom.com, dan.beygelman@broadcom.com,
	f.fainelli@gmail.com, joel.peshkin@broadcom.com,
	philippe.reynes@softathome.com, rafal@milecki.pl,
	anand.gore@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/4] arm: bcmbca: add basic support for more Broadcom BCA SoCs
Date: Fri,  5 Aug 2022 18:33:59 -0700	[thread overview]
Message-ID: <20220806013403.1344-1-william.zhang@broadcom.com> (raw)

[-- Attachment #1: Type: text/plain, Size: 3990 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: BCM4908, BCM4912, BCM63146 and BCM6813.

This patch series applies on top of the my previous patch [1].

[1] https://lists.denx.de/pipermail/u-boot/2022-August/491060.html


William Zhang (4):
  arm: bcmbca: add bcm63146 SoC support
  arm: bcmbca: add bcm4912 SoC support
  arm: bcmbca: add bcm6813 SoC support
  arm: bcmbca: add bcm4908 SoC support

 MAINTAINERS                               |   4 +
 arch/arm/dts/Makefile                     |   8 ++
 arch/arm/dts/bcm4908.dtsi                 | 127 +++++++++++++++++++++
 arch/arm/dts/bcm4912.dtsi                 | 128 ++++++++++++++++++++++
 arch/arm/dts/bcm63146.dtsi                | 110 +++++++++++++++++++
 arch/arm/dts/bcm6813.dtsi                 | 128 ++++++++++++++++++++++
 arch/arm/dts/bcm94908.dts                 |  30 +++++
 arch/arm/dts/bcm94912.dts                 |  30 +++++
 arch/arm/dts/bcm963146.dts                |  30 +++++
 arch/arm/dts/bcm96813.dts                 |  30 +++++
 arch/arm/mach-bcmbca/Kconfig              |  32 ++++++
 arch/arm/mach-bcmbca/Makefile             |   4 +
 arch/arm/mach-bcmbca/bcm4908/Kconfig      |  17 +++
 arch/arm/mach-bcmbca/bcm4908/Makefile     |   5 +
 arch/arm/mach-bcmbca/bcm4908/mmu_table.c  |  32 ++++++
 arch/arm/mach-bcmbca/bcm4912/Kconfig      |  17 +++
 arch/arm/mach-bcmbca/bcm4912/Makefile     |   5 +
 arch/arm/mach-bcmbca/bcm4912/mmu_table.c  |  32 ++++++
 arch/arm/mach-bcmbca/bcm63146/Kconfig     |  17 +++
 arch/arm/mach-bcmbca/bcm63146/Makefile    |   5 +
 arch/arm/mach-bcmbca/bcm63146/mmu_table.c |  32 ++++++
 arch/arm/mach-bcmbca/bcm6813/Kconfig      |  17 +++
 arch/arm/mach-bcmbca/bcm6813/Makefile     |   5 +
 arch/arm/mach-bcmbca/bcm6813/mmu_table.c  |  32 ++++++
 board/broadcom/bcmbca/Kconfig             |  28 +++++
 configs/bcm94908_defconfig                |  23 ++++
 configs/bcm94912_defconfig                |  23 ++++
 configs/bcm963146_defconfig               |  23 ++++
 configs/bcm96813_defconfig                |  23 ++++
 include/configs/bcm94908.h                |  11 ++
 include/configs/bcm94912.h                |  11 ++
 include/configs/bcm963146.h               |  11 ++
 include/configs/bcm96813.h                |  11 ++
 33 files changed, 1041 insertions(+)
 create mode 100644 arch/arm/dts/bcm4908.dtsi
 create mode 100644 arch/arm/dts/bcm4912.dtsi
 create mode 100644 arch/arm/dts/bcm63146.dtsi
 create mode 100644 arch/arm/dts/bcm6813.dtsi
 create mode 100644 arch/arm/dts/bcm94908.dts
 create mode 100644 arch/arm/dts/bcm94912.dts
 create mode 100644 arch/arm/dts/bcm963146.dts
 create mode 100644 arch/arm/dts/bcm96813.dts
 create mode 100644 arch/arm/mach-bcmbca/bcm4908/Kconfig
 create mode 100644 arch/arm/mach-bcmbca/bcm4908/Makefile
 create mode 100644 arch/arm/mach-bcmbca/bcm4908/mmu_table.c
 create mode 100644 arch/arm/mach-bcmbca/bcm4912/Kconfig
 create mode 100644 arch/arm/mach-bcmbca/bcm4912/Makefile
 create mode 100644 arch/arm/mach-bcmbca/bcm4912/mmu_table.c
 create mode 100644 arch/arm/mach-bcmbca/bcm63146/Kconfig
 create mode 100644 arch/arm/mach-bcmbca/bcm63146/Makefile
 create mode 100644 arch/arm/mach-bcmbca/bcm63146/mmu_table.c
 create mode 100644 arch/arm/mach-bcmbca/bcm6813/Kconfig
 create mode 100644 arch/arm/mach-bcmbca/bcm6813/Makefile
 create mode 100644 arch/arm/mach-bcmbca/bcm6813/mmu_table.c
 create mode 100644 configs/bcm94908_defconfig
 create mode 100644 configs/bcm94912_defconfig
 create mode 100644 configs/bcm963146_defconfig
 create mode 100644 configs/bcm96813_defconfig
 create mode 100644 include/configs/bcm94908.h
 create mode 100644 include/configs/bcm94912.h
 create mode 100644 include/configs/bcm963146.h
 create mode 100644 include/configs/bcm96813.h

-- 
2.37.1


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

             reply	other threads:[~2022-08-06  1:34 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-06  1:33 William Zhang [this message]
2022-08-06  1:34 ` [PATCH 1/4] arm: bcmbca: add bcm63146 SoC support William Zhang
2022-08-09  3:24   ` Florian Fainelli
2022-10-31 14:45   ` Tom Rini
2022-08-06  1:34 ` [PATCH 2/4] arm: bcmbca: add bcm4912 " William Zhang
2022-08-09  3:25   ` Florian Fainelli
2022-08-06  1:34 ` [PATCH 3/4] arm: bcmbca: add bcm6813 " William Zhang
2022-08-09  3:27   ` Florian Fainelli
2022-08-06  1:34 ` [PATCH 4/4] arm: bcmbca: add bcm4908 " William Zhang
2022-08-09  3:27   ` Florian Fainelli
2022-08-09  3:29 ` [PATCH 0/4] arm: bcmbca: add basic support for more Broadcom BCA SoCs Florian Fainelli
2022-08-09  5:51   ` 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=20220806013403.1344-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=f.fainelli@gmail.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=rafal@milecki.pl \
    --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