U-Boot Archive on lore.kernel.org
 help / color / mirror / Atom feed
From: Matthias Brugger <matthias.bgg@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 00/16] Raspberry Pi 32/64 support
Date: Tue, 16 Jul 2019 16:17:46 +0200	[thread overview]
Message-ID: <a3efd1b7-4bfa-0e54-e4f7-0e0bc7dbbc41@gmail.com> (raw)
In-Reply-To: <20190716133803.1174-1-andrei@gherzan.ro>



On 16/07/2019 15:37, andrei at gherzan.ro wrote:
> From: Andrei Gherzan <andrei@balena.io>
> 
> This PR consolidates the work we've done to support the new Raspberry Pi

I don't understand why you posted these while you asked me if I'll submit them.
That's not a good way to collaborate on upstream.

Please use get_maintainers.pl to see whom you have to send the patches to.

> 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

Both not needed with FW at
025759b86 ("firmware: Rename hdmi_enable_4k to hdmi_enable_4kp60")
Apart from that they have already been posted.

> 
> 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
> 

  parent reply	other threads:[~2019-07-16 14:17 UTC|newest]

Thread overview: 43+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 ` Matthias Brugger [this message]
2019-07-16 19:00   ` [U-Boot] [PATCH 00/16] Raspberry Pi 32/64 support 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

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=a3efd1b7-4bfa-0e54-e4f7-0e0bc7dbbc41@gmail.com \
    --to=matthias.bgg@gmail.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