mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-09-18 22:14:16 +00:00
arm64: dts: apple: t8011: Add CPU caches
Add information about CPU caches in the P-cluster of Apple A10X SoC. Due to "Apple Fusion Architecture" big.LITTLE switcher, only caches from one of the clusters can be used at any given moment. Signed-off-by: Nick Chan <towinchenmi@gmail.com> Link: https://lore.kernel.org/r/20250220-caches-v1-7-2c7011097768@gmail.com Signed-off-by: Sven Peter <sven@svenpeter.dev>
This commit is contained in:
parent
a3ffd38110
commit
66be2180e9
1 changed files with 16 additions and 0 deletions
|
@ -36,6 +36,9 @@
|
|||
performance-domains = <&cpufreq>;
|
||||
enable-method = "spin-table";
|
||||
device_type = "cpu";
|
||||
next-level-cache = <&l2_cache>;
|
||||
i-cache-size = <0x10000>; /* P-core */
|
||||
d-cache-size = <0x10000>; /* P-core */
|
||||
};
|
||||
|
||||
cpu1: cpu@1 {
|
||||
|
@ -46,6 +49,9 @@
|
|||
performance-domains = <&cpufreq>;
|
||||
enable-method = "spin-table";
|
||||
device_type = "cpu";
|
||||
next-level-cache = <&l2_cache>;
|
||||
i-cache-size = <0x10000>; /* P-core */
|
||||
d-cache-size = <0x10000>; /* P-core */
|
||||
};
|
||||
|
||||
cpu2: cpu@2 {
|
||||
|
@ -56,6 +62,16 @@
|
|||
performance-domains = <&cpufreq>;
|
||||
enable-method = "spin-table";
|
||||
device_type = "cpu";
|
||||
next-level-cache = <&l2_cache>;
|
||||
i-cache-size = <0x10000>; /* P-core */
|
||||
d-cache-size = <0x10000>; /* P-core */
|
||||
};
|
||||
|
||||
l2_cache: l2-cache {
|
||||
compatible = "cache";
|
||||
cache-level = <2>;
|
||||
cache-unified;
|
||||
cache-size = <0x800000>; /* P-cluster */
|
||||
};
|
||||
};
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue