All of lore.kernel.org
 help / color / mirror / Atom feed
From: William Zhang <william.zhang@broadcom.com>
To: U-Boot Mailing List <u-boot@lists.denx.de>
Cc: rafal@milecki.pl, anand.gore@broadcom.com,
	joel.peshkin@broadcom.com, dan.beygelman@broadcom.com,
	philippe.reynes@softathome.com, f.fainelli@gmail.com,
	kursad.oney@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>,
	Rick Chen <rick@andestech.com>,
	Samuel Holland <samuel@sholland.org>,
	Sean Anderson <seanga2@gmail.com>, Simon Glass <sjg@chromium.org>,
	Tom Rini <trini@konsulko.com>,
	Tomer Yacoby <tomer.yacoby@broadcom.com>,
	Wolfgang Denk <wd@denx.de>,
	"Ying-Chun Liu (PaulLiu)" <paul.liu@linaro.org>
Subject: [PATCH v3 0/5] arm: bcmbca: move bcm63158 support under CONFIG_ARCH_BCMBCA
Date: Mon, 22 Aug 2022 11:19:43 -0700	[thread overview]
Message-ID: <20220822181948.21333-1-william.zhang@broadcom.com> (raw)

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

Sorry for another version of patch series with some minor updates.
Please see the change log and specific patch for details.

BCM63158 is one of the Broadcom Broadband origin DSL Gateway router SoC.
It was originally added by Philippe before Broadcom started to upstream
the support for broadband SoCs. The ARM based Broadcom Broadband SoC
family is now supported under the same ARCH_BCMBCA config. This patch
series migrate the BCM63158 support to ARCH_BCMBCA.

This patch series need to apply on top of my previous patch series [1].

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

Changes in v3:
-Update subject line to be more clear for patch 3
-Fix reset_cpu function prototype.

Changes in v2:
- Remove extra nodes from bcm963158.dts and keep it as a generic minimun
board support dts following other BCA chip convention.
- Remove bcm963158_ram_defconfig per discussion with Philippe as a
basic config version of bcm963158_defconfig is now added.

William Zhang (5):
  arm: bcmbca: add bcm63158 SoC support under CONFIG_ARCH_BCMBCA
  arm: bcmbca: remove bcm63158 support under CONFIG_ARCH_BCM63158
  arm: bcmbca: replace ARCH_BCM63158 symbols in Kconfig with BCM63158
  MAINTAINERS: Add BCM63158 maintainer to BCMBCA entry
  arm: bcmbca: make reset_cpu function weak

 MAINTAINERS                               |   2 +
 arch/arm/Kconfig                          |   8 +-
 arch/arm/dts/Makefile                     |   5 +-
 arch/arm/dts/bcm63158.dtsi                | 207 +++++++++++++---------
 arch/arm/dts/bcm963158.dts                | 121 +------------
 arch/arm/mach-bcmbca/Kconfig              |   8 +
 arch/arm/mach-bcmbca/Makefile             |   1 +
 arch/arm/mach-bcmbca/bcm63158/Kconfig     |  17 ++
 arch/arm/mach-bcmbca/bcm63158/Makefile    |   5 +
 arch/arm/mach-bcmbca/bcm63158/mmu_table.c |  32 ++++
 board/broadcom/bcm963158/Kconfig          |  17 --
 board/broadcom/bcm963158/MAINTAINERS      |   6 -
 board/broadcom/bcm963158/Makefile         |   3 -
 board/broadcom/bcm963158/bcm963158.c      |  62 -------
 board/broadcom/bcmbca/Kconfig             |   7 +
 board/broadcom/bcmbca/board.c             |   2 +-
 configs/bcm963158_defconfig               |  23 +++
 configs/bcm963158_ram_defconfig           |  67 -------
 drivers/gpio/Kconfig                      |   2 +-
 drivers/led/Kconfig                       |   2 +-
 drivers/mtd/nand/raw/Kconfig              |   2 +-
 drivers/spi/Kconfig                       |   2 +-
 drivers/watchdog/Kconfig                  |   2 +-
 include/configs/bcm963158.h               |  15 ++
 include/configs/broadcom_bcm963158.h      |  32 ----
 25 files changed, 251 insertions(+), 399 deletions(-)
 create mode 100644 arch/arm/mach-bcmbca/bcm63158/Kconfig
 create mode 100644 arch/arm/mach-bcmbca/bcm63158/Makefile
 create mode 100644 arch/arm/mach-bcmbca/bcm63158/mmu_table.c
 delete mode 100644 board/broadcom/bcm963158/Kconfig
 delete mode 100644 board/broadcom/bcm963158/MAINTAINERS
 delete mode 100644 board/broadcom/bcm963158/Makefile
 delete mode 100644 board/broadcom/bcm963158/bcm963158.c
 create mode 100644 configs/bcm963158_defconfig
 delete mode 100644 configs/bcm963158_ram_defconfig
 create mode 100644 include/configs/bcm963158.h
 delete mode 100644 include/configs/broadcom_bcm963158.h

-- 
2.37.1


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

             reply	other threads:[~2022-08-22 18:20 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-08-22 18:19 William Zhang [this message]
2022-08-22 18:19 ` [PATCH v3 1/5] arm: bcmbca: add bcm63158 SoC support under CONFIG_ARCH_BCMBCA William Zhang
2022-08-24 12:43   ` Philippe REYNES
2022-10-31 14:45   ` Tom Rini
2022-08-22 18:19 ` [PATCH v3 2/5] arm: bcmbca: remove bcm63158 support under CONFIG_ARCH_BCM63158 William Zhang
2022-08-24 12:44   ` Philippe REYNES
2022-08-22 18:19 ` [PATCH v3 3/5] arm: bcmbca: replace ARCH_BCM63158 symbols in Kconfig with BCM63158 William Zhang
2022-08-24 12:44   ` Philippe REYNES
2022-08-22 18:19 ` [PATCH v3 4/5] MAINTAINERS: Add BCM63158 maintainer to BCMBCA entry William Zhang
2022-08-24 12:44   ` Philippe REYNES
2022-08-22 18:19 ` [PATCH v3 5/5] arm: bcmbca: make reset_cpu function weak William Zhang
2022-08-24 12:44   ` Philippe REYNES

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=20220822181948.21333-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=rick@andestech.com \
    --cc=samuel@sholland.org \
    --cc=seanga2@gmail.com \
    --cc=sjg@chromium.org \
    --cc=tomer.yacoby@broadcom.com \
    --cc=trini@konsulko.com \
    --cc=u-boot@lists.denx.de \
    --cc=wd@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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.