mirror of
https://git.openwrt.org/openwrt/openwrt.git
synced 2024-11-25 06:26:15 +00:00
538a1d740c
The patches were generated from the RPi repo with the following command: git format-patch v6.6.58..rpi-6.6.y Signed-off-by: Álvaro Fernández Rojas <noltari@gmail.com>
55 lines
1.4 KiB
Diff
55 lines
1.4 KiB
Diff
From e53eefbc711622f0702e887f88d69f867aa0bf1a Mon Sep 17 00:00:00 2001
|
|
From: Phil Elwell <phil@raspberrypi.com>
|
|
Date: Tue, 1 Oct 2024 12:14:57 +0100
|
|
Subject: [PATCH 1317/1350] overlays: hat_map: Add Sense and Hailo AI HATs
|
|
|
|
Add mappings to overlays for the Sense HATs and the Hailo AI HATs. Note
|
|
that mapping by product names (and not UUIDs) as used here requires an
|
|
updated firmware.
|
|
|
|
Signed-off-by: Phil Elwell <phil@raspberrypi.com>
|
|
---
|
|
arch/arm/boot/dts/overlays/hat_map.dts | 20 ++++++++++++++++++--
|
|
1 file changed, 18 insertions(+), 2 deletions(-)
|
|
|
|
--- a/arch/arm/boot/dts/overlays/hat_map.dts
|
|
+++ b/arch/arm/boot/dts/overlays/hat_map.dts
|
|
@@ -1,6 +1,18 @@
|
|
/dts-v1/;
|
|
|
|
/ {
|
|
+ hailo-8 {
|
|
+ product = "Raspberry Pi AI Hat, Model Hailo-8";
|
|
+ vendor = "Hailo Technologies";
|
|
+ overlay = "none,pciex1,pciex1_gen=3";
|
|
+ };
|
|
+
|
|
+ hailo-8l {
|
|
+ product = "Raspberry Pi AI Hat, Model Hailo-8L";
|
|
+ vendor = "Hailo Technologies";
|
|
+ overlay = "none,pciex1,pciex1_gen=3";
|
|
+ };
|
|
+
|
|
hifiberry-amp100-1 {
|
|
uuid = [ 5eb863b8 12f9 41ad 978f 4cee1b3eca62 ];
|
|
overlay = "hifiberry-amp100";
|
|
@@ -97,12 +109,16 @@
|
|
};
|
|
|
|
sensehat-v1 {
|
|
- uuid = [ 5d960035 8e87 428f 95d8 59852d697754 ];
|
|
+ product = "Sense HAT";
|
|
+ vendor = "Raspberry Pi";
|
|
+ pver = < 0x0001 >;
|
|
overlay = "rpi-sense";
|
|
};
|
|
|
|
sensehat-v2 {
|
|
- uuid = [ 1aa9c428 72eb 48da 9306 8c3706ed3653 ];
|
|
+ product = "Sense HAT";
|
|
+ vendor = "Raspberry Pi";
|
|
+ pver = < 0x0002 >;
|
|
overlay = "rpi-sense-v2";
|
|
};
|
|
};
|