#define pr_fmt(fmt) KBUILD_MODNAME ": " fmt
#include <linux/bitops.h>
#include <linux/cacheinfo.h>
#include <linux/compiler.h>
#include <linux/device.h>
static DEFINE_PER_CPU(struct cpu_cacheinfo, ci_cpu_cacheinfo);
#define ci_cacheinfo(cpu) (&per_cpu(ci_cpu_cacheinfo, cpu))
#define cache_leaves(cpu) (ci_cacheinfo(cpu)->num_leaves)
#define per_cpu_cacheinfo(cpu) (ci_cacheinfo(cpu)->info_list)
struct cpu_cacheinfo *get_cpu_cacheinfo(unsigned int cpu)
return ci_cacheinfo(cpu);
static inline bool cache_leaves_are_shared(struct cacheinfo *this_leaf,
struct cacheinfo *sib_leaf)
return sib_leaf->fw_token == this_leaf->fw_token;
const char *line_size_props[2];
const char *nr_sets_prop;
static const struct cache_type_info cache_type_info[] = {
.size_prop = "cache-size",
.line_size_props = { "cache-line-size",
.nr_sets_prop = "cache-sets",
.size_prop = "i-cache-size",
.line_size_props = { "i-cache-line-size",
.nr_sets_prop = "i-cache-sets",
.size_prop = "d-cache-size",
.line_size_props = { "d-cache-line-size",
.nr_sets_prop = "d-cache-sets",
static inline int get_cacheinfo_idx(enum cache_type type)
if (type == CACHE_TYPE_UNIFIED)
static void cache_size(struct cacheinfo *this_leaf, struct device_node *np)
ct_idx = get_cacheinfo_idx(this_leaf->type);
propname = cache_type_info[ct_idx].size_prop;
of_property_read_u32(np, propname, &this_leaf->size);
static void cache_get_line_size(struct cacheinfo *this_leaf,
ct_idx = get_cacheinfo_idx(this_leaf->type);
lim = ARRAY_SIZE(cache_type_info[ct_idx].line_size_props);