U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 00/16] Raspberry Pi 32/64 support
@ 2019-07-16 13:37 andrei at gherzan.ro
  2019-07-16 13:37 ` [U-Boot] [PATCH 01/16] dts: Create a dtsi for BCM2835/6/7 specific configuration andrei at gherzan.ro
                   ` (17 more replies)
  0 siblings, 18 replies; 43+ messages in thread
From: andrei at gherzan.ro @ 2019-07-16 13:37 UTC (permalink / raw)
  To: u-boot

From: Andrei Gherzan <andrei@balena.io>

This PR consolidates the work we've done to support the new Raspberry Pi
4 board. It also includes commits from
https://github.com/mbgg/u-boot.git (credits to Matthias Brugger).

Andrei Gherzan (13):
  dts: Create a dtsi for BCM2835/6/7 specific configuration
  dts: Add initial support for bcm2838
  arm: mach-bcm283x: Define configs for RaspberryPi 4
  arm: mach-bcm283x: Define mbox address for BCM2838
  rpi: Add rpi_model entry for RaspberryPi 4
  dt-bindings: Define BCM2838_CLOCK_EMMC2 needed for RaspberryPi 4
  arm: bcm283x: Include definition for additional emmc clock
  arm: bcm283x: Define device base addresses for bcm2835
  config: rpi4: Add defconfig for rpi4-32
  dts: bcm2838-rpi-4-b: Use the emmc2 interface for sdhci
  rpi: Add memory map for bcm2838
  configs: rpi4: Remove DWC2 and USB_ETHER configs
  dts: bcm2838-rpi-4-b: Use the emmc2/2811 compatible string for SDHCI

Fabian Vogt (2):
  bcm2835 video: Bail out early if querying video information fails
  bcm283x mbox: Correctly wait for space to send

Matthias Brugger (1):
  mmc: bcm2835_sdhci: Add support for bcm2711 device

 arch/arm/dts/Makefile                      |   4 +-
 arch/arm/dts/bcm2835-common.dtsi           |  53 +++++
 arch/arm/dts/bcm2835.dtsi                  |   1 +
 arch/arm/dts/bcm2836.dtsi                  |   1 +
 arch/arm/dts/bcm2837.dtsi                  |   1 +
 arch/arm/dts/bcm2838-rpi-4-b.dts           |  52 +++++
 arch/arm/dts/bcm2838.dtsi                  | 237 +++++++++++++++++++++
 arch/arm/dts/bcm283x.dtsi                  |  45 +---
 arch/arm/mach-bcm283x/Kconfig              |  35 +++
 arch/arm/mach-bcm283x/include/mach/mbox.h  |  13 +-
 arch/arm/mach-bcm283x/include/mach/sdhci.h |   4 +
 arch/arm/mach-bcm283x/include/mach/timer.h |   4 +
 arch/arm/mach-bcm283x/include/mach/wdog.h  |   4 +
 arch/arm/mach-bcm283x/mbox.c               |   6 +-
 board/raspberrypi/rpi/rpi.c                |  32 ++-
 configs/rpi_4_32b_defconfig                |  40 ++++
 configs/rpi_4_defconfig                    |   3 -
 drivers/mmc/bcm2835_sdhci.c                |  12 +-
 drivers/video/bcm2835.c                    |   4 +-
 include/dt-bindings/clock/bcm2835.h        |   2 +
 20 files changed, 494 insertions(+), 59 deletions(-)
 create mode 100644 arch/arm/dts/bcm2835-common.dtsi
 create mode 100644 arch/arm/dts/bcm2838-rpi-4-b.dts
 create mode 100644 arch/arm/dts/bcm2838.dtsi
 create mode 100644 configs/rpi_4_32b_defconfig

-- 
2.22.0

^ permalink raw reply	[flat|nested] 43+ messages in thread

end of thread, other threads:[~2019-08-30 14:36 UTC | newest]

Thread overview: 43+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-07-16 13:37 [U-Boot] [PATCH 00/16] Raspberry Pi 32/64 support andrei at gherzan.ro
2019-07-16 13:37 ` [U-Boot] [PATCH 01/16] dts: Create a dtsi for BCM2835/6/7 specific configuration andrei at gherzan.ro
2019-07-16 14:20   ` Matthias Brugger
2019-07-16 13:37 ` [U-Boot] [PATCH 02/16] dts: Add initial support for bcm2838 andrei at gherzan.ro
2019-07-16 14:21   ` Matthias Brugger
2019-07-16 13:37 ` [U-Boot] [PATCH 03/16] arm: mach-bcm283x: Define configs for RaspberryPi 4 andrei at gherzan.ro
2019-07-16 13:37 ` [U-Boot] [PATCH 04/16] arm: mach-bcm283x: Define mbox address for BCM2838 andrei at gherzan.ro
2019-07-16 14:22   ` Matthias Brugger
2019-07-16 13:37 ` [U-Boot] [PATCH 05/16] rpi: Add rpi_model entry for RaspberryPi 4 andrei at gherzan.ro
2019-07-16 14:31   ` Matthias Brugger
2019-07-16 13:37 ` [U-Boot] [PATCH 06/16] dt-bindings: Define BCM2838_CLOCK_EMMC2 needed " andrei at gherzan.ro
2019-07-16 14:23   ` Matthias Brugger
2019-07-16 13:37 ` [U-Boot] [PATCH 07/16] arm: bcm283x: Include definition for additional emmc clock andrei at gherzan.ro
2019-07-16 13:37 ` [U-Boot] [PATCH 08/16] mmc: bcm2835_sdhci: Add support for bcm2711 device andrei at gherzan.ro
2019-07-16 14:32   ` Matthias Brugger
2019-07-16 13:37 ` [U-Boot] [PATCH 09/16] arm: bcm283x: Define device base addresses for bcm2835 andrei at gherzan.ro
2019-07-16 13:37 ` [U-Boot] [PATCH 10/16] bcm2835 video: Bail out early if querying video information fails andrei at gherzan.ro
2019-07-16 13:37 ` [U-Boot] [PATCH 11/16] bcm283x mbox: Correctly wait for space to send andrei at gherzan.ro
2019-07-16 13:37 ` [U-Boot] [PATCH 12/16] config: rpi4: Add defconfig for rpi4-32 andrei at gherzan.ro
2019-07-16 14:25   ` Matthias Brugger
2019-07-16 15:25     ` Peter Robinson
2019-07-16 13:38 ` [U-Boot] [PATCH 13/16] dts: bcm2838-rpi-4-b: Use the emmc2 interface for sdhci andrei at gherzan.ro
2019-07-16 14:26   ` Matthias Brugger
2019-07-16 13:38 ` [U-Boot] [PATCH 14/16] rpi: Add memory map for bcm2838 andrei at gherzan.ro
2019-07-16 13:38 ` [U-Boot] [PATCH 15/16] configs: rpi4: Remove DWC2 and USB_ETHER configs andrei at gherzan.ro
2019-07-16 13:38 ` [U-Boot] [PATCH 16/16] dts: bcm2838-rpi-4-b: Use the emmc2/2811 compatible string for SDHCI andrei at gherzan.ro
2019-07-16 14:17 ` [U-Boot] [PATCH 00/16] Raspberry Pi 32/64 support Matthias Brugger
2019-07-16 19:00   ` Andrei Gherzan
2019-07-24 14:39 ` [U-Boot] [PATCH v2 0/8] " Andrei Gherzan
2019-07-24 14:39   ` [U-Boot] [PATCH v2 1/8] RPI: Add defconfigs for rpi4 (32/64) Andrei Gherzan
2019-07-24 14:39   ` [U-Boot] [PATCH v2 2/8] ARM: bcm283x: Add BCM283x_BASE define Andrei Gherzan
2019-07-26 11:16     ` Alexander Graf
     [not found]       ` <8195673b-37aa-9bea-916a-4934836098be@suse.com>
2019-07-26 12:04         ` Alexander Graf
2019-07-26 12:43           ` Andrei Gherzan
2019-08-30 14:36             ` Matthias Brugger
2019-07-24 14:39   ` [U-Boot] [PATCH v2 3/8] ARM: bcm283x: Define configs for RaspberryPi 4 Andrei Gherzan
2019-07-26 11:00     ` Matthias Brugger
2019-07-24 14:39   ` [U-Boot] [PATCH v2 4/8] RPI: Add entry for Raspberry Pi 4 model B Andrei Gherzan
2019-07-24 14:39   ` [U-Boot] [PATCH v2 5/8] ARM: bcm283x: Include definition for additional emmc clock Andrei Gherzan
2019-07-24 14:39   ` [U-Boot] [PATCH v2 6/8] mmc: bcm283x: Add support for bcm2711 device in bcm2835_sdhci Andrei Gherzan
2019-07-24 14:39   ` [U-Boot] [PATCH v2 7/8] RPI: Add memory map for bcm2838 Andrei Gherzan
2019-07-24 14:39   ` [U-Boot] [PATCH v2 8/8] git-mailrc: Add rpi and bcm283x maintainer Andrei Gherzan
2019-07-26 10:57     ` Matthias Brugger

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox