2 * Processor cache information made available to userspace via sysfs;
3 * intended to be compatible with x86 intel_cacheinfo implementation.
5 * Copyright 2008 IBM Corporation
8 * This program is free software; you can redistribute it and/or
9 * modify it under the terms of the GNU General Public License version
10 * 2 as published by the Free Software Foundation.
13 #include <linux/cpu.h>
14 #include <linux/cpumask.h>
15 #include <linux/kernel.h>
16 #include <linux/kobject.h>
17 #include <linux/list.h>
18 #include <linux/notifier.h>
20 #include <linux/percpu.h>
21 #include <linux/slab.h>
24 #include "cacheinfo.h"
26 /* per-cpu object for tracking:
27 * - a "cache" kobject for the top-level directory
28 * - a list of "index" objects representing the cpu's local cache hierarchy
31 struct kobject
*kobj
; /* bare (not embedded) kobject for cache
33 struct cache_index_dir
*index
; /* list of index objects */
36 /* "index" object: each cpu's cache directory has an index
37 * subdirectory corresponding to a cache object associated with the
38 * cpu. This object's lifetime is managed via the embedded kobject.
40 struct cache_index_dir
{
42 struct cache_index_dir
*next
; /* next index in parent directory */
46 /* Template for determining which OF properties to query for a given
48 struct cache_type_info
{
50 const char *size_prop
;
52 /* Allow for both [di]-cache-line-size and
53 * [di]-cache-block-size properties. According to the PowerPC
54 * Processor binding, -line-size should be provided if it
55 * differs from the cache block size (that which is operated
56 * on by cache instructions), so we look for -line-size first.
57 * See cache_get_line_size(). */
59 const char *line_size_props
[2];
60 const char *nr_sets_prop
;
63 /* These are used to index the cache_type_info array. */
64 #define CACHE_TYPE_UNIFIED 0 /* cache-size, cache-block-size, etc. */
65 #define CACHE_TYPE_UNIFIED_D 1 /* d-cache-size, d-cache-block-size, etc */
66 #define CACHE_TYPE_INSTRUCTION 2
67 #define CACHE_TYPE_DATA 3
69 static const struct cache_type_info cache_type_info
[] = {
71 /* Embedded systems that use cache-size, cache-block-size,
72 * etc. for the Unified (typically L2) cache. */
74 .size_prop
= "cache-size",
75 .line_size_props
= { "cache-line-size",
76 "cache-block-size", },
77 .nr_sets_prop
= "cache-sets",
80 /* PowerPC Processor binding says the [di]-cache-*
81 * must be equal on unified caches, so just use
82 * d-cache properties. */
84 .size_prop
= "d-cache-size",
85 .line_size_props
= { "d-cache-line-size",
86 "d-cache-block-size", },
87 .nr_sets_prop
= "d-cache-sets",
90 .name
= "Instruction",
91 .size_prop
= "i-cache-size",
92 .line_size_props
= { "i-cache-line-size",
93 "i-cache-block-size", },
94 .nr_sets_prop
= "i-cache-sets",
98 .size_prop
= "d-cache-size",
99 .line_size_props
= { "d-cache-line-size",
100 "d-cache-block-size", },
101 .nr_sets_prop
= "d-cache-sets",
105 /* Cache object: each instance of this corresponds to a distinct cache
106 * in the system. There are separate objects for Harvard caches: one
107 * each for instruction and data, and each refers to the same OF node.
108 * The refcount of the OF node is elevated for the lifetime of the
109 * cache object. A cache object is released when its shared_cpu_map
110 * is cleared (see cache_cpu_clear).
112 * A cache object is on two lists: an unsorted global list
113 * (cache_list) of cache objects; and a singly-linked list
114 * representing the local cache hierarchy, which is ordered by level
115 * (e.g. L1d -> L1i -> L2 -> L3).
118 struct device_node
*ofnode
; /* OF node for this cache, may be cpu */
119 struct cpumask shared_cpu_map
; /* online CPUs using this cache */
120 int type
; /* split cache disambiguation */
121 int level
; /* level not explicit in device tree */
122 struct list_head list
; /* global list of cache objects */
123 struct cache
*next_local
; /* next cache of >= level */
126 static DEFINE_PER_CPU(struct cache_dir
*, cache_dir_pcpu
);
128 /* traversal/modification of this list occurs only at cpu hotplug time;
129 * access is serialized by cpu hotplug locking
131 static LIST_HEAD(cache_list
);
133 static struct cache_index_dir
*kobj_to_cache_index_dir(struct kobject
*k
)
135 return container_of(k
, struct cache_index_dir
, kobj
);
138 static const char *cache_type_string(const struct cache
*cache
)
140 return cache_type_info
[cache
->type
].name
;
143 static void cache_init(struct cache
*cache
, int type
, int level
,
144 struct device_node
*ofnode
)
147 cache
->level
= level
;
148 cache
->ofnode
= of_node_get(ofnode
);
149 INIT_LIST_HEAD(&cache
->list
);
150 list_add(&cache
->list
, &cache_list
);
153 static struct cache
*new_cache(int type
, int level
, struct device_node
*ofnode
)
157 cache
= kzalloc(sizeof(*cache
), GFP_KERNEL
);
159 cache_init(cache
, type
, level
, ofnode
);
164 static void release_cache_debugcheck(struct cache
*cache
)
168 list_for_each_entry(iter
, &cache_list
, list
)
169 WARN_ONCE(iter
->next_local
== cache
,
170 "cache for %pOF(%s) refers to cache for %pOF(%s)\n",
172 cache_type_string(iter
),
174 cache_type_string(cache
));
177 static void release_cache(struct cache
*cache
)
182 pr_debug("freeing L%d %s cache for %pOF\n", cache
->level
,
183 cache_type_string(cache
), cache
->ofnode
);
185 release_cache_debugcheck(cache
);
186 list_del(&cache
->list
);
187 of_node_put(cache
->ofnode
);
191 static void cache_cpu_set(struct cache
*cache
, int cpu
)
193 struct cache
*next
= cache
;
196 WARN_ONCE(cpumask_test_cpu(cpu
, &next
->shared_cpu_map
),
197 "CPU %i already accounted in %pOF(%s)\n",
199 cache_type_string(next
));
200 cpumask_set_cpu(cpu
, &next
->shared_cpu_map
);
201 next
= next
->next_local
;
205 static int cache_size(const struct cache
*cache
, unsigned int *ret
)
207 const char *propname
;
208 const __be32
*cache_size
;
210 propname
= cache_type_info
[cache
->type
].size_prop
;
212 cache_size
= of_get_property(cache
->ofnode
, propname
, NULL
);
216 *ret
= of_read_number(cache_size
, 1);
220 static int cache_size_kb(const struct cache
*cache
, unsigned int *ret
)
224 if (cache_size(cache
, &size
))
231 /* not cache_line_size() because that's a macro in include/linux/cache.h */
232 static int cache_get_line_size(const struct cache
*cache
, unsigned int *ret
)
234 const __be32
*line_size
;
237 lim
= ARRAY_SIZE(cache_type_info
[cache
->type
].line_size_props
);
239 for (i
= 0; i
< lim
; i
++) {
240 const char *propname
;
242 propname
= cache_type_info
[cache
->type
].line_size_props
[i
];
243 line_size
= of_get_property(cache
->ofnode
, propname
, NULL
);
251 *ret
= of_read_number(line_size
, 1);
255 static int cache_nr_sets(const struct cache
*cache
, unsigned int *ret
)
257 const char *propname
;
258 const __be32
*nr_sets
;
260 propname
= cache_type_info
[cache
->type
].nr_sets_prop
;
262 nr_sets
= of_get_property(cache
->ofnode
, propname
, NULL
);
266 *ret
= of_read_number(nr_sets
, 1);
270 static int cache_associativity(const struct cache
*cache
, unsigned int *ret
)
272 unsigned int line_size
;
273 unsigned int nr_sets
;
276 if (cache_nr_sets(cache
, &nr_sets
))
279 /* If the cache is fully associative, there is no need to
280 * check the other properties.
287 if (cache_get_line_size(cache
, &line_size
))
289 if (cache_size(cache
, &size
))
292 if (!(nr_sets
> 0 && size
> 0 && line_size
> 0))
295 *ret
= (size
/ nr_sets
) / line_size
;
301 /* helper for dealing with split caches */
302 static struct cache
*cache_find_first_sibling(struct cache
*cache
)
306 if (cache
->type
== CACHE_TYPE_UNIFIED
||
307 cache
->type
== CACHE_TYPE_UNIFIED_D
)
310 list_for_each_entry(iter
, &cache_list
, list
)
311 if (iter
->ofnode
== cache
->ofnode
&& iter
->next_local
== cache
)
317 /* return the first cache on a local list matching node */
318 static struct cache
*cache_lookup_by_node(const struct device_node
*node
)
320 struct cache
*cache
= NULL
;
323 list_for_each_entry(iter
, &cache_list
, list
) {
324 if (iter
->ofnode
!= node
)
326 cache
= cache_find_first_sibling(iter
);
333 static bool cache_node_is_unified(const struct device_node
*np
)
335 return of_get_property(np
, "cache-unified", NULL
);
339 * Unified caches can have two different sets of tags. Most embedded
340 * use cache-size, etc. for the unified cache size, but open firmware systems
341 * use d-cache-size, etc. Check on initialization for which type we have, and
342 * return the appropriate structure type. Assume it's embedded if it isn't
343 * open firmware. If it's yet a 3rd type, then there will be missing entries
344 * in /sys/devices/system/cpu/cpu0/cache/index2/, and this code will need
345 * to be extended further.
347 static int cache_is_unified_d(const struct device_node
*np
)
349 return of_get_property(np
,
350 cache_type_info
[CACHE_TYPE_UNIFIED_D
].size_prop
, NULL
) ?
351 CACHE_TYPE_UNIFIED_D
: CACHE_TYPE_UNIFIED
;
356 static struct cache
*cache_do_one_devnode_unified(struct device_node
*node
, int level
)
358 pr_debug("creating L%d ucache for %pOF\n", level
, node
);
360 return new_cache(cache_is_unified_d(node
), level
, node
);
363 static struct cache
*cache_do_one_devnode_split(struct device_node
*node
,
366 struct cache
*dcache
, *icache
;
368 pr_debug("creating L%d dcache and icache for %pOF\n", level
,
371 dcache
= new_cache(CACHE_TYPE_DATA
, level
, node
);
372 icache
= new_cache(CACHE_TYPE_INSTRUCTION
, level
, node
);
374 if (!dcache
|| !icache
)
377 dcache
->next_local
= icache
;
381 release_cache(dcache
);
382 release_cache(icache
);
386 static struct cache
*cache_do_one_devnode(struct device_node
*node
, int level
)
390 if (cache_node_is_unified(node
))
391 cache
= cache_do_one_devnode_unified(node
, level
);
393 cache
= cache_do_one_devnode_split(node
, level
);
398 static struct cache
*cache_lookup_or_instantiate(struct device_node
*node
,
403 cache
= cache_lookup_by_node(node
);
405 WARN_ONCE(cache
&& cache
->level
!= level
,
406 "cache level mismatch on lookup (got %d, expected %d)\n",
407 cache
->level
, level
);
410 cache
= cache_do_one_devnode(node
, level
);
415 static void link_cache_lists(struct cache
*smaller
, struct cache
*bigger
)
417 while (smaller
->next_local
) {
418 if (smaller
->next_local
== bigger
)
419 return; /* already linked */
420 smaller
= smaller
->next_local
;
423 smaller
->next_local
= bigger
;
426 static void do_subsidiary_caches_debugcheck(struct cache
*cache
)
428 WARN_ON_ONCE(cache
->level
!= 1);
429 WARN_ON_ONCE(strcmp(cache
->ofnode
->type
, "cpu"));
432 static void do_subsidiary_caches(struct cache
*cache
)
434 struct device_node
*subcache_node
;
435 int level
= cache
->level
;
437 do_subsidiary_caches_debugcheck(cache
);
439 while ((subcache_node
= of_find_next_cache_node(cache
->ofnode
))) {
440 struct cache
*subcache
;
443 subcache
= cache_lookup_or_instantiate(subcache_node
, level
);
444 of_node_put(subcache_node
);
448 link_cache_lists(cache
, subcache
);
453 static struct cache
*cache_chain_instantiate(unsigned int cpu_id
)
455 struct device_node
*cpu_node
;
456 struct cache
*cpu_cache
= NULL
;
458 pr_debug("creating cache object(s) for CPU %i\n", cpu_id
);
460 cpu_node
= of_get_cpu_node(cpu_id
, NULL
);
461 WARN_ONCE(!cpu_node
, "no OF node found for CPU %i\n", cpu_id
);
465 cpu_cache
= cache_lookup_or_instantiate(cpu_node
, 1);
469 do_subsidiary_caches(cpu_cache
);
471 cache_cpu_set(cpu_cache
, cpu_id
);
473 of_node_put(cpu_node
);
478 static struct cache_dir
*cacheinfo_create_cache_dir(unsigned int cpu_id
)
480 struct cache_dir
*cache_dir
;
482 struct kobject
*kobj
= NULL
;
484 dev
= get_cpu_device(cpu_id
);
485 WARN_ONCE(!dev
, "no dev for CPU %i\n", cpu_id
);
489 kobj
= kobject_create_and_add("cache", &dev
->kobj
);
493 cache_dir
= kzalloc(sizeof(*cache_dir
), GFP_KERNEL
);
497 cache_dir
->kobj
= kobj
;
499 WARN_ON_ONCE(per_cpu(cache_dir_pcpu
, cpu_id
) != NULL
);
501 per_cpu(cache_dir_pcpu
, cpu_id
) = cache_dir
;
509 static void cache_index_release(struct kobject
*kobj
)
511 struct cache_index_dir
*index
;
513 index
= kobj_to_cache_index_dir(kobj
);
515 pr_debug("freeing index directory for L%d %s cache\n",
516 index
->cache
->level
, cache_type_string(index
->cache
));
521 static ssize_t
cache_index_show(struct kobject
*k
, struct attribute
*attr
, char *buf
)
523 struct kobj_attribute
*kobj_attr
;
525 kobj_attr
= container_of(attr
, struct kobj_attribute
, attr
);
527 return kobj_attr
->show(k
, kobj_attr
, buf
);
530 static struct cache
*index_kobj_to_cache(struct kobject
*k
)
532 struct cache_index_dir
*index
;
534 index
= kobj_to_cache_index_dir(k
);
539 static ssize_t
size_show(struct kobject
*k
, struct kobj_attribute
*attr
, char *buf
)
541 unsigned int size_kb
;
544 cache
= index_kobj_to_cache(k
);
546 if (cache_size_kb(cache
, &size_kb
))
549 return sprintf(buf
, "%uK\n", size_kb
);
552 static struct kobj_attribute cache_size_attr
=
553 __ATTR(size
, 0444, size_show
, NULL
);
556 static ssize_t
line_size_show(struct kobject
*k
, struct kobj_attribute
*attr
, char *buf
)
558 unsigned int line_size
;
561 cache
= index_kobj_to_cache(k
);
563 if (cache_get_line_size(cache
, &line_size
))
566 return sprintf(buf
, "%u\n", line_size
);
569 static struct kobj_attribute cache_line_size_attr
=
570 __ATTR(coherency_line_size
, 0444, line_size_show
, NULL
);
572 static ssize_t
nr_sets_show(struct kobject
*k
, struct kobj_attribute
*attr
, char *buf
)
574 unsigned int nr_sets
;
577 cache
= index_kobj_to_cache(k
);
579 if (cache_nr_sets(cache
, &nr_sets
))
582 return sprintf(buf
, "%u\n", nr_sets
);
585 static struct kobj_attribute cache_nr_sets_attr
=
586 __ATTR(number_of_sets
, 0444, nr_sets_show
, NULL
);
588 static ssize_t
associativity_show(struct kobject
*k
, struct kobj_attribute
*attr
, char *buf
)
590 unsigned int associativity
;
593 cache
= index_kobj_to_cache(k
);
595 if (cache_associativity(cache
, &associativity
))
598 return sprintf(buf
, "%u\n", associativity
);
601 static struct kobj_attribute cache_assoc_attr
=
602 __ATTR(ways_of_associativity
, 0444, associativity_show
, NULL
);
604 static ssize_t
type_show(struct kobject
*k
, struct kobj_attribute
*attr
, char *buf
)
608 cache
= index_kobj_to_cache(k
);
610 return sprintf(buf
, "%s\n", cache_type_string(cache
));
613 static struct kobj_attribute cache_type_attr
=
614 __ATTR(type
, 0444, type_show
, NULL
);
616 static ssize_t
level_show(struct kobject
*k
, struct kobj_attribute
*attr
, char *buf
)
618 struct cache_index_dir
*index
;
621 index
= kobj_to_cache_index_dir(k
);
622 cache
= index
->cache
;
624 return sprintf(buf
, "%d\n", cache
->level
);
627 static struct kobj_attribute cache_level_attr
=
628 __ATTR(level
, 0444, level_show
, NULL
);
630 static ssize_t
shared_cpu_map_show(struct kobject
*k
, struct kobj_attribute
*attr
, char *buf
)
632 struct cache_index_dir
*index
;
636 index
= kobj_to_cache_index_dir(k
);
637 cache
= index
->cache
;
639 ret
= scnprintf(buf
, PAGE_SIZE
- 1, "%*pb\n",
640 cpumask_pr_args(&cache
->shared_cpu_map
));
646 static struct kobj_attribute cache_shared_cpu_map_attr
=
647 __ATTR(shared_cpu_map
, 0444, shared_cpu_map_show
, NULL
);
649 /* Attributes which should always be created -- the kobject/sysfs core
650 * does this automatically via kobj_type->default_attrs. This is the
651 * minimum data required to uniquely identify a cache.
653 static struct attribute
*cache_index_default_attrs
[] = {
654 &cache_type_attr
.attr
,
655 &cache_level_attr
.attr
,
656 &cache_shared_cpu_map_attr
.attr
,
660 /* Attributes which should be created if the cache device node has the
661 * right properties -- see cacheinfo_create_index_opt_attrs
663 static struct kobj_attribute
*cache_index_opt_attrs
[] = {
665 &cache_line_size_attr
,
670 static const struct sysfs_ops cache_index_ops
= {
671 .show
= cache_index_show
,
674 static struct kobj_type cache_index_type
= {
675 .release
= cache_index_release
,
676 .sysfs_ops
= &cache_index_ops
,
677 .default_attrs
= cache_index_default_attrs
,
680 static void cacheinfo_create_index_opt_attrs(struct cache_index_dir
*dir
)
682 const char *cache_type
;
687 buf
= kmalloc(PAGE_SIZE
, GFP_KERNEL
);
692 cache_type
= cache_type_string(cache
);
694 /* We don't want to create an attribute that can't provide a
695 * meaningful value. Check the return value of each optional
696 * attribute's ->show method before registering the
699 for (i
= 0; i
< ARRAY_SIZE(cache_index_opt_attrs
); i
++) {
700 struct kobj_attribute
*attr
;
703 attr
= cache_index_opt_attrs
[i
];
705 rc
= attr
->show(&dir
->kobj
, attr
, buf
);
707 pr_debug("not creating %s attribute for "
708 "%pOF(%s) (rc = %zd)\n",
709 attr
->attr
.name
, cache
->ofnode
,
713 if (sysfs_create_file(&dir
->kobj
, &attr
->attr
))
714 pr_debug("could not create %s attribute for %pOF(%s)\n",
715 attr
->attr
.name
, cache
->ofnode
, cache_type
);
721 static void cacheinfo_create_index_dir(struct cache
*cache
, int index
,
722 struct cache_dir
*cache_dir
)
724 struct cache_index_dir
*index_dir
;
727 index_dir
= kzalloc(sizeof(*index_dir
), GFP_KERNEL
);
731 index_dir
->cache
= cache
;
733 rc
= kobject_init_and_add(&index_dir
->kobj
, &cache_index_type
,
734 cache_dir
->kobj
, "index%d", index
);
738 index_dir
->next
= cache_dir
->index
;
739 cache_dir
->index
= index_dir
;
741 cacheinfo_create_index_opt_attrs(index_dir
);
748 static void cacheinfo_sysfs_populate(unsigned int cpu_id
,
749 struct cache
*cache_list
)
751 struct cache_dir
*cache_dir
;
755 cache_dir
= cacheinfo_create_cache_dir(cpu_id
);
761 cacheinfo_create_index_dir(cache
, index
, cache_dir
);
763 cache
= cache
->next_local
;
767 void cacheinfo_cpu_online(unsigned int cpu_id
)
771 cache
= cache_chain_instantiate(cpu_id
);
775 cacheinfo_sysfs_populate(cpu_id
, cache
);
778 /* functions needed to remove cache entry for cpu offline or suspend/resume */
780 #if (defined(CONFIG_PPC_PSERIES) && defined(CONFIG_SUSPEND)) || \
781 defined(CONFIG_HOTPLUG_CPU)
783 static struct cache
*cache_lookup_by_cpu(unsigned int cpu_id
)
785 struct device_node
*cpu_node
;
788 cpu_node
= of_get_cpu_node(cpu_id
, NULL
);
789 WARN_ONCE(!cpu_node
, "no OF node found for CPU %i\n", cpu_id
);
793 cache
= cache_lookup_by_node(cpu_node
);
794 of_node_put(cpu_node
);
799 static void remove_index_dirs(struct cache_dir
*cache_dir
)
801 struct cache_index_dir
*index
;
803 index
= cache_dir
->index
;
806 struct cache_index_dir
*next
;
809 kobject_put(&index
->kobj
);
814 static void remove_cache_dir(struct cache_dir
*cache_dir
)
816 remove_index_dirs(cache_dir
);
818 /* Remove cache dir from sysfs */
819 kobject_del(cache_dir
->kobj
);
821 kobject_put(cache_dir
->kobj
);
826 static void cache_cpu_clear(struct cache
*cache
, int cpu
)
829 struct cache
*next
= cache
->next_local
;
831 WARN_ONCE(!cpumask_test_cpu(cpu
, &cache
->shared_cpu_map
),
832 "CPU %i not accounted in %pOF(%s)\n",
834 cache_type_string(cache
));
836 cpumask_clear_cpu(cpu
, &cache
->shared_cpu_map
);
838 /* Release the cache object if all the cpus using it
840 if (cpumask_empty(&cache
->shared_cpu_map
))
841 release_cache(cache
);
847 void cacheinfo_cpu_offline(unsigned int cpu_id
)
849 struct cache_dir
*cache_dir
;
852 /* Prevent userspace from seeing inconsistent state - remove
853 * the sysfs hierarchy first */
854 cache_dir
= per_cpu(cache_dir_pcpu
, cpu_id
);
856 /* careful, sysfs population may have failed */
858 remove_cache_dir(cache_dir
);
860 per_cpu(cache_dir_pcpu
, cpu_id
) = NULL
;
862 /* clear the CPU's bit in its cache chain, possibly freeing
864 cache
= cache_lookup_by_cpu(cpu_id
);
866 cache_cpu_clear(cache
, cpu_id
);
868 #endif /* (CONFIG_PPC_PSERIES && CONFIG_SUSPEND) || CONFIG_HOTPLUG_CPU */