blob: 00b7a6ae8617588c5a26f6d5c2275de4b8699f25 [file] [log] [blame]
Greg Kroah-Hartmanb2441312017-11-01 15:07:57 +01001/* SPDX-License-Identifier: GPL-2.0 */
Sudeep Holla246246c2014-09-30 14:48:25 +01002#ifndef _LINUX_CACHEINFO_H
3#define _LINUX_CACHEINFO_H
4
5#include <linux/bitops.h>
Sudeep Holla246246c2014-09-30 14:48:25 +01006#include <linux/cpumask.h>
7#include <linux/smp.h>
8
9struct device_node;
10struct attribute;
11
12enum cache_type {
13 CACHE_TYPE_NOCACHE = 0,
14 CACHE_TYPE_INST = BIT(0),
15 CACHE_TYPE_DATA = BIT(1),
16 CACHE_TYPE_SEPARATE = CACHE_TYPE_INST | CACHE_TYPE_DATA,
17 CACHE_TYPE_UNIFIED = BIT(2),
18};
19
Shaokun Zhang9a83c842019-05-28 10:16:53 +080020extern unsigned int coherency_max_size;
21
Sudeep Holla246246c2014-09-30 14:48:25 +010022/**
23 * struct cacheinfo - represent a cache leaf node
Fenghua Yue9a2ea52016-10-22 06:19:49 -070024 * @id: This cache's id. It is unique among caches with the same (type, level).
Sudeep Holla246246c2014-09-30 14:48:25 +010025 * @type: type of the cache - data, inst or unified
Will Deacon2539b252015-05-08 14:45:34 +010026 * @level: represents the hierarchy in the multi-level cache
Sudeep Holla246246c2014-09-30 14:48:25 +010027 * @coherency_line_size: size of each cache line usually representing
28 * the minimum amount of data that gets transferred from memory
29 * @number_of_sets: total number of sets, a set is a collection of cache
30 * lines sharing the same index
31 * @ways_of_associativity: number of ways in which a particular memory
32 * block can be placed in the cache
33 * @physical_line_partition: number of physical cache lines sharing the
34 * same cachetag
35 * @size: Total size of the cache
36 * @shared_cpu_map: logical cpumask representing all the cpus sharing
37 * this cache node
38 * @attributes: bitfield representing various cache attributes
Jeremy Linton9b973872018-05-11 18:57:58 -050039 * @fw_token: Unique value used to determine if different cacheinfo
40 * structures represent a single hardware cache instance.
Sudeep Holla246246c2014-09-30 14:48:25 +010041 * @disable_sysfs: indicates whether this node is visible to the user via
42 * sysfs or not
43 * @priv: pointer to any private data structure specific to particular
44 * cache design
45 *
46 * While @of_node, @disable_sysfs and @priv are used for internal book
47 * keeping, the remaining members form the core properties of the cache
48 */
49struct cacheinfo {
Fenghua Yue9a2ea52016-10-22 06:19:49 -070050 unsigned int id;
Sudeep Holla246246c2014-09-30 14:48:25 +010051 enum cache_type type;
52 unsigned int level;
53 unsigned int coherency_line_size;
54 unsigned int number_of_sets;
55 unsigned int ways_of_associativity;
56 unsigned int physical_line_partition;
57 unsigned int size;
58 cpumask_t shared_cpu_map;
59 unsigned int attributes;
60#define CACHE_WRITE_THROUGH BIT(0)
61#define CACHE_WRITE_BACK BIT(1)
62#define CACHE_WRITE_POLICY_MASK \
63 (CACHE_WRITE_THROUGH | CACHE_WRITE_BACK)
64#define CACHE_READ_ALLOCATE BIT(2)
65#define CACHE_WRITE_ALLOCATE BIT(3)
66#define CACHE_ALLOCATE_POLICY_MASK \
67 (CACHE_READ_ALLOCATE | CACHE_WRITE_ALLOCATE)
Fenghua Yue9a2ea52016-10-22 06:19:49 -070068#define CACHE_ID BIT(4)
Jeremy Linton9b973872018-05-11 18:57:58 -050069 void *fw_token;
Sudeep Holla246246c2014-09-30 14:48:25 +010070 bool disable_sysfs;
71 void *priv;
72};
73
74struct cpu_cacheinfo {
75 struct cacheinfo *info_list;
76 unsigned int num_levels;
77 unsigned int num_leaves;
Sudeep Hollafac51482016-10-28 09:45:28 +010078 bool cpu_map_populated;
Sudeep Holla246246c2014-09-30 14:48:25 +010079};
80
Sudeep Holla246246c2014-09-30 14:48:25 +010081struct cpu_cacheinfo *get_cpu_cacheinfo(unsigned int cpu);
82int init_cache_level(unsigned int cpu);
83int populate_cache_leaves(unsigned int cpu);
Jeremy Linton582b4682018-05-11 18:58:02 -050084int cache_setup_acpi(unsigned int cpu);
Sudeep Hollacc1cfc472022-07-04 11:15:49 +010085bool last_level_cache_is_valid(unsigned int cpu);
86bool last_level_cache_is_shared(unsigned int cpu_x, unsigned int cpu_y);
Sudeep Holla36bbc5b2022-07-04 11:15:50 +010087int detect_cache_attributes(unsigned int cpu);
Sudeep Holla2520e6272018-06-05 15:35:03 +010088#ifndef CONFIG_ACPI_PPTT
Jeremy Linton582b4682018-05-11 18:58:02 -050089/*
90 * acpi_find_last_cache_level is only called on ACPI enabled
91 * platforms using the PPTT for topology. This means that if
92 * the platform supports other firmware configuration methods
93 * we need to stub out the call when ACPI is disabled.
94 * ACPI enabled platforms not using PPTT won't be making calls
95 * to this function so we need not worry about them.
96 */
97static inline int acpi_find_last_cache_level(unsigned int cpu)
98{
99 return 0;
100}
101#else
102int acpi_find_last_cache_level(unsigned int cpu);
103#endif
Sudeep Holla246246c2014-09-30 14:48:25 +0100104
105const struct attribute_group *cache_get_priv_group(struct cacheinfo *this_leaf);
106
James Morse709c4362020-07-08 16:39:29 +0000107/*
108 * Get the id of the cache associated with @cpu at level @level.
109 * cpuhp lock must be held.
110 */
111static inline int get_cpu_cacheinfo_id(int cpu, int level)
112{
113 struct cpu_cacheinfo *ci = get_cpu_cacheinfo(cpu);
114 int i;
115
116 for (i = 0; i < ci->num_leaves; i++) {
117 if (ci->info_list[i].level == level) {
118 if (ci->info_list[i].attributes & CACHE_ID)
119 return ci->info_list[i].id;
120 return -1;
121 }
122 }
123
124 return -1;
125}
126
Sudeep Holla246246c2014-09-30 14:48:25 +0100127#endif /* _LINUX_CACHEINFO_H */