Greg Kroah-Hartman | b244131 | 2017-11-01 15:07:57 +0100 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0 */ |
Sudeep Holla | 246246c | 2014-09-30 14:48:25 +0100 | [diff] [blame] | 2 | #ifndef _LINUX_CACHEINFO_H |
| 3 | #define _LINUX_CACHEINFO_H |
| 4 | |
| 5 | #include <linux/bitops.h> |
| 6 | #include <linux/cpumask.h> |
| 7 | #include <linux/smp.h> |
| 8 | |
| 9 | struct device_node; |
| 10 | struct attribute; |
| 11 | |
| 12 | enum 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 Zhang | 9a83c84 | 2019-05-28 10:16:53 +0800 | [diff] [blame] | 20 | extern unsigned int coherency_max_size; |
| 21 | |
Sudeep Holla | 246246c | 2014-09-30 14:48:25 +0100 | [diff] [blame] | 22 | /** |
| 23 | * struct cacheinfo - represent a cache leaf node |
Fenghua Yu | e9a2ea5 | 2016-10-22 06:19:49 -0700 | [diff] [blame] | 24 | * @id: This cache's id. It is unique among caches with the same (type, level). |
Sudeep Holla | 246246c | 2014-09-30 14:48:25 +0100 | [diff] [blame] | 25 | * @type: type of the cache - data, inst or unified |
Will Deacon | 2539b25 | 2015-05-08 14:45:34 +0100 | [diff] [blame] | 26 | * @level: represents the hierarchy in the multi-level cache |
Sudeep Holla | 246246c | 2014-09-30 14:48:25 +0100 | [diff] [blame] | 27 | * @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 Linton | 9b97387 | 2018-05-11 18:57:58 -0500 | [diff] [blame] | 39 | * @fw_token: Unique value used to determine if different cacheinfo |
| 40 | * structures represent a single hardware cache instance. |
Sudeep Holla | 246246c | 2014-09-30 14:48:25 +0100 | [diff] [blame] | 41 | * @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 | */ |
| 49 | struct cacheinfo { |
Fenghua Yu | e9a2ea5 | 2016-10-22 06:19:49 -0700 | [diff] [blame] | 50 | unsigned int id; |
Sudeep Holla | 246246c | 2014-09-30 14:48:25 +0100 | [diff] [blame] | 51 | 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 Yu | e9a2ea5 | 2016-10-22 06:19:49 -0700 | [diff] [blame] | 68 | #define CACHE_ID BIT(4) |
Jeremy Linton | 9b97387 | 2018-05-11 18:57:58 -0500 | [diff] [blame] | 69 | void *fw_token; |
Sudeep Holla | 246246c | 2014-09-30 14:48:25 +0100 | [diff] [blame] | 70 | bool disable_sysfs; |
| 71 | void *priv; |
| 72 | }; |
| 73 | |
| 74 | struct cpu_cacheinfo { |
| 75 | struct cacheinfo *info_list; |
| 76 | unsigned int num_levels; |
| 77 | unsigned int num_leaves; |
Sudeep Holla | fac5148 | 2016-10-28 09:45:28 +0100 | [diff] [blame] | 78 | bool cpu_map_populated; |
Sudeep Holla | 246246c | 2014-09-30 14:48:25 +0100 | [diff] [blame] | 79 | }; |
| 80 | |
| 81 | /* |
| 82 | * Helpers to make sure "func" is executed on the cpu whose cache |
| 83 | * attributes are being detected |
| 84 | */ |
| 85 | #define DEFINE_SMP_CALL_CACHE_FUNCTION(func) \ |
| 86 | static inline void _##func(void *ret) \ |
| 87 | { \ |
| 88 | int cpu = smp_processor_id(); \ |
| 89 | *(int *)ret = __##func(cpu); \ |
| 90 | } \ |
| 91 | \ |
| 92 | int func(unsigned int cpu) \ |
| 93 | { \ |
| 94 | int ret; \ |
| 95 | smp_call_function_single(cpu, _##func, &ret, true); \ |
| 96 | return ret; \ |
| 97 | } |
| 98 | |
| 99 | struct cpu_cacheinfo *get_cpu_cacheinfo(unsigned int cpu); |
| 100 | int init_cache_level(unsigned int cpu); |
| 101 | int populate_cache_leaves(unsigned int cpu); |
Jeremy Linton | 582b468 | 2018-05-11 18:58:02 -0500 | [diff] [blame] | 102 | int cache_setup_acpi(unsigned int cpu); |
Sudeep Holla | 2520e627 | 2018-06-05 15:35:03 +0100 | [diff] [blame] | 103 | #ifndef CONFIG_ACPI_PPTT |
Jeremy Linton | 582b468 | 2018-05-11 18:58:02 -0500 | [diff] [blame] | 104 | /* |
| 105 | * acpi_find_last_cache_level is only called on ACPI enabled |
| 106 | * platforms using the PPTT for topology. This means that if |
| 107 | * the platform supports other firmware configuration methods |
| 108 | * we need to stub out the call when ACPI is disabled. |
| 109 | * ACPI enabled platforms not using PPTT won't be making calls |
| 110 | * to this function so we need not worry about them. |
| 111 | */ |
| 112 | static inline int acpi_find_last_cache_level(unsigned int cpu) |
| 113 | { |
| 114 | return 0; |
| 115 | } |
| 116 | #else |
| 117 | int acpi_find_last_cache_level(unsigned int cpu); |
| 118 | #endif |
Sudeep Holla | 246246c | 2014-09-30 14:48:25 +0100 | [diff] [blame] | 119 | |
| 120 | const struct attribute_group *cache_get_priv_group(struct cacheinfo *this_leaf); |
| 121 | |
| 122 | #endif /* _LINUX_CACHEINFO_H */ |