mirror of
https://github.com/torvalds/linux.git
synced 2024-11-15 00:21:59 +00:00
47 lines
791 B
Plaintext
47 lines
791 B
Plaintext
|
/*
|
||
|
* Copyright 2013-2014 Texas Instruments, Inc.
|
||
|
*
|
||
|
* Keystone 2 Kepler/Hawking soc specific device tree
|
||
|
*
|
||
|
* 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.
|
||
|
*/
|
||
|
|
||
|
/ {
|
||
|
cpus {
|
||
|
#address-cells = <1>;
|
||
|
#size-cells = <0>;
|
||
|
|
||
|
interrupt-parent = <&gic>;
|
||
|
|
||
|
cpu@0 {
|
||
|
compatible = "arm,cortex-a15";
|
||
|
device_type = "cpu";
|
||
|
reg = <0>;
|
||
|
};
|
||
|
|
||
|
cpu@1 {
|
||
|
compatible = "arm,cortex-a15";
|
||
|
device_type = "cpu";
|
||
|
reg = <1>;
|
||
|
};
|
||
|
|
||
|
cpu@2 {
|
||
|
compatible = "arm,cortex-a15";
|
||
|
device_type = "cpu";
|
||
|
reg = <2>;
|
||
|
};
|
||
|
|
||
|
cpu@3 {
|
||
|
compatible = "arm,cortex-a15";
|
||
|
device_type = "cpu";
|
||
|
reg = <3>;
|
||
|
};
|
||
|
};
|
||
|
|
||
|
soc {
|
||
|
/include/ "k2hk-clocks.dtsi"
|
||
|
};
|
||
|
};
|