1 // SPDX-License-Identifier: GPL-2.0
3 * cacheinfo support - processor cache information via sysfs
5 * Based on arch/x86/kernel/cpu/intel_cacheinfo.c
6 * Author: Sudeep Holla <sudeep.holla@arm.com>
8 #define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
10 #include <linux/acpi.h>
11 #include <linux/bitops.h>
12 #include <linux/cacheinfo.h>
13 #include <linux/compiler.h>
14 #include <linux/cpu.h>
15 #include <linux/device.h>
16 #include <linux/init.h>
18 #include <linux/sched.h>
19 #include <linux/slab.h>
20 #include <linux/smp.h>
21 #include <linux/sysfs.h>
23 /* pointer to per cpu cacheinfo */
24 static DEFINE_PER_CPU(struct cpu_cacheinfo
, ci_cpu_cacheinfo
);
25 #define ci_cacheinfo(cpu) (&per_cpu(ci_cpu_cacheinfo, cpu))
26 #define cache_leaves(cpu) (ci_cacheinfo(cpu)->num_leaves)
27 #define per_cpu_cacheinfo(cpu) (ci_cacheinfo(cpu)->info_list)
29 struct cpu_cacheinfo
*get_cpu_cacheinfo(unsigned int cpu
)
31 return ci_cacheinfo(cpu
);
35 static inline bool cache_leaves_are_shared(struct cacheinfo
*this_leaf
,
36 struct cacheinfo
*sib_leaf
)
38 return sib_leaf
->fw_token
== this_leaf
->fw_token
;
41 /* OF properties to query for a given cache type */
42 struct cache_type_info
{
43 const char *size_prop
;
44 const char *line_size_props
[2];
45 const char *nr_sets_prop
;
48 static const struct cache_type_info cache_type_info
[] = {
50 .size_prop
= "cache-size",
51 .line_size_props
= { "cache-line-size",
52 "cache-block-size", },
53 .nr_sets_prop
= "cache-sets",
55 .size_prop
= "i-cache-size",
56 .line_size_props
= { "i-cache-line-size",
57 "i-cache-block-size", },
58 .nr_sets_prop
= "i-cache-sets",
60 .size_prop
= "d-cache-size",
61 .line_size_props
= { "d-cache-line-size",
62 "d-cache-block-size", },
63 .nr_sets_prop
= "d-cache-sets",
67 static inline int get_cacheinfo_idx(enum cache_type type
)
69 if (type
== CACHE_TYPE_UNIFIED
)
74 static void cache_size(struct cacheinfo
*this_leaf
, struct device_node
*np
)
79 ct_idx
= get_cacheinfo_idx(this_leaf
->type
);
80 propname
= cache_type_info
[ct_idx
].size_prop
;
82 if (of_property_read_u32(np
, propname
, &this_leaf
->size
))
86 /* not cache_line_size() because that's a macro in include/linux/cache.h */
87 static void cache_get_line_size(struct cacheinfo
*this_leaf
,
88 struct device_node
*np
)
92 ct_idx
= get_cacheinfo_idx(this_leaf
->type
);
93 lim
= ARRAY_SIZE(cache_type_info
[ct_idx
].line_size_props
);
95 for (i
= 0; i
< lim
; i
++) {
100 propname
= cache_type_info
[ct_idx
].line_size_props
[i
];
101 ret
= of_property_read_u32(np
, propname
, &line_size
);
103 this_leaf
->coherency_line_size
= line_size
;
109 static void cache_nr_sets(struct cacheinfo
*this_leaf
, struct device_node
*np
)
111 const char *propname
;
114 ct_idx
= get_cacheinfo_idx(this_leaf
->type
);
115 propname
= cache_type_info
[ct_idx
].nr_sets_prop
;
117 if (of_property_read_u32(np
, propname
, &this_leaf
->number_of_sets
))
118 this_leaf
->number_of_sets
= 0;
121 static void cache_associativity(struct cacheinfo
*this_leaf
)
123 unsigned int line_size
= this_leaf
->coherency_line_size
;
124 unsigned int nr_sets
= this_leaf
->number_of_sets
;
125 unsigned int size
= this_leaf
->size
;
128 * If the cache is fully associative, there is no need to
129 * check the other properties.
131 if (!(nr_sets
== 1) && (nr_sets
> 0 && size
> 0 && line_size
> 0))
132 this_leaf
->ways_of_associativity
= (size
/ nr_sets
) / line_size
;
135 static bool cache_node_is_unified(struct cacheinfo
*this_leaf
,
136 struct device_node
*np
)
138 return of_property_read_bool(np
, "cache-unified");
141 static void cache_of_set_props(struct cacheinfo
*this_leaf
,
142 struct device_node
*np
)
145 * init_cache_level must setup the cache level correctly
146 * overriding the architecturally specified levels, so
147 * if type is NONE at this stage, it should be unified
149 if (this_leaf
->type
== CACHE_TYPE_NOCACHE
&&
150 cache_node_is_unified(this_leaf
, np
))
151 this_leaf
->type
= CACHE_TYPE_UNIFIED
;
152 cache_size(this_leaf
, np
);
153 cache_get_line_size(this_leaf
, np
);
154 cache_nr_sets(this_leaf
, np
);
155 cache_associativity(this_leaf
);
158 static int cache_setup_of_node(unsigned int cpu
)
160 struct device_node
*np
;
161 struct cacheinfo
*this_leaf
;
162 struct device
*cpu_dev
= get_cpu_device(cpu
);
163 struct cpu_cacheinfo
*this_cpu_ci
= get_cpu_cacheinfo(cpu
);
164 unsigned int index
= 0;
166 /* skip if fw_token is already populated */
167 if (this_cpu_ci
->info_list
->fw_token
) {
172 pr_err("No cpu device for CPU %d\n", cpu
);
175 np
= cpu_dev
->of_node
;
177 pr_err("Failed to find cpu%d device node\n", cpu
);
181 while (index
< cache_leaves(cpu
)) {
182 this_leaf
= this_cpu_ci
->info_list
+ index
;
183 if (this_leaf
->level
!= 1)
184 np
= of_find_next_cache_node(np
);
186 np
= of_node_get(np
);/* cpu node itself */
189 cache_of_set_props(this_leaf
, np
);
190 this_leaf
->fw_token
= np
;
194 if (index
!= cache_leaves(cpu
)) /* not all OF nodes populated */
200 static inline int cache_setup_of_node(unsigned int cpu
) { return 0; }
201 static inline bool cache_leaves_are_shared(struct cacheinfo
*this_leaf
,
202 struct cacheinfo
*sib_leaf
)
205 * For non-DT/ACPI systems, assume unique level 1 caches, system-wide
206 * shared caches for all other levels. This will be used only if
207 * arch specific code has not populated shared_cpu_map
209 return !(this_leaf
->level
== 1);
213 int __weak
cache_setup_acpi(unsigned int cpu
)
218 static int cache_shared_cpu_map_setup(unsigned int cpu
)
220 struct cpu_cacheinfo
*this_cpu_ci
= get_cpu_cacheinfo(cpu
);
221 struct cacheinfo
*this_leaf
, *sib_leaf
;
225 if (this_cpu_ci
->cpu_map_populated
)
228 if (of_have_populated_dt())
229 ret
= cache_setup_of_node(cpu
);
230 else if (!acpi_disabled
)
231 ret
= cache_setup_acpi(cpu
);
236 for (index
= 0; index
< cache_leaves(cpu
); index
++) {
239 this_leaf
= this_cpu_ci
->info_list
+ index
;
240 /* skip if shared_cpu_map is already populated */
241 if (!cpumask_empty(&this_leaf
->shared_cpu_map
))
244 cpumask_set_cpu(cpu
, &this_leaf
->shared_cpu_map
);
245 for_each_online_cpu(i
) {
246 struct cpu_cacheinfo
*sib_cpu_ci
= get_cpu_cacheinfo(i
);
248 if (i
== cpu
|| !sib_cpu_ci
->info_list
)
249 continue;/* skip if itself or no cacheinfo */
250 sib_leaf
= sib_cpu_ci
->info_list
+ index
;
251 if (cache_leaves_are_shared(this_leaf
, sib_leaf
)) {
252 cpumask_set_cpu(cpu
, &sib_leaf
->shared_cpu_map
);
253 cpumask_set_cpu(i
, &this_leaf
->shared_cpu_map
);
261 static void cache_shared_cpu_map_remove(unsigned int cpu
)
263 struct cpu_cacheinfo
*this_cpu_ci
= get_cpu_cacheinfo(cpu
);
264 struct cacheinfo
*this_leaf
, *sib_leaf
;
265 unsigned int sibling
, index
;
267 for (index
= 0; index
< cache_leaves(cpu
); index
++) {
268 this_leaf
= this_cpu_ci
->info_list
+ index
;
269 for_each_cpu(sibling
, &this_leaf
->shared_cpu_map
) {
270 struct cpu_cacheinfo
*sib_cpu_ci
;
272 if (sibling
== cpu
) /* skip itself */
275 sib_cpu_ci
= get_cpu_cacheinfo(sibling
);
276 if (!sib_cpu_ci
->info_list
)
279 sib_leaf
= sib_cpu_ci
->info_list
+ index
;
280 cpumask_clear_cpu(cpu
, &sib_leaf
->shared_cpu_map
);
281 cpumask_clear_cpu(sibling
, &this_leaf
->shared_cpu_map
);
283 if (of_have_populated_dt())
284 of_node_put(this_leaf
->fw_token
);
288 static void free_cache_attributes(unsigned int cpu
)
290 if (!per_cpu_cacheinfo(cpu
))
293 cache_shared_cpu_map_remove(cpu
);
295 kfree(per_cpu_cacheinfo(cpu
));
296 per_cpu_cacheinfo(cpu
) = NULL
;
299 int __weak
init_cache_level(unsigned int cpu
)
304 int __weak
populate_cache_leaves(unsigned int cpu
)
309 static int detect_cache_attributes(unsigned int cpu
)
313 if (init_cache_level(cpu
) || !cache_leaves(cpu
))
316 per_cpu_cacheinfo(cpu
) = kcalloc(cache_leaves(cpu
),
317 sizeof(struct cacheinfo
), GFP_KERNEL
);
318 if (per_cpu_cacheinfo(cpu
) == NULL
)
322 * populate_cache_leaves() may completely setup the cache leaves and
323 * shared_cpu_map or it may leave it partially setup.
325 ret
= populate_cache_leaves(cpu
);
329 * For systems using DT for cache hierarchy, fw_token
330 * and shared_cpu_map will be set up here only if they are
331 * not populated already
333 ret
= cache_shared_cpu_map_setup(cpu
);
335 pr_warn("Unable to detect cache hierarchy for CPU %d\n", cpu
);
342 free_cache_attributes(cpu
);
346 /* pointer to cpuX/cache device */
347 static DEFINE_PER_CPU(struct device
*, ci_cache_dev
);
348 #define per_cpu_cache_dev(cpu) (per_cpu(ci_cache_dev, cpu))
350 static cpumask_t cache_dev_map
;
352 /* pointer to array of devices for cpuX/cache/indexY */
353 static DEFINE_PER_CPU(struct device
**, ci_index_dev
);
354 #define per_cpu_index_dev(cpu) (per_cpu(ci_index_dev, cpu))
355 #define per_cache_index_dev(cpu, idx) ((per_cpu_index_dev(cpu))[idx])
357 #define show_one(file_name, object) \
358 static ssize_t file_name##_show(struct device *dev, \
359 struct device_attribute *attr, char *buf) \
361 struct cacheinfo *this_leaf = dev_get_drvdata(dev); \
362 return sprintf(buf, "%u\n", this_leaf->object); \
366 show_one(level
, level
);
367 show_one(coherency_line_size
, coherency_line_size
);
368 show_one(number_of_sets
, number_of_sets
);
369 show_one(physical_line_partition
, physical_line_partition
);
370 show_one(ways_of_associativity
, ways_of_associativity
);
372 static ssize_t
size_show(struct device
*dev
,
373 struct device_attribute
*attr
, char *buf
)
375 struct cacheinfo
*this_leaf
= dev_get_drvdata(dev
);
377 return sprintf(buf
, "%uK\n", this_leaf
->size
>> 10);
380 static ssize_t
shared_cpumap_show_func(struct device
*dev
, bool list
, char *buf
)
382 struct cacheinfo
*this_leaf
= dev_get_drvdata(dev
);
383 const struct cpumask
*mask
= &this_leaf
->shared_cpu_map
;
385 return cpumap_print_to_pagebuf(list
, buf
, mask
);
388 static ssize_t
shared_cpu_map_show(struct device
*dev
,
389 struct device_attribute
*attr
, char *buf
)
391 return shared_cpumap_show_func(dev
, false, buf
);
394 static ssize_t
shared_cpu_list_show(struct device
*dev
,
395 struct device_attribute
*attr
, char *buf
)
397 return shared_cpumap_show_func(dev
, true, buf
);
400 static ssize_t
type_show(struct device
*dev
,
401 struct device_attribute
*attr
, char *buf
)
403 struct cacheinfo
*this_leaf
= dev_get_drvdata(dev
);
405 switch (this_leaf
->type
) {
406 case CACHE_TYPE_DATA
:
407 return sprintf(buf
, "Data\n");
408 case CACHE_TYPE_INST
:
409 return sprintf(buf
, "Instruction\n");
410 case CACHE_TYPE_UNIFIED
:
411 return sprintf(buf
, "Unified\n");
417 static ssize_t
allocation_policy_show(struct device
*dev
,
418 struct device_attribute
*attr
, char *buf
)
420 struct cacheinfo
*this_leaf
= dev_get_drvdata(dev
);
421 unsigned int ci_attr
= this_leaf
->attributes
;
424 if ((ci_attr
& CACHE_READ_ALLOCATE
) && (ci_attr
& CACHE_WRITE_ALLOCATE
))
425 n
= sprintf(buf
, "ReadWriteAllocate\n");
426 else if (ci_attr
& CACHE_READ_ALLOCATE
)
427 n
= sprintf(buf
, "ReadAllocate\n");
428 else if (ci_attr
& CACHE_WRITE_ALLOCATE
)
429 n
= sprintf(buf
, "WriteAllocate\n");
433 static ssize_t
write_policy_show(struct device
*dev
,
434 struct device_attribute
*attr
, char *buf
)
436 struct cacheinfo
*this_leaf
= dev_get_drvdata(dev
);
437 unsigned int ci_attr
= this_leaf
->attributes
;
440 if (ci_attr
& CACHE_WRITE_THROUGH
)
441 n
= sprintf(buf
, "WriteThrough\n");
442 else if (ci_attr
& CACHE_WRITE_BACK
)
443 n
= sprintf(buf
, "WriteBack\n");
447 static DEVICE_ATTR_RO(id
);
448 static DEVICE_ATTR_RO(level
);
449 static DEVICE_ATTR_RO(type
);
450 static DEVICE_ATTR_RO(coherency_line_size
);
451 static DEVICE_ATTR_RO(ways_of_associativity
);
452 static DEVICE_ATTR_RO(number_of_sets
);
453 static DEVICE_ATTR_RO(size
);
454 static DEVICE_ATTR_RO(allocation_policy
);
455 static DEVICE_ATTR_RO(write_policy
);
456 static DEVICE_ATTR_RO(shared_cpu_map
);
457 static DEVICE_ATTR_RO(shared_cpu_list
);
458 static DEVICE_ATTR_RO(physical_line_partition
);
460 static struct attribute
*cache_default_attrs
[] = {
463 &dev_attr_level
.attr
,
464 &dev_attr_shared_cpu_map
.attr
,
465 &dev_attr_shared_cpu_list
.attr
,
466 &dev_attr_coherency_line_size
.attr
,
467 &dev_attr_ways_of_associativity
.attr
,
468 &dev_attr_number_of_sets
.attr
,
470 &dev_attr_allocation_policy
.attr
,
471 &dev_attr_write_policy
.attr
,
472 &dev_attr_physical_line_partition
.attr
,
477 cache_default_attrs_is_visible(struct kobject
*kobj
,
478 struct attribute
*attr
, int unused
)
480 struct device
*dev
= kobj_to_dev(kobj
);
481 struct cacheinfo
*this_leaf
= dev_get_drvdata(dev
);
482 const struct cpumask
*mask
= &this_leaf
->shared_cpu_map
;
483 umode_t mode
= attr
->mode
;
485 if ((attr
== &dev_attr_id
.attr
) && (this_leaf
->attributes
& CACHE_ID
))
487 if ((attr
== &dev_attr_type
.attr
) && this_leaf
->type
)
489 if ((attr
== &dev_attr_level
.attr
) && this_leaf
->level
)
491 if ((attr
== &dev_attr_shared_cpu_map
.attr
) && !cpumask_empty(mask
))
493 if ((attr
== &dev_attr_shared_cpu_list
.attr
) && !cpumask_empty(mask
))
495 if ((attr
== &dev_attr_coherency_line_size
.attr
) &&
496 this_leaf
->coherency_line_size
)
498 if ((attr
== &dev_attr_ways_of_associativity
.attr
) &&
499 this_leaf
->size
) /* allow 0 = full associativity */
501 if ((attr
== &dev_attr_number_of_sets
.attr
) &&
502 this_leaf
->number_of_sets
)
504 if ((attr
== &dev_attr_size
.attr
) && this_leaf
->size
)
506 if ((attr
== &dev_attr_write_policy
.attr
) &&
507 (this_leaf
->attributes
& CACHE_WRITE_POLICY_MASK
))
509 if ((attr
== &dev_attr_allocation_policy
.attr
) &&
510 (this_leaf
->attributes
& CACHE_ALLOCATE_POLICY_MASK
))
512 if ((attr
== &dev_attr_physical_line_partition
.attr
) &&
513 this_leaf
->physical_line_partition
)
519 static const struct attribute_group cache_default_group
= {
520 .attrs
= cache_default_attrs
,
521 .is_visible
= cache_default_attrs_is_visible
,
524 static const struct attribute_group
*cache_default_groups
[] = {
525 &cache_default_group
,
529 static const struct attribute_group
*cache_private_groups
[] = {
530 &cache_default_group
,
531 NULL
, /* Place holder for private group */
535 const struct attribute_group
*
536 __weak
cache_get_priv_group(struct cacheinfo
*this_leaf
)
541 static const struct attribute_group
**
542 cache_get_attribute_groups(struct cacheinfo
*this_leaf
)
544 const struct attribute_group
*priv_group
=
545 cache_get_priv_group(this_leaf
);
548 return cache_default_groups
;
550 if (!cache_private_groups
[1])
551 cache_private_groups
[1] = priv_group
;
553 return cache_private_groups
;
556 /* Add/Remove cache interface for CPU device */
557 static void cpu_cache_sysfs_exit(unsigned int cpu
)
560 struct device
*ci_dev
;
562 if (per_cpu_index_dev(cpu
)) {
563 for (i
= 0; i
< cache_leaves(cpu
); i
++) {
564 ci_dev
= per_cache_index_dev(cpu
, i
);
567 device_unregister(ci_dev
);
569 kfree(per_cpu_index_dev(cpu
));
570 per_cpu_index_dev(cpu
) = NULL
;
572 device_unregister(per_cpu_cache_dev(cpu
));
573 per_cpu_cache_dev(cpu
) = NULL
;
576 static int cpu_cache_sysfs_init(unsigned int cpu
)
578 struct device
*dev
= get_cpu_device(cpu
);
580 if (per_cpu_cacheinfo(cpu
) == NULL
)
583 per_cpu_cache_dev(cpu
) = cpu_device_create(dev
, NULL
, NULL
, "cache");
584 if (IS_ERR(per_cpu_cache_dev(cpu
)))
585 return PTR_ERR(per_cpu_cache_dev(cpu
));
587 /* Allocate all required memory */
588 per_cpu_index_dev(cpu
) = kcalloc(cache_leaves(cpu
),
589 sizeof(struct device
*), GFP_KERNEL
);
590 if (unlikely(per_cpu_index_dev(cpu
) == NULL
))
596 cpu_cache_sysfs_exit(cpu
);
600 static int cache_add_dev(unsigned int cpu
)
604 struct device
*ci_dev
, *parent
;
605 struct cacheinfo
*this_leaf
;
606 struct cpu_cacheinfo
*this_cpu_ci
= get_cpu_cacheinfo(cpu
);
607 const struct attribute_group
**cache_groups
;
609 rc
= cpu_cache_sysfs_init(cpu
);
610 if (unlikely(rc
< 0))
613 parent
= per_cpu_cache_dev(cpu
);
614 for (i
= 0; i
< cache_leaves(cpu
); i
++) {
615 this_leaf
= this_cpu_ci
->info_list
+ i
;
616 if (this_leaf
->disable_sysfs
)
618 cache_groups
= cache_get_attribute_groups(this_leaf
);
619 ci_dev
= cpu_device_create(parent
, this_leaf
, cache_groups
,
621 if (IS_ERR(ci_dev
)) {
622 rc
= PTR_ERR(ci_dev
);
625 per_cache_index_dev(cpu
, i
) = ci_dev
;
627 cpumask_set_cpu(cpu
, &cache_dev_map
);
631 cpu_cache_sysfs_exit(cpu
);
635 static int cacheinfo_cpu_online(unsigned int cpu
)
637 int rc
= detect_cache_attributes(cpu
);
641 rc
= cache_add_dev(cpu
);
643 free_cache_attributes(cpu
);
647 static int cacheinfo_cpu_pre_down(unsigned int cpu
)
649 if (cpumask_test_and_clear_cpu(cpu
, &cache_dev_map
))
650 cpu_cache_sysfs_exit(cpu
);
652 free_cache_attributes(cpu
);
656 static int __init
cacheinfo_sysfs_init(void)
658 return cpuhp_setup_state(CPUHP_AP_ONLINE_DYN
, "base/cacheinfo:online",
659 cacheinfo_cpu_online
, cacheinfo_cpu_pre_down
);
661 device_initcall(cacheinfo_sysfs_init
);