mbox series

[GIT,PULL] rpi: updates for v2024.04

Message ID 37425599-aba9-4abd-8fb1-3fc9fb78dd8d@suse.com
State Accepted
Delegated to: Tom Rini
Headers show
Series [GIT,PULL] rpi: updates for v2024.04 | expand

Pull-request

https://source.denx.de/u-boot/custodians/u-boot-raspberrypi.git tags/rpi-next-2024.04

Message

Matthias Brugger Jan. 31, 2024, 5 p.m. UTC
Hi Tom,

Here come a small set of patches for v2024.04 for the RaspberryPi.
It adds basic support for RPi5 to be able to boot on a SD card.

You can find the passing tests here:
https://source.denx.de/u-boot/custodians/u-boot-raspberrypi/-/pipelines/19512

It's the same commit ID as the tag, although it's not the same test-run.

Regards,
Matthias

---
The following changes since commit 6faba41927bdc8973b59678649ef83c564cc421e:

   Prepare v2024.04-rc1 (2024-01-29 20:53:19 -0500)

are available in the Git repository at:

   https://source.denx.de/u-boot/custodians/u-boot-raspberrypi.git 
tags/rpi-next-2024.04

for you to fetch changes up to 12d479d01849c164020e17c3ae921f974b96372d:

   configs: rpi_arm64: build position independent code (2024-01-30 17:40:13 +0100)

----------------------------------------------------------------
Add RaspberryPi5 basic support.

----------------------------------------------------------------
Dmitry Malkin (2):
       rpi5: add initial memory map for bcm2712
       rpi5: Use devicetree as alternative way to read IO base addresses

Ivan T. Ivanov (5):
       rpi5: Use devicetree to retrieve board revision
       bcm2835: Dynamically calculate bytes per pixel parameter
       mmc: bcmstb: Add support for bcm2712 SD controller
       configs: rpi_arm64: enable SDHCI BCMSTB driver
       configs: rpi_arm64: build position independent code

  arch/arm/mach-bcm283x/include/mach/base.h  |  5 +-
  arch/arm/mach-bcm283x/include/mach/mbox.h  |  3 +-
  arch/arm/mach-bcm283x/include/mach/sdhci.h |  3 +-
  arch/arm/mach-bcm283x/include/mach/timer.h |  3 +-
  arch/arm/mach-bcm283x/include/mach/wdog.h  |  3 +-
  arch/arm/mach-bcm283x/init.c               | 74 ++++++++++++++++++++++++++----
  board/raspberrypi/rpi/rpi.c                | 22 +++++++--
  configs/rpi_arm64_defconfig                |  3 +-
  drivers/mmc/bcmstb_sdhci.c                 | 64 ++++++++++++++++++++++++--
  drivers/video/bcm2835.c                    | 18 +++++++-
  10 files changed, 171 insertions(+), 27 deletions(-)

Comments

Peter Robinson Feb. 5, 2024, 10:42 a.m. UTC | #1
On Wed, 31 Jan 2024 at 17:00, Matthias Brugger <mbrugger@suse.com> wrote:
>
> Hi Tom,
>
> Here come a small set of patches for v2024.04 for the RaspberryPi.
> It adds basic support for RPi5 to be able to boot on a SD card.
>
> You can find the passing tests here:
> https://source.denx.de/u-boot/custodians/u-boot-raspberrypi/-/pipelines/19512
>
> It's the same commit ID as the tag, although it's not the same test-run.
>
> Regards,
> Matthias
>
> ---
> The following changes since commit 6faba41927bdc8973b59678649ef83c564cc421e:
>
>    Prepare v2024.04-rc1 (2024-01-29 20:53:19 -0500)
>
> are available in the Git repository at:
>
>    https://source.denx.de/u-boot/custodians/u-boot-raspberrypi.git
> tags/rpi-next-2024.04
>
> for you to fetch changes up to 12d479d01849c164020e17c3ae921f974b96372d:
>
>    configs: rpi_arm64: build position independent code (2024-01-30 17:40:13 +0100)
>
> ----------------------------------------------------------------
> Add RaspberryPi5 basic support.

Acked-by: Peter Robinson <pbrobinson@gmail.com>

> ----------------------------------------------------------------
> Dmitry Malkin (2):
>        rpi5: add initial memory map for bcm2712
>        rpi5: Use devicetree as alternative way to read IO base addresses
>
> Ivan T. Ivanov (5):
>        rpi5: Use devicetree to retrieve board revision
>        bcm2835: Dynamically calculate bytes per pixel parameter
>        mmc: bcmstb: Add support for bcm2712 SD controller
>        configs: rpi_arm64: enable SDHCI BCMSTB driver
>        configs: rpi_arm64: build position independent code
>
>   arch/arm/mach-bcm283x/include/mach/base.h  |  5 +-
>   arch/arm/mach-bcm283x/include/mach/mbox.h  |  3 +-
>   arch/arm/mach-bcm283x/include/mach/sdhci.h |  3 +-
>   arch/arm/mach-bcm283x/include/mach/timer.h |  3 +-
>   arch/arm/mach-bcm283x/include/mach/wdog.h  |  3 +-
>   arch/arm/mach-bcm283x/init.c               | 74 ++++++++++++++++++++++++++----
>   board/raspberrypi/rpi/rpi.c                | 22 +++++++--
>   configs/rpi_arm64_defconfig                |  3 +-
>   drivers/mmc/bcmstb_sdhci.c                 | 64 ++++++++++++++++++++++++--
>   drivers/video/bcm2835.c                    | 18 +++++++-
>   10 files changed, 171 insertions(+), 27 deletions(-)
Tom Rini Feb. 5, 2024, 3:16 p.m. UTC | #2
On Mon, Feb 05, 2024 at 10:42:27AM +0000, Peter Robinson wrote:
> On Wed, 31 Jan 2024 at 17:00, Matthias Brugger <mbrugger@suse.com> wrote:
> >
> > Hi Tom,
> >
> > Here come a small set of patches for v2024.04 for the RaspberryPi.
> > It adds basic support for RPi5 to be able to boot on a SD card.
> >
> > You can find the passing tests here:
> > https://source.denx.de/u-boot/custodians/u-boot-raspberrypi/-/pipelines/19512
> >
> > It's the same commit ID as the tag, although it's not the same test-run.
> >
> > Regards,
> > Matthias
> >
> > ---
> > The following changes since commit 6faba41927bdc8973b59678649ef83c564cc421e:
> >
> >    Prepare v2024.04-rc1 (2024-01-29 20:53:19 -0500)
> >
> > are available in the Git repository at:
> >
> >    https://source.denx.de/u-boot/custodians/u-boot-raspberrypi.git
> > tags/rpi-next-2024.04
> >
> > for you to fetch changes up to 12d479d01849c164020e17c3ae921f974b96372d:
> >
> >    configs: rpi_arm64: build position independent code (2024-01-30 17:40:13 +0100)
> >
> > ----------------------------------------------------------------
> > Add RaspberryPi5 basic support.
> 
> Acked-by: Peter Robinson <pbrobinson@gmail.com>

Applied to u-boot/master, thanks!