diff options
author | Vineet Gupta <vgupta@synopsys.com> | 2016-01-19 16:00:42 +0530 |
---|---|---|
committer | Vineet Gupta <vgupta@synopsys.com> | 2016-05-09 09:32:29 +0530 |
commit | 2e8cd93877b2f97439e417839dbd250f0a0f12a7 (patch) | |
tree | c3b1dbd1a82d65a953ed1a46c0803a9d9eaa0239 /arch/arc/boot/dts/skeleton_hs.dtsi | |
parent | 69fbd09874ded099d445271d05681529dac4d00a (diff) | |
download | op-kernel-dev-2e8cd93877b2f97439e417839dbd250f0a0f12a7.zip op-kernel-dev-2e8cd93877b2f97439e417839dbd250f0a0f12a7.tar.gz |
ARCv2: [dts]: Introduce HS38 specific include DTS ...
... and add them to plat-sim DTS.
This allows for future change to introduce timers in DT in single place
Signed-off-by: Vineet Gupta <vgupta@synopsys.com>
Diffstat (limited to 'arch/arc/boot/dts/skeleton_hs.dtsi')
-rw-r--r-- | arch/arc/boot/dts/skeleton_hs.dtsi | 32 |
1 files changed, 32 insertions, 0 deletions
diff --git a/arch/arc/boot/dts/skeleton_hs.dtsi b/arch/arc/boot/dts/skeleton_hs.dtsi new file mode 100644 index 0000000..a538766 --- /dev/null +++ b/arch/arc/boot/dts/skeleton_hs.dtsi @@ -0,0 +1,32 @@ +/* + * Copyright (C) 2016 Synopsys, Inc. (www.synopsys.com) + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License version 2 as + * published by the Free Software Foundation. + */ + +/ { + compatible = "snps,arc"; + clock-frequency = <80000000>; /* 80 MHZ */ + #address-cells = <1>; + #size-cells = <1>; + chosen { }; + aliases { }; + + cpus { + #address-cells = <1>; + #size-cells = <0>; + + cpu@0 { + device_type = "cpu"; + compatible = "snps,archs38"; + reg = <0>; + }; + }; + + memory { + device_type = "memory"; + reg = <0x80000000 0x10000000>; /* 256M */ + }; +}; |