mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2024-11-01 00:48:50 +00: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>
26 lines
689 B
Text
26 lines
689 B
Text
// SPDX-License-Identifier: (GPL-2.0+ OR MIT)
|
|
/*
|
|
* Copyright (C) 2016 Marvell Technology Group Ltd.
|
|
*
|
|
* Device Tree file for the Armada 8020 SoC, made of an AP806 Dual and
|
|
* two CP110.
|
|
*/
|
|
|
|
#include "armada-ap806-dual.dtsi"
|
|
#include "armada-80x0.dtsi"
|
|
|
|
/ {
|
|
model = "Marvell Armada 8020";
|
|
compatible = "marvell,armada8020", "marvell,armada-ap806-dual",
|
|
"marvell,armada-ap806";
|
|
};
|
|
|
|
/* The RTC requires external oscillator. But on Aramda 80x0, the RTC clock
|
|
* in CP master is not connected (by package) to the oscillator. So
|
|
* disable it. However, the RTC clock in CP slave is connected to the
|
|
* oscillator so this one is let enabled.
|
|
*/
|
|
|
|
&cp0_rtc {
|
|
status = "disabled";
|
|
};
|