forked from armbian/build
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Apply performance monitoring unit IRQ number patch to uboot
- Loading branch information
Showing
1 changed file
with
30 additions
and
0 deletions.
There are no files selected for viewing
30 changes: 30 additions & 0 deletions
30
patch/u-boot/u-boot-sunxi/allwinner-a10-fix-pmu-irq-number.patch
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
From 0000000000000000000000000000000000000000 Mon Sep 17 00:00:00 2001 | ||
From: Ryzer58 <[email protected]> | ||
Date: Tue, 20 Aug 2024 20:36:36 +0100 | ||
Subject: Correct perf interrupt source number as referenced in the Allwinner A10 User manual to resolve conflict with UART2. | ||
|
||
Signed-off-by: Ryzer58 <[email protected]> | ||
--- | ||
arch/arm/dts/sun4i-a10.dtsi | 2 +- | ||
1 file changed, 1 insertion(+), 1 deletion(-) | ||
|
||
diff --git a/arch/arm/dts/sun4i-a10.dtsi b/arch/arm/dts/sun4i-a10.dtsi | ||
index 51a6464aab..cabf619c2e 100644 | ||
--- a/arch/arm/dts/sun4i-a10.dtsi | ||
+++ b/arch/arm/dts/sun4i-a10.dtsi | ||
@@ -183,11 +183,11 @@ | ||
status = "disabled"; | ||
}; | ||
|
||
pmu { | ||
compatible = "arm,cortex-a8-pmu"; | ||
- interrupts = <3>; | ||
+ interrupts = <66>; | ||
}; | ||
|
||
reserved-memory { | ||
#address-cells = <1>; | ||
#size-cells = <1>; | ||
-- | ||
Created with Armbian build tools https://github.com/armbian/build | ||
|