mirror of
https://github.com/openwrt/openwrt.git
synced 2025-01-10 23:12:48 +00:00
3a5584e0df
Adds latest 6.6 patches from the Raspberry Pi repository.
These patches were generated from:
https://github.com/raspberrypi/linux/commits/rpi-6.6.y/
With the following command:
git format-patch -N v6.6.67..HEAD
(HEAD -> 811ff707533bcd67cdcd368bbd46223082009b12)
Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
(cherry picked from commit 692205305d
)
24 lines
1012 B
Diff
24 lines
1012 B
Diff
From eb035f3ad7da1324d310ef83b42398f47d5bafe7 Mon Sep 17 00:00:00 2001
|
|
From: Tim Gover <tim.gover@raspberrypi.com>
|
|
Date: Fri, 1 Nov 2024 19:42:17 +0000
|
|
Subject: [PATCH] raspberrypi-firmware: Add the RPI firmware UART APIs
|
|
|
|
Add VideoCore mailbox definitions for the new RPi firmware UART.
|
|
|
|
Signed-off-by: Tim Gover <tim.gover@raspberrypi.com>
|
|
---
|
|
include/soc/bcm2835/raspberrypi-firmware.h | 2 ++
|
|
1 file changed, 2 insertions(+)
|
|
|
|
--- a/include/soc/bcm2835/raspberrypi-firmware.h
|
|
+++ b/include/soc/bcm2835/raspberrypi-firmware.h
|
|
@@ -98,6 +98,8 @@ enum rpi_firmware_property_tag {
|
|
RPI_FIRMWARE_GET_REBOOT_FLAGS = 0x00030064,
|
|
RPI_FIRMWARE_SET_REBOOT_FLAGS = 0x00038064,
|
|
RPI_FIRMWARE_NOTIFY_DISPLAY_DONE = 0x00030066,
|
|
+ RPI_FIRMWARE_GET_SW_UART = 0x0003008a,
|
|
+ RPI_FIRMWARE_SET_SW_UART = 0x0003808a,
|
|
|
|
/* Dispmanx TAGS */
|
|
RPI_FIRMWARE_FRAMEBUFFER_ALLOCATE = 0x00040001,
|