2019-10-15 21:18:20

by Stefan Wahren

[permalink] [raw]
Subject: [GIT PULL 1/3] bcm2835-dt-next-2019-10-15

Hi Florian,

The following changes since commit 54ecb8f7028c5eb3d740bb82b0f1d90f2df63c5c:

Linux 5.4-rc1 (2019-09-30 10:35:40 -0700)

are available in the git repository at:

git://github.com/anholt/linux tags/bcm2835-dt-next-2019-10-15

for you to fetch changes up to 46fdee06aeefedfc62a4c33b2c4a7a74682ac755:

arm64: dts: broadcom: Add reference to RPi 4 B (2019-10-10 19:14:28 +0200)

----------------------------------------------------------------
This pull request introduce initial Raspberry Pi 4 support. But all the fancy
stuff like GENET, PCIe, xHCI, 40 bit DMA and V3D is missing.

----------------------------------------------------------------
Stefan Wahren (7):
ARM: dts: bcm283x: Remove simple-bus from fixed clocks
ARM: dts: bcm283x: Remove brcm,bcm2835-pl011 compatible
ARM: dts: bcm283x: Move BCM2835/6/7 specific to bcm2835-common.dtsi
dt-bindings: arm: Convert BCM2835 board/soc bindings to json-schema
dt-bindings: arm: bcm2835: Add Raspberry Pi 4 to DT schema
ARM: dts: Add minimal Raspberry Pi 4 support
arm64: dts: broadcom: Add reference to RPi 4 B

.../devicetree/bindings/arm/bcm/bcm2835.yaml | 54 ++
.../devicetree/bindings/arm/bcm/brcm,bcm2835.txt | 67 --
arch/arm/boot/dts/Makefile | 1 +
arch/arm/boot/dts/bcm2711-rpi-4-b.dts | 123 +++
arch/arm/boot/dts/bcm2711.dtsi | 844 +++++++++++++++++++++
arch/arm/boot/dts/bcm2835-common.dtsi | 194 +++++
arch/arm/boot/dts/bcm2835-rpi.dtsi | 4 -
arch/arm/boot/dts/bcm2835.dtsi | 1 +
arch/arm/boot/dts/bcm2836.dtsi | 1 +
arch/arm/boot/dts/bcm2837.dtsi | 1 +
arch/arm/boot/dts/bcm283x-rpi-usb-peripheral.dtsi | 7 +
arch/arm/boot/dts/bcm283x.dtsi | 190 +----
arch/arm64/boot/dts/broadcom/Makefile | 3 +-
arch/arm64/boot/dts/broadcom/bcm2711-rpi-4-b.dts | 2 +
14 files changed, 1236 insertions(+), 256 deletions(-)
create mode 100644 Documentation/devicetree/bindings/arm/bcm/bcm2835.yaml
delete mode 100644 Documentation/devicetree/bindings/arm/bcm/brcm,bcm2835.txt
create mode 100644 arch/arm/boot/dts/bcm2711-rpi-4-b.dts
create mode 100644 arch/arm/boot/dts/bcm2711.dtsi
create mode 100644 arch/arm/boot/dts/bcm2835-common.dtsi
create mode 100644 arch/arm/boot/dts/bcm283x-rpi-usb-peripheral.dtsi
create mode 100644 arch/arm64/boot/dts/broadcom/bcm2711-rpi-4-b.dts


2019-10-15 21:20:20

by Stefan Wahren

[permalink] [raw]
Subject: [GIT PULL 2/3] bcm2835-soc-next-2019-10-15

Hi Florian,

The following changes since commit 54ecb8f7028c5eb3d740bb82b0f1d90f2df63c5c:

Linux 5.4-rc1 (2019-09-30 10:35:40 -0700)

are available in the git repository at:

git://github.com/anholt/linux tags/bcm2835-soc-next-2019-10-15

for you to fetch changes up to 781fa0a954240c8487683ddf837fb2c4ede8e7ca:

ARM: bcm: Add support for BCM2711 SoC (2019-10-10 19:21:03 +0200)

----------------------------------------------------------------
This pull request introduces the machine board code for the BCM2711,
which is placed on the Raspberry Pi 4.

----------------------------------------------------------------
Stefan Wahren (1):
ARM: bcm: Add support for BCM2711 SoC

arch/arm/mach-bcm/Kconfig | 4 +++-
arch/arm/mach-bcm/Makefile | 3 ++-
arch/arm/mach-bcm/bcm2711.c | 24 ++++++++++++++++++++++++
arch/arm64/Kconfig.platforms | 5 +++--
4 files changed, 32 insertions(+), 4 deletions(-)
create mode 100644 arch/arm/mach-bcm/bcm2711.c

2019-10-19 08:53:26

by Florian Fainelli

[permalink] [raw]
Subject: Re: [GIT PULL 1/3] bcm2835-dt-next-2019-10-15

On 10/15/19 10:15 AM, Stefan Wahren wrote:
> Hi Florian,
>
> The following changes since commit 54ecb8f7028c5eb3d740bb82b0f1d90f2df63c5c:
>
> Linux 5.4-rc1 (2019-09-30 10:35:40 -0700)
>
> are available in the git repository at:
>
> git://github.com/anholt/linux tags/bcm2835-dt-next-2019-10-15
>
> for you to fetch changes up to 46fdee06aeefedfc62a4c33b2c4a7a74682ac755:
>
> arm64: dts: broadcom: Add reference to RPi 4 B (2019-10-10 19:14:28 +0200)
>
> ----------------------------------------------------------------
> This pull request introduce initial Raspberry Pi 4 support. But all the fancy
> stuff like GENET, PCIe, xHCI, 40 bit DMA and V3D is missing.
>
> ----------------------------------------------------------------
> Stefan Wahren (7):
> ARM: dts: bcm283x: Remove simple-bus from fixed clocks
> ARM: dts: bcm283x: Remove brcm,bcm2835-pl011 compatible
> ARM: dts: bcm283x: Move BCM2835/6/7 specific to bcm2835-common.dtsi
> dt-bindings: arm: Convert BCM2835 board/soc bindings to json-schema
> dt-bindings: arm: bcm2835: Add Raspberry Pi 4 to DT schema
> ARM: dts: Add minimal Raspberry Pi 4 support
> arm64: dts: broadcom: Add reference to RPi 4 B

Merged into devicetree/next, thanks Stefan.
--
Florian

2019-10-19 08:53:31

by Florian Fainelli

[permalink] [raw]
Subject: Re: [GIT PULL 2/3] bcm2835-soc-next-2019-10-15

On 10/15/19 10:15 AM, Stefan Wahren wrote:
> Hi Florian,
>
> The following changes since commit 54ecb8f7028c5eb3d740bb82b0f1d90f2df63c5c:
>
> Linux 5.4-rc1 (2019-09-30 10:35:40 -0700)
>
> are available in the git repository at:
>
> git://github.com/anholt/linux tags/bcm2835-soc-next-2019-10-15
>
> for you to fetch changes up to 781fa0a954240c8487683ddf837fb2c4ede8e7ca:
>
> ARM: bcm: Add support for BCM2711 SoC (2019-10-10 19:21:03 +0200)
>
> ----------------------------------------------------------------
> This pull request introduces the machine board code for the BCM2711,
> which is placed on the Raspberry Pi 4.

Merged into soc/next, thanks Stefan!
--
Florian