mirror of
https://github.com/AuxXxilium/linux_dsm_epyc7002.git
synced 2024-12-28 11:18:45 +07:00
517b311eae
Move and update device tree files as part of transition from Broadcom Vulcan to Cavium ThunderX2. The changes are to: * rename dts/broadcom/vulcan.dtsi to cavium/thunder2-99xx.dtsi, update cpu cores to be "cavium,thunder2", and update SoC to be "cavium,thunderx2-cn9900" * move SoC dts/broadcom/vulcan-eval.dtsi to cavium/thunder2-99xx.dtsi and update board name string * Update dts/broadcom/Makefile not to build vulcan dtbs * Update dts/cavium/Makefile to build thunder2 dtbs No changes to the dts contents except the updated "compatible" and "model" properties. Signed-off-by: Jayachandran C <jnair@caviumnetworks.com> Reviewed-by: Matthias Brugger <matthias.bgg@gmail.com> Signed-off-by: Arnd Bergmann <arnd@arndb.de>
35 lines
797 B
Plaintext
35 lines
797 B
Plaintext
/*
|
|
* dts file for Cavium ThunderX2 CN99XX Evaluation Platform
|
|
*
|
|
* Copyright (c) 2017 Cavium Inc.
|
|
* 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 "thunder2-99xx.dtsi"
|
|
|
|
/ {
|
|
model = "Cavium ThunderX2 CN99XX";
|
|
compatible = "cavium,thunderx2-cn9900", "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";
|
|
};
|
|
};
|