mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-14 15:23:07 +00:00
24 lines
533 B
Text
24 lines
533 B
Text
|
// SPDX-License-Identifier: (GPL-2.0-or-later OR BSD-3-Clause)
|
||
|
/*
|
||
|
* Copyright (C) STMicroelectronics 2023 - All Rights Reserved
|
||
|
* Author: Alexandre Torgue <alexandre.torgue@foss.st.com> for STMicroelectronics.
|
||
|
*/
|
||
|
#include "stm32mp251.dtsi"
|
||
|
|
||
|
/ {
|
||
|
cpus {
|
||
|
cpu1: cpu@1 {
|
||
|
compatible = "arm,cortex-a35";
|
||
|
device_type = "cpu";
|
||
|
reg = <1>;
|
||
|
enable-method = "psci";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
arm-pmu {
|
||
|
interrupts = <GIC_SPI 368 IRQ_TYPE_LEVEL_HIGH>,
|
||
|
<GIC_SPI 369 IRQ_TYPE_LEVEL_HIGH>;
|
||
|
interrupt-affinity = <&cpu0>, <&cpu1>;
|
||
|
};
|
||
|
};
|