mbox series

[v3,0/3] arm: bcmbca: add bcm6846 SoC support

Message ID 20220601022215.32494-1-william.zhang@broadcom.com (mailing list archive)
Headers show
Series arm: bcmbca: add bcm6846 SoC support | expand

Message

William Zhang June 1, 2022, 2:22 a.m. UTC
This change adds the basic support for Broadcom's ARMv7 based
Broadband SoC BCM6846. The initial support includes a bare-bone dts
for dual core ARM A7 with a Broadcom uart.

Changes in v3:
- Simplify dt-bindings patch subject line
- Fix timer PPI interrupt cpu mask for dual core cpu
- Remove unnecessary cpu_on and cpu_off properties from psci node
- Add the missing gic registers and interrupts property to gic node

Changes in v2:
- Add new line between entries

William Zhang (3):
  dt-bindings: arm: add BCM6846 SoC
  ARM: dts: add dts files for bcmbca SoC bcm6846
  MAINTAINERS: add bcm6846 to bcmbca arch entry

 .../bindings/arm/bcm/brcm,bcmbca.yaml         |   7 ++
 MAINTAINERS                                   |   3 +-
 arch/arm/boot/dts/Makefile                    |   3 +-
 arch/arm/boot/dts/bcm6846.dtsi                | 103 ++++++++++++++++++
 arch/arm/boot/dts/bcm96846.dts                |  30 +++++
 5 files changed, 143 insertions(+), 3 deletions(-)
 create mode 100644 arch/arm/boot/dts/bcm6846.dtsi
 create mode 100644 arch/arm/boot/dts/bcm96846.dts

Comments

Florian Fainelli June 8, 2022, 9:19 a.m. UTC | #1
On 6/1/2022 4:22 AM, William Zhang wrote:
> This change adds the basic support for Broadcom's ARMv7 based
> Broadband SoC BCM6846. The initial support includes a bare-bone dts
> for dual core ARM A7 with a Broadcom uart.
> 
> Changes in v3:
> - Simplify dt-bindings patch subject line
> - Fix timer PPI interrupt cpu mask for dual core cpu
> - Remove unnecessary cpu_on and cpu_off properties from psci node
> - Add the missing gic registers and interrupts property to gic node
> 
> Changes in v2:
> - Add new line between entries

Series applied, thanks William! I will comment on the VFP fixup separately.