Lines Matching +full:cache +full:-

1 # SPDX-License-Identifier: GPL-2.0-only OR BSD-2-Clause
3 ---
4 $id: http://devicetree.org/schemas/arm/socionext/socionext,uniphier-system-cache.yaml#
5 $schema: http://devicetree.org/meta-schemas/core.yaml#
7 title: UniPhier outer cache controller
10 UniPhier ARM 32-bit SoCs are integrated with a full-custom outer cache
11 controller system. All of them have a level 2 cache controller, and some
12 have a level 3 cache controller as well.
15 - Masahiro Yamada <yamada.masahiro@socionext.com>
19 const: socionext,uniphier-system-cache
29 Interrupts can be used to notify the completion of cache operations.
35 cache-unified: true
37 cache-size: true
39 cache-sets: true
41 cache-line-size: true
43 cache-level:
47 next-level-cache: true
50 - $ref: /schemas/cache-controller.yaml#
55 - compatible
56 - reg
57 - interrupts
58 - cache-unified
59 - cache-size
60 - cache-sets
61 - cache-line-size
62 - cache-level
65 - |
67 cache-controller@500c0000 {
68 compatible = "socionext,uniphier-system-cache";
71 cache-unified;
72 cache-size = <0x140000>;
73 cache-sets = <512>;
74 cache-line-size = <128>;
75 cache-level = <2>;
77 - |
79 // L2 should specify the next level cache by 'next-level-cache'.
80 l2: cache-controller@500c0000 {
81 compatible = "socionext,uniphier-system-cache";
84 cache-unified;
85 cache-size = <0x200000>;
86 cache-sets = <512>;
87 cache-line-size = <128>;
88 cache-level = <2>;
89 next-level-cache = <&l3>;
92 l3: cache-controller@500c8000 {
93 compatible = "socionext,uniphier-system-cache";
96 cache-unified;
97 cache-size = <0x200000>;
98 cache-sets = <512>;
99 cache-line-size = <256>;
100 cache-level = <3>;