mirror of
https://github.com/openwrt/openwrt.git
synced 2024-12-20 22:23:27 +00:00
7d7aa2fd92
This change makes the names of Broadcom targets consistent by using the common notation based on SoC/CPU ID (which is used internally anyway), bcmXXXX instead of brcmXXXX. This is even used for target TITLE in make menuconfig already, only the short target name used brcm so far. Despite, since subtargets range from bcm2708 to bcm2711, it seems appropriate to use bcm27xx instead of bcm2708 (again, as already done for BOARDNAME). This also renames the packages brcm2708-userland and brcm2708-gpu-fw. Signed-off-by: Adrian Schmutzler <freifunk@adrianschmutzler.de> Acked-by: Álvaro Fernández Rojas <noltari@gmail.com>
37 lines
1.3 KiB
Diff
37 lines
1.3 KiB
Diff
From e00fde59167c31cf376c74b333b58f011b244dfa Mon Sep 17 00:00:00 2001
|
|
From: popcornmix <popcornmix@gmail.com>
|
|
Date: Mon, 25 Jan 2016 17:25:12 +0000
|
|
Subject: [PATCH] firmware: Updated mailbox header
|
|
|
|
---
|
|
include/soc/bcm2835/raspberrypi-firmware.h | 5 +++++
|
|
1 file changed, 5 insertions(+)
|
|
|
|
--- a/include/soc/bcm2835/raspberrypi-firmware.h
|
|
+++ b/include/soc/bcm2835/raspberrypi-firmware.h
|
|
@@ -12,6 +12,8 @@
|
|
#include <linux/types.h>
|
|
#include <linux/of_device.h>
|
|
|
|
+#define RPI_FIRMWARE_CHAN_FB 1
|
|
+
|
|
struct rpi_firmware;
|
|
|
|
enum rpi_firmware_property_status {
|
|
@@ -76,6 +78,8 @@ enum rpi_firmware_property_tag {
|
|
RPI_FIRMWARE_GET_CUSTOMER_OTP = 0x00030021,
|
|
RPI_FIRMWARE_GET_DOMAIN_STATE = 0x00030030,
|
|
RPI_FIRMWARE_GET_THROTTLED = 0x00030046,
|
|
+ RPI_FIRMWARE_GET_CLOCK_MEASURED = 0x00030047,
|
|
+ RPI_FIRMWARE_NOTIFY_REBOOT = 0x00030048,
|
|
RPI_FIRMWARE_SET_CLOCK_STATE = 0x00038001,
|
|
RPI_FIRMWARE_SET_CLOCK_RATE = 0x00038002,
|
|
RPI_FIRMWARE_SET_VOLTAGE = 0x00038003,
|
|
@@ -158,5 +162,6 @@ static inline struct rpi_firmware *rpi_f
|
|
return NULL;
|
|
}
|
|
#endif
|
|
+int rpi_firmware_transaction(struct rpi_firmware *fw, u32 chan, u32 data);
|
|
|
|
#endif /* __SOC_RASPBERRY_FIRMWARE_H__ */
|