blob: b3aac53fd6dc0f272867a6ab3dd44dfa2635ed6e [file] [log] [blame]
Heiko Carstensdbd70fb2008-04-17 07:46:12 +02001/*
Heiko Carstensdbd70fb2008-04-17 07:46:12 +02002 * Copyright IBM Corp. 2007
3 * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
4 */
5
6#include <linux/kernel.h>
7#include <linux/mm.h>
8#include <linux/init.h>
9#include <linux/device.h>
10#include <linux/bootmem.h>
11#include <linux/sched.h>
12#include <linux/workqueue.h>
13#include <linux/cpu.h>
14#include <linux/smp.h>
Heiko Carstensf414f5f2008-12-25 13:37:59 +010015#include <linux/cpuset.h>
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020016#include <asm/delay.h>
17#include <asm/s390_ext.h>
18#include <asm/sysinfo.h>
19
20#define CPU_BITS 64
Heiko Carstensc10fde02008-04-17 07:46:13 +020021#define NR_MAG 6
22
23#define PTF_HORIZONTAL (0UL)
24#define PTF_VERTICAL (1UL)
25#define PTF_CHECK (2UL)
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020026
27struct tl_cpu {
Heiko Carstensc10fde02008-04-17 07:46:13 +020028 unsigned char reserved0[4];
29 unsigned char :6;
30 unsigned char pp:2;
31 unsigned char reserved1;
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020032 unsigned short origin;
33 unsigned long mask[CPU_BITS / BITS_PER_LONG];
34};
35
36struct tl_container {
37 unsigned char reserved[8];
38};
39
40union tl_entry {
41 unsigned char nl;
42 struct tl_cpu cpu;
43 struct tl_container container;
44};
45
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020046struct tl_info {
47 unsigned char reserved0[2];
48 unsigned short length;
49 unsigned char mag[NR_MAG];
50 unsigned char reserved1;
51 unsigned char mnest;
52 unsigned char reserved2[4];
53 union tl_entry tle[0];
54};
55
56struct core_info {
57 struct core_info *next;
58 cpumask_t mask;
59};
60
Heiko Carstens2b1a61f2008-12-25 13:39:23 +010061static int topology_enabled;
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020062static void topology_work_fn(struct work_struct *work);
63static struct tl_info *tl_info;
64static struct core_info core_info;
65static int machine_has_topology;
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020066static struct timer_list topology_timer;
67static void set_topology_timer(void);
68static DECLARE_WORK(topology_work, topology_work_fn);
Heiko Carstens74af2832008-11-14 18:18:07 +010069/* topology_lock protects the core linked list */
70static DEFINE_SPINLOCK(topology_lock);
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020071
Heiko Carstensd00aa4e2008-04-30 13:38:40 +020072cpumask_t cpu_core_map[NR_CPUS];
73
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020074cpumask_t cpu_coregroup_map(unsigned int cpu)
75{
76 struct core_info *core = &core_info;
Heiko Carstens74af2832008-11-14 18:18:07 +010077 unsigned long flags;
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020078 cpumask_t mask;
79
80 cpus_clear(mask);
Heiko Carstens2b1a61f2008-12-25 13:39:23 +010081 if (!topology_enabled || !machine_has_topology)
Heiko Carstens54390502008-12-25 13:37:57 +010082 return cpu_possible_map;
Heiko Carstens74af2832008-11-14 18:18:07 +010083 spin_lock_irqsave(&topology_lock, flags);
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020084 while (core) {
85 if (cpu_isset(cpu, core->mask)) {
86 mask = core->mask;
87 break;
88 }
89 core = core->next;
90 }
Heiko Carstens74af2832008-11-14 18:18:07 +010091 spin_unlock_irqrestore(&topology_lock, flags);
Heiko Carstensdbd70fb2008-04-17 07:46:12 +020092 if (cpus_empty(mask))
93 mask = cpumask_of_cpu(cpu);
94 return mask;
95}
96
97static void add_cpus_to_core(struct tl_cpu *tl_cpu, struct core_info *core)
98{
99 unsigned int cpu;
100
101 for (cpu = find_first_bit(&tl_cpu->mask[0], CPU_BITS);
102 cpu < CPU_BITS;
103 cpu = find_next_bit(&tl_cpu->mask[0], CPU_BITS, cpu + 1))
104 {
105 unsigned int rcpu, lcpu;
106
107 rcpu = CPU_BITS - 1 - cpu + tl_cpu->origin;
108 for_each_present_cpu(lcpu) {
Heiko Carstensc10fde02008-04-17 07:46:13 +0200109 if (__cpu_logical_map[lcpu] == rcpu) {
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200110 cpu_set(lcpu, core->mask);
Heiko Carstensc10fde02008-04-17 07:46:13 +0200111 smp_cpu_polarization[lcpu] = tl_cpu->pp;
112 }
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200113 }
114 }
115}
116
117static void clear_cores(void)
118{
119 struct core_info *core = &core_info;
120
121 while (core) {
122 cpus_clear(core->mask);
123 core = core->next;
124 }
125}
126
127static union tl_entry *next_tle(union tl_entry *tle)
128{
129 if (tle->nl)
130 return (union tl_entry *)((struct tl_container *)tle + 1);
131 else
132 return (union tl_entry *)((struct tl_cpu *)tle + 1);
133}
134
135static void tl_to_cores(struct tl_info *info)
136{
137 union tl_entry *tle, *end;
138 struct core_info *core = &core_info;
139
Heiko Carstens74af2832008-11-14 18:18:07 +0100140 spin_lock_irq(&topology_lock);
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200141 clear_cores();
Heiko Carstensc10fde02008-04-17 07:46:13 +0200142 tle = info->tle;
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200143 end = (union tl_entry *)((unsigned long)info + info->length);
144 while (tle < end) {
145 switch (tle->nl) {
146 case 5:
147 case 4:
148 case 3:
149 case 2:
150 break;
151 case 1:
152 core = core->next;
153 break;
154 case 0:
155 add_cpus_to_core(&tle->cpu, core);
156 break;
157 default:
158 clear_cores();
159 machine_has_topology = 0;
160 return;
161 }
162 tle = next_tle(tle);
163 }
Heiko Carstens74af2832008-11-14 18:18:07 +0100164 spin_unlock_irq(&topology_lock);
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200165}
166
Heiko Carstensc10fde02008-04-17 07:46:13 +0200167static void topology_update_polarization_simple(void)
168{
169 int cpu;
170
171 mutex_lock(&smp_cpu_state_mutex);
Heiko Carstens54390502008-12-25 13:37:57 +0100172 for_each_possible_cpu(cpu)
Heiko Carstensc10fde02008-04-17 07:46:13 +0200173 smp_cpu_polarization[cpu] = POLARIZATION_HRZ;
174 mutex_unlock(&smp_cpu_state_mutex);
175}
176
177static int ptf(unsigned long fc)
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200178{
179 int rc;
180
181 asm volatile(
182 " .insn rre,0xb9a20000,%1,%1\n"
183 " ipm %0\n"
184 " srl %0,28\n"
185 : "=d" (rc)
Heiko Carstensc10fde02008-04-17 07:46:13 +0200186 : "d" (fc) : "cc");
187 return rc;
188}
189
190int topology_set_cpu_management(int fc)
191{
192 int cpu;
193 int rc;
194
195 if (!machine_has_topology)
196 return -EOPNOTSUPP;
197 if (fc)
198 rc = ptf(PTF_VERTICAL);
199 else
200 rc = ptf(PTF_HORIZONTAL);
201 if (rc)
202 return -EBUSY;
Heiko Carstens54390502008-12-25 13:37:57 +0100203 for_each_possible_cpu(cpu)
Heiko Carstensc10fde02008-04-17 07:46:13 +0200204 smp_cpu_polarization[cpu] = POLARIZATION_UNKNWN;
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200205 return rc;
206}
207
Heiko Carstensd00aa4e2008-04-30 13:38:40 +0200208static void update_cpu_core_map(void)
209{
210 int cpu;
211
Heiko Carstens54390502008-12-25 13:37:57 +0100212 for_each_possible_cpu(cpu)
Heiko Carstensd00aa4e2008-04-30 13:38:40 +0200213 cpu_core_map[cpu] = cpu_coregroup_map(cpu);
214}
215
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200216void arch_update_cpu_topology(void)
217{
218 struct tl_info *info = tl_info;
219 struct sys_device *sysdev;
220 int cpu;
221
Heiko Carstensc10fde02008-04-17 07:46:13 +0200222 if (!machine_has_topology) {
Heiko Carstensd00aa4e2008-04-30 13:38:40 +0200223 update_cpu_core_map();
Heiko Carstensc10fde02008-04-17 07:46:13 +0200224 topology_update_polarization_simple();
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200225 return;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200226 }
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200227 stsi(info, 15, 1, 2);
228 tl_to_cores(info);
Heiko Carstensd00aa4e2008-04-30 13:38:40 +0200229 update_cpu_core_map();
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200230 for_each_online_cpu(cpu) {
231 sysdev = get_cpu_sysdev(cpu);
232 kobject_uevent(&sysdev->kobj, KOBJ_CHANGE);
233 }
234}
235
Heiko Carstensfd781fa2008-04-30 13:38:41 +0200236static void topology_work_fn(struct work_struct *work)
237{
Heiko Carstensf414f5f2008-12-25 13:37:59 +0100238 rebuild_sched_domains();
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200239}
240
Heiko Carstensc10fde02008-04-17 07:46:13 +0200241void topology_schedule_update(void)
242{
243 schedule_work(&topology_work);
244}
245
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200246static void topology_timer_fn(unsigned long ignored)
247{
Heiko Carstensc10fde02008-04-17 07:46:13 +0200248 if (ptf(PTF_CHECK))
249 topology_schedule_update();
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200250 set_topology_timer();
251}
252
253static void set_topology_timer(void)
254{
255 topology_timer.function = topology_timer_fn;
256 topology_timer.data = 0;
257 topology_timer.expires = jiffies + 60 * HZ;
258 add_timer(&topology_timer);
259}
260
Heiko Carstens2b1a61f2008-12-25 13:39:23 +0100261static int __init early_parse_topology(char *p)
262{
263 if (strncmp(p, "on", 2))
264 return 0;
265 topology_enabled = 1;
266 return 0;
267}
268early_param("topology", early_parse_topology);
269
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200270static int __init init_topology_update(void)
271{
272 int rc;
273
Heiko Carstensd00aa4e2008-04-30 13:38:40 +0200274 rc = 0;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200275 if (!machine_has_topology) {
276 topology_update_polarization_simple();
Heiko Carstensd00aa4e2008-04-30 13:38:40 +0200277 goto out;
Heiko Carstensc10fde02008-04-17 07:46:13 +0200278 }
279 init_timer_deferrable(&topology_timer);
Heiko Carstens349f1b62008-12-25 13:39:24 +0100280 set_topology_timer();
Heiko Carstensd00aa4e2008-04-30 13:38:40 +0200281out:
282 update_cpu_core_map();
283 return rc;
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200284}
285__initcall(init_topology_update);
286
287void __init s390_init_cpu_topology(void)
288{
289 unsigned long long facility_bits;
290 struct tl_info *info;
291 struct core_info *core;
292 int nr_cores;
293 int i;
294
295 if (stfle(&facility_bits, 1) <= 0)
296 return;
297 if (!(facility_bits & (1ULL << 52)) || !(facility_bits & (1ULL << 61)))
298 return;
299 machine_has_topology = 1;
300
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200301 tl_info = alloc_bootmem_pages(PAGE_SIZE);
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200302 info = tl_info;
303 stsi(info, 15, 1, 2);
304
305 nr_cores = info->mag[NR_MAG - 2];
306 for (i = 0; i < info->mnest - 2; i++)
307 nr_cores *= info->mag[NR_MAG - 3 - i];
308
309 printk(KERN_INFO "CPU topology:");
310 for (i = 0; i < NR_MAG; i++)
311 printk(" %d", info->mag[i]);
312 printk(" / %d\n", info->mnest);
313
314 core = &core_info;
315 for (i = 0; i < nr_cores; i++) {
316 core->next = alloc_bootmem(sizeof(struct core_info));
317 core = core->next;
318 if (!core)
319 goto error;
320 }
321 return;
322error:
323 machine_has_topology = 0;
Heiko Carstensdbd70fb2008-04-17 07:46:12 +0200324}