U-Boot Archive on 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>,
	anand.gore@broadcom.com, kursad.oney@broadcom.com,
	noltari@gmail.com, philippe.reynes@softathome.com,
	tomer.yacoby@broadcom.com, dregan@mail.com
Cc: William Zhang <william.zhang@broadcom.com>,
	joel.peshkin@broadcom.com, dan.beygelman@broadcom.com,
	Simon Glass <sjg@chromium.org>,
	Bharat Gooty <bharat.gooty@broadcom.com>,
	Jonas Gorski <jonas.gorski@gmail.com>,
	Rayagonda Kokatanur <rayagonda.kokatanur@broadcom.com>,
	Tom Rini <trini@konsulko.com>,
	Florian Fainelli <f.fainelli@gmail.com>,
	Jagan Teki <jagan@amarulasolutions.com>,
	Daniel Schwierzeck <daniel.schwierzeck@gmail.com>
Subject: [PATCH v3 00/10] spi: bcm63xx-hsspi: driver and doc updates
Date: Wed,  7 Jun 2023 16:37:00 -0700	[thread overview]
Message-ID: <20230607233710.3805-1-william.zhang@broadcom.com> (raw)

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

This patch series is the u-boot port from the recently accepted kernel
Broadcom HSSPI driver patch series here [1]. It includes the
accumulative updates and fixes for the driver from Broadcom. It also
added a new driver for the updated SPI controller found in the new
BCMBCA SoC. The device tree document is converted to yaml format and
updated accordingly.

Changes in v3:
- Add Reviewed-by tags
- Reorder the patch series for SPI changes and arch/doc changes
- Move arch related Kconfig changes to SPI enabling patch
- Separate the Kconfig BCM63XX_HSSPI dependency change to
a dedicate patch
- Combine multi-line condition into single line for config
HAVE_SPI_CS_CTRL

Changes in v2:
- Add Álvaro Fernández Rojas as another maintainer

William Zhang (10):
  spi: bcm63xx-hsspi: Make driver depend on BCMBCA arch
  spi: bcm63xx-hsspi: Fix multi-bit mode setting
  spi: bcm63xx-hsspi: Add new compatible string support
  spi: bcm63xx-hsspi: Add prepend mode support
  spi: bcmbca-hsspi: Add driver for newer HSSPI controller
  dt-bindings: spi: Add bcm63xx-hsspi controller support
  ARM: dts: broadcom: bcmbca: Add spi controller node
  arm64: dts: broadcom: bcmbca: Add spi controller node
  broadcom: bcmbca: Enable SPI drivers by default
  MAINTAINERS: Add Broadcom Broadband SoC HS SPI drivers

 MAINTAINERS                                   |   9 +
 arch/arm/Kconfig                              |   2 +
 arch/arm/dts/bcm47622.dtsi                    |  18 +
 arch/arm/dts/bcm4908.dtsi                     |  17 +
 arch/arm/dts/bcm4912.dtsi                     |  20 +
 arch/arm/dts/bcm63138.dtsi                    |  18 +
 arch/arm/dts/bcm63146.dtsi                    |  19 +
 arch/arm/dts/bcm63148.dtsi                    |  18 +
 arch/arm/dts/bcm63158.dtsi                    |  15 +-
 arch/arm/dts/bcm63178.dtsi                    |  19 +
 arch/arm/dts/bcm6756.dtsi                     |  19 +
 arch/arm/dts/bcm6813.dtsi                     |  20 +
 arch/arm/dts/bcm6846.dtsi                     |  18 +
 arch/arm/dts/bcm6855.dtsi                     |  27 +-
 arch/arm/dts/bcm6856.dtsi                     |  23 +-
 arch/arm/dts/bcm6858.dtsi                     |  23 +-
 arch/arm/dts/bcm6878.dtsi                     |  19 +
 arch/arm/dts/bcm947622.dts                    |   4 +
 arch/arm/dts/bcm94908.dts                     |   4 +
 arch/arm/dts/bcm94912.dts                     |   4 +
 arch/arm/dts/bcm963138.dts                    |   4 +
 arch/arm/dts/bcm963146.dts                    |   4 +
 arch/arm/dts/bcm963148.dts                    |   4 +
 arch/arm/dts/bcm963158.dts                    |   4 +
 arch/arm/dts/bcm963178.dts                    |   4 +
 arch/arm/dts/bcm96756.dts                     |   4 +
 arch/arm/dts/bcm96813.dts                     |   4 +
 arch/arm/dts/bcm96846.dts                     |   4 +
 arch/arm/dts/bcm96855.dts                     |   4 +
 arch/arm/dts/bcm96856.dts                     |   4 +
 arch/arm/dts/bcm96858.dts                     |   4 +
 arch/arm/dts/bcm96878.dts                     |   4 +
 arch/arm/mach-bcmbca/Kconfig                  |  23 +
 .../spi/brcm,bcm63xx-hsspi.yaml               | 134 ++++++
 drivers/spi/Kconfig                           |  13 +-
 drivers/spi/Makefile                          |   1 +
 drivers/spi/bcm63xx_hsspi.c                   | 277 +++++++++++-
 drivers/spi/bcmbca_hsspi.c                    | 414 ++++++++++++++++++
 38 files changed, 1157 insertions(+), 69 deletions(-)
 create mode 100644 doc/device-tree-bindings/spi/brcm,bcm63xx-hsspi.yaml
 create mode 100644 drivers/spi/bcmbca_hsspi.c

-- 
2.37.3


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

             reply	other threads:[~2023-06-07 23:38 UTC|newest]

Thread overview: 21+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-06-07 23:37 William Zhang [this message]
2023-06-07 23:37 ` [PATCH v3 01/10] spi: bcm63xx-hsspi: Make driver depend on BCMBCA arch William Zhang
2023-06-11 10:39   ` Jagan Teki
2023-06-07 23:37 ` [PATCH v3 02/10] spi: bcm63xx-hsspi: Fix multi-bit mode setting William Zhang
2023-06-11 10:40   ` Jagan Teki
2023-06-07 23:37 ` [PATCH v3 03/10] spi: bcm63xx-hsspi: Add new compatible string support William Zhang
2023-06-11 10:41   ` Jagan Teki
2023-06-07 23:37 ` [PATCH v3 04/10] spi: bcm63xx-hsspi: Add prepend mode support William Zhang
2023-06-11 10:42   ` Jagan Teki
2023-06-07 23:37 ` [PATCH v3 05/10] spi: bcmbca-hsspi: Add driver for newer HSSPI controller William Zhang
2023-06-11 10:42   ` Jagan Teki
2023-06-07 23:37 ` [PATCH v3 06/10] dt-bindings: spi: Add bcm63xx-hsspi controller support William Zhang
2023-06-11 10:43   ` Jagan Teki
2023-06-14 19:59     ` William Zhang
2023-06-07 23:37 ` [PATCH v3 07/10] ARM: dts: broadcom: bcmbca: Add spi controller node William Zhang
2023-06-07 23:37 ` [PATCH v3 08/10] arm64: " William Zhang
2023-06-07 23:37 ` [PATCH v3 09/10] broadcom: bcmbca: Enable SPI drivers by default William Zhang
2023-06-07 23:37 ` [PATCH v3 10/10] MAINTAINERS: Add Broadcom Broadband SoC HS SPI drivers William Zhang
2023-08-09  2:02   ` Tom Rini
2023-08-11 23:57     ` William Zhang
2023-08-12  1:00       ` Tom Rini

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=20230607233710.3805-1-william.zhang@broadcom.com \
    --to=william.zhang@broadcom.com \
    --cc=anand.gore@broadcom.com \
    --cc=bharat.gooty@broadcom.com \
    --cc=dan.beygelman@broadcom.com \
    --cc=daniel.schwierzeck@gmail.com \
    --cc=dregan@mail.com \
    --cc=f.fainelli@gmail.com \
    --cc=jagan@amarulasolutions.com \
    --cc=joel.peshkin@broadcom.com \
    --cc=jonas.gorski@gmail.com \
    --cc=kursad.oney@broadcom.com \
    --cc=noltari@gmail.com \
    --cc=philippe.reynes@softathome.com \
    --cc=rayagonda.kokatanur@broadcom.com \
    --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