mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-24 02:18:18 +07:00
292816a637
Follow the recent trend for the license description, and also fix the wrongly stated X11 to MIT. As already pointed on the DT ML, the X11 license text [1] is explicitly for the X Consortium and has a couple of extra clauses. The MIT license text [2] is actually what the current DT files claim. [1] https://spdx.org/licenses/X11.html [2] https://spdx.org/licenses/MIT.html Signed-off-by: Gregory CLEMENT <gregory.clement@bootlin.com>
28 lines
544 B
Plaintext
28 lines
544 B
Plaintext
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Device Tree Include file for Marvell Armada 372x family of SoCs
|
|
* (also named 88F3720)
|
|
*
|
|
* Copyright (C) 2016 Marvell
|
|
*
|
|
* Gregory CLEMENT <gregory.clement@free-electrons.com>
|
|
*
|
|
*/
|
|
|
|
#include "armada-37xx.dtsi"
|
|
|
|
/ {
|
|
model = "Marvell Armada 3720 SoC";
|
|
compatible = "marvell,armada3720", "marvell,armada3710";
|
|
|
|
cpus {
|
|
cpu@1 {
|
|
device_type = "cpu";
|
|
compatible = "arm,cortex-a53","arm,armv8";
|
|
reg = <0x1>;
|
|
clocks = <&nb_periph_clk 16>;
|
|
enable-method = "psci";
|
|
};
|
|
};
|
|
};
|