mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-04-18 02:24:18 +00:00
feat(morello): add GPU DT node
Signed-off-by: Patrik Berglund <patrik.berglund@arm.com> Change-Id: Ie82158aeaaf9e4bc68bc4bb91e3a9cc572b40d23
This commit is contained in:
parent
d2d71e2e58
commit
cd94c3d6ad
1 changed files with 24 additions and 1 deletions
|
@ -1,5 +1,5 @@
|
|||
/*
|
||||
* Copyright (c) 2021-2022, Arm Limited. All rights reserved.
|
||||
* Copyright (c) 2021-2023, Arm Limited. All rights reserved.
|
||||
*
|
||||
* SPDX-License-Identifier: BSD-3-Clause
|
||||
*/
|
||||
|
@ -213,6 +213,29 @@
|
|||
clock-output-names = "aclk";
|
||||
};
|
||||
|
||||
gpu@2d000000 {
|
||||
compatible = "arm,mali-bifrost";
|
||||
reg = <0x0 0x2d000000 0x0 0x4000>;
|
||||
interrupts =
|
||||
<GIC_SPI 65 IRQ_TYPE_LEVEL_HIGH>,
|
||||
<GIC_SPI 66 IRQ_TYPE_LEVEL_HIGH>,
|
||||
<GIC_SPI 67 IRQ_TYPE_LEVEL_HIGH>;
|
||||
interrupt-names =
|
||||
"gpu",
|
||||
"job",
|
||||
"mmu";
|
||||
clocks = <&clk_gpu>;
|
||||
clock-names = "clk_mali";
|
||||
status = "okay";
|
||||
};
|
||||
|
||||
clk_gpu: clk_gpu {
|
||||
compatible = "fixed-clock";
|
||||
#clock-cells = <0>;
|
||||
clock-frequency = <650000000>;
|
||||
clock-output-names = "clk_mali";
|
||||
};
|
||||
|
||||
firmware {
|
||||
scmi {
|
||||
compatible = "arm,scmi";
|
||||
|
|
Loading…
Add table
Reference in a new issue