mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-26 10:15:13 +07:00
5bfb388987
Add a configuration option and a device tree for Broadcom's Vulcan ARM64 processor. vulcan.dtsi has the on-chip blocks like the PCIe controller, GICv3 with ITS, PMU, system timer and the pl011 UART. vulcan-eval.dts has definitions for a basic evaluation board. Vulcan's processor cores support the ARMv8.1 instruction set and will use "brcm,vulcan" as the compatible property. The firmware has PSCI 0.2 support for cpu wakeup. Signed-off-by: Zi Shen Lim <zlim@broadcom.com> [ updated and split dts - jchandra@broadcom.com ] Signed-off-by: Jayachandran C <jchandra@broadcom.com> Signed-off-by: Florian Fainelli <f.fainelli@gmail.com>
34 lines
754 B
Plaintext
34 lines
754 B
Plaintext
/*
|
|
* dts file for Broadcom (BRCM) Vulcan Evaluation Platform
|
|
*
|
|
* Copyright (c) 2013-2016 Broadcom
|
|
*
|
|
* This program is free software; you can redistribute it and/or
|
|
* modify it under the terms of the GNU General Public License as
|
|
* published by the Free Software Foundation; either version 2 of
|
|
* the License, or (at your option) any later version.
|
|
*/
|
|
|
|
/dts-v1/;
|
|
|
|
#include "vulcan.dtsi"
|
|
|
|
/ {
|
|
model = "Broadcom Vulcan Eval Platform";
|
|
compatible = "brcm,vulcan-eval", "brcm,vulcan-soc";
|
|
|
|
memory {
|
|
device_type = "memory";
|
|
reg = <0x00000000 0x80000000 0x0 0x80000000>, /* 2G @ 2G */
|
|
<0x00000008 0x80000000 0x0 0x80000000>; /* 2G @ 34G */
|
|
};
|
|
|
|
aliases {
|
|
serial0 = &uart0;
|
|
};
|
|
|
|
chosen {
|
|
stdout-path = "serial0:115200n8";
|
|
};
|
|
};
|