]> git.proxmox.com Git - mirror_ubuntu-eoan-kernel.git/blame - arch/powerpc/platforms/powernv/opal-imc.c
powerpc/perf: Fix pmu_count to count only nest imc pmus
[mirror_ubuntu-eoan-kernel.git] / arch / powerpc / platforms / powernv / opal-imc.c
CommitLineData
8f95faaa
MS
1/*
2 * OPAL IMC interface detection driver
3 * Supported on POWERNV platform
4 *
5 * Copyright (C) 2017 Madhavan Srinivasan, IBM Corporation.
6 * (C) 2017 Anju T Sudhakar, IBM Corporation.
7 * (C) 2017 Hemant K Shaw, IBM Corporation.
8 *
9 * This program is free software; you can redistribute it and/or
10 * modify it under the terms of the GNU General Public License
11 * as published by the Free Software Foundation; either version
12 * 2 of the License, or later version.
13 */
14#include <linux/kernel.h>
15#include <linux/platform_device.h>
16#include <linux/of.h>
17#include <linux/of_address.h>
18#include <linux/of_platform.h>
19#include <linux/crash_dump.h>
20#include <asm/opal.h>
21#include <asm/io.h>
22#include <asm/imc-pmu.h>
23#include <asm/cputhreads.h>
24
25/*
26 * imc_get_mem_addr_nest: Function to get nest counter memory region
27 * for each chip
28 */
29static int imc_get_mem_addr_nest(struct device_node *node,
30 struct imc_pmu *pmu_ptr,
31 u32 offset)
32{
33 int nr_chips = 0, i;
34 u64 *base_addr_arr, baddr;
35 u32 *chipid_arr;
36
37 nr_chips = of_property_count_u32_elems(node, "chip-id");
38 if (nr_chips <= 0)
39 return -ENODEV;
40
41 base_addr_arr = kcalloc(nr_chips, sizeof(u64), GFP_KERNEL);
42 if (!base_addr_arr)
43 return -ENOMEM;
44
45 chipid_arr = kcalloc(nr_chips, sizeof(u32), GFP_KERNEL);
46 if (!chipid_arr)
47 return -ENOMEM;
48
49 if (of_property_read_u32_array(node, "chip-id", chipid_arr, nr_chips))
50 goto error;
51
52 if (of_property_read_u64_array(node, "base-addr", base_addr_arr,
53 nr_chips))
54 goto error;
55
56 pmu_ptr->mem_info = kcalloc(nr_chips, sizeof(struct imc_mem_info),
57 GFP_KERNEL);
58 if (!pmu_ptr->mem_info)
59 goto error;
60
61 for (i = 0; i < nr_chips; i++) {
62 pmu_ptr->mem_info[i].id = chipid_arr[i];
63 baddr = base_addr_arr[i] + offset;
64 pmu_ptr->mem_info[i].vbase = phys_to_virt(baddr);
65 }
66
67 pmu_ptr->imc_counter_mmaped = true;
68 kfree(base_addr_arr);
69 kfree(chipid_arr);
70 return 0;
71
72error:
73 kfree(pmu_ptr->mem_info);
74 kfree(base_addr_arr);
75 kfree(chipid_arr);
76 return -1;
77}
78
79/*
80 * imc_pmu_create : Takes the parent device which is the pmu unit, pmu_index
81 * and domain as the inputs.
82 * Allocates memory for the struct imc_pmu, sets up its domain, size and offsets
83 */
84static int imc_pmu_create(struct device_node *parent, int pmu_index, int domain)
85{
86 int ret = 0;
87 struct imc_pmu *pmu_ptr;
88 u32 offset;
89
90 /* memory for pmu */
91 pmu_ptr = kzalloc(sizeof(struct imc_pmu), GFP_KERNEL);
92 if (!pmu_ptr)
93 return -ENOMEM;
94
95 /* Set the domain */
96 pmu_ptr->domain = domain;
97
98 ret = of_property_read_u32(parent, "size", &pmu_ptr->counter_mem_size);
99 if (ret) {
100 ret = -EINVAL;
101 goto free_pmu;
102 }
103
104 if (!of_property_read_u32(parent, "offset", &offset)) {
105 if (imc_get_mem_addr_nest(parent, pmu_ptr, offset)) {
106 ret = -EINVAL;
107 goto free_pmu;
108 }
109 }
110
885dcd70
AS
111 /* Function to register IMC pmu */
112 ret = init_imc_pmu(parent, pmu_ptr, pmu_index);
113 if (ret)
114 pr_err("IMC PMU %s Register failed\n", pmu_ptr->pmu.name);
115
8f95faaa
MS
116 return 0;
117
118free_pmu:
119 kfree(pmu_ptr);
120 return ret;
121}
122
123static void disable_nest_pmu_counters(void)
124{
125 int nid, cpu;
6538ac30 126 const struct cpumask *l_cpumask;
8f95faaa
MS
127
128 get_online_cpus();
129 for_each_online_node(nid) {
130 l_cpumask = cpumask_of_node(nid);
131 cpu = cpumask_first(l_cpumask);
132 opal_imc_counters_stop(OPAL_IMC_COUNTERS_NEST,
133 get_hard_smp_processor_id(cpu));
134 }
135 put_online_cpus();
136}
137
138static void disable_core_pmu_counters(void)
139{
140 cpumask_t cores_map;
141 int cpu, rc;
142
143 get_online_cpus();
144 /* Disable the IMC Core functions */
145 cores_map = cpu_online_cores_map();
146 for_each_cpu(cpu, &cores_map) {
147 rc = opal_imc_counters_stop(OPAL_IMC_COUNTERS_CORE,
148 get_hard_smp_processor_id(cpu));
149 if (rc)
150 pr_err("%s: Failed to stop Core (cpu = %d)\n",
151 __FUNCTION__, cpu);
152 }
153 put_online_cpus();
154}
155
156static int opal_imc_counters_probe(struct platform_device *pdev)
157{
158 struct device_node *imc_dev = pdev->dev.of_node;
159 int pmu_count = 0, domain;
160 u32 type;
161
162 /*
163 * Check whether this is kdump kernel. If yes, force the engines to
164 * stop and return.
165 */
166 if (is_kdump_kernel()) {
167 disable_nest_pmu_counters();
168 disable_core_pmu_counters();
169 return -ENODEV;
170 }
171
172 for_each_compatible_node(imc_dev, NULL, IMC_DTB_UNIT_COMPAT) {
173 if (of_property_read_u32(imc_dev, "type", &type)) {
174 pr_warn("IMC Device without type property\n");
175 continue;
176 }
177
178 switch (type) {
179 case IMC_TYPE_CHIP:
180 domain = IMC_DOMAIN_NEST;
181 break;
182 case IMC_TYPE_CORE:
183 domain =IMC_DOMAIN_CORE;
184 break;
185 case IMC_TYPE_THREAD:
186 domain = IMC_DOMAIN_THREAD;
187 break;
188 default:
189 pr_warn("IMC Unknown Device type \n");
190 domain = -1;
191 break;
192 }
193
de34787f
MS
194 if (!imc_pmu_create(imc_dev, pmu_count, domain)) {
195 if (domain == IMC_DOMAIN_NEST)
196 pmu_count++;
197 }
8f95faaa
MS
198 }
199
200 return 0;
201}
202
203static void opal_imc_counters_shutdown(struct platform_device *pdev)
204{
205 /*
206 * Function only stops the engines which is bare minimum.
207 * TODO: Need to handle proper memory cleanup and pmu
208 * unregister.
209 */
210 disable_nest_pmu_counters();
211 disable_core_pmu_counters();
212}
213
214static const struct of_device_id opal_imc_match[] = {
215 { .compatible = IMC_DTB_COMPAT },
216 {},
217};
218
219static struct platform_driver opal_imc_driver = {
220 .driver = {
221 .name = "opal-imc-counters",
222 .of_match_table = opal_imc_match,
223 },
224 .probe = opal_imc_counters_probe,
225 .shutdown = opal_imc_counters_shutdown,
226};
227
228builtin_platform_driver(opal_imc_driver);