2 * Copyright IBM Corp. 2007
3 * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
6 #include <linux/kernel.h>
8 #include <linux/init.h>
9 #include <linux/device.h>
10 #include <linux/bootmem.h>
11 #include <linux/sched.h>
12 #include <linux/kthread.h>
13 #include <linux/workqueue.h>
14 #include <linux/cpu.h>
15 #include <linux/smp.h>
16 #include <asm/delay.h>
17 #include <asm/s390_ext.h>
18 #include <asm/sysinfo.h>
23 #define PTF_HORIZONTAL (0UL)
24 #define PTF_VERTICAL (1UL)
25 #define PTF_CHECK (2UL)
28 unsigned char reserved0
[4];
31 unsigned char reserved1
;
32 unsigned short origin
;
33 unsigned long mask
[CPU_BITS
/ BITS_PER_LONG
];
37 unsigned char reserved
[8];
43 struct tl_container container
;
47 unsigned char reserved0
[2];
48 unsigned short length
;
49 unsigned char mag
[NR_MAG
];
50 unsigned char reserved1
;
52 unsigned char reserved2
[4];
53 union tl_entry tle
[0];
57 struct core_info
*next
;
61 static void topology_work_fn(struct work_struct
*work
);
62 static struct tl_info
*tl_info
;
63 static struct core_info core_info
;
64 static int machine_has_topology
;
65 static int machine_has_topology_irq
;
66 static struct timer_list topology_timer
;
67 static void set_topology_timer(void);
68 static DECLARE_WORK(topology_work
, topology_work_fn
);
70 cpumask_t cpu_core_map
[NR_CPUS
];
72 cpumask_t
cpu_coregroup_map(unsigned int cpu
)
74 struct core_info
*core
= &core_info
;
78 if (!machine_has_topology
)
79 return cpu_present_map
;
80 mutex_lock(&smp_cpu_state_mutex
);
82 if (cpu_isset(cpu
, core
->mask
)) {
88 mutex_unlock(&smp_cpu_state_mutex
);
90 mask
= cpumask_of_cpu(cpu
);
94 static void add_cpus_to_core(struct tl_cpu
*tl_cpu
, struct core_info
*core
)
98 for (cpu
= find_first_bit(&tl_cpu
->mask
[0], CPU_BITS
);
100 cpu
= find_next_bit(&tl_cpu
->mask
[0], CPU_BITS
, cpu
+ 1))
102 unsigned int rcpu
, lcpu
;
104 rcpu
= CPU_BITS
- 1 - cpu
+ tl_cpu
->origin
;
105 for_each_present_cpu(lcpu
) {
106 if (__cpu_logical_map
[lcpu
] == rcpu
) {
107 cpu_set(lcpu
, core
->mask
);
108 smp_cpu_polarization
[lcpu
] = tl_cpu
->pp
;
114 static void clear_cores(void)
116 struct core_info
*core
= &core_info
;
119 cpus_clear(core
->mask
);
124 static union tl_entry
*next_tle(union tl_entry
*tle
)
127 return (union tl_entry
*)((struct tl_container
*)tle
+ 1);
129 return (union tl_entry
*)((struct tl_cpu
*)tle
+ 1);
132 static void tl_to_cores(struct tl_info
*info
)
134 union tl_entry
*tle
, *end
;
135 struct core_info
*core
= &core_info
;
137 mutex_lock(&smp_cpu_state_mutex
);
140 end
= (union tl_entry
*)((unsigned long)info
+ info
->length
);
152 add_cpus_to_core(&tle
->cpu
, core
);
156 machine_has_topology
= 0;
161 mutex_unlock(&smp_cpu_state_mutex
);
164 static void topology_update_polarization_simple(void)
168 mutex_lock(&smp_cpu_state_mutex
);
169 for_each_present_cpu(cpu
)
170 smp_cpu_polarization
[cpu
] = POLARIZATION_HRZ
;
171 mutex_unlock(&smp_cpu_state_mutex
);
174 static int ptf(unsigned long fc
)
179 " .insn rre,0xb9a20000,%1,%1\n"
187 int topology_set_cpu_management(int fc
)
192 if (!machine_has_topology
)
195 rc
= ptf(PTF_VERTICAL
);
197 rc
= ptf(PTF_HORIZONTAL
);
200 for_each_present_cpu(cpu
)
201 smp_cpu_polarization
[cpu
] = POLARIZATION_UNKNWN
;
205 static void update_cpu_core_map(void)
209 for_each_present_cpu(cpu
)
210 cpu_core_map
[cpu
] = cpu_coregroup_map(cpu
);
213 void arch_update_cpu_topology(void)
215 struct tl_info
*info
= tl_info
;
216 struct sys_device
*sysdev
;
219 if (!machine_has_topology
) {
220 update_cpu_core_map();
221 topology_update_polarization_simple();
224 stsi(info
, 15, 1, 2);
226 update_cpu_core_map();
227 for_each_online_cpu(cpu
) {
228 sysdev
= get_cpu_sysdev(cpu
);
229 kobject_uevent(&sysdev
->kobj
, KOBJ_CHANGE
);
233 static int topology_kthread(void *data
)
235 arch_reinit_sched_domains();
239 static void topology_work_fn(struct work_struct
*work
)
241 /* We can't call arch_reinit_sched_domains() from a multi-threaded
242 * workqueue context since it may deadlock in case of cpu hotplug.
243 * So we have to create a kernel thread in order to call
244 * arch_reinit_sched_domains().
246 kthread_run(topology_kthread
, NULL
, "topology_update");
249 void topology_schedule_update(void)
251 schedule_work(&topology_work
);
254 static void topology_timer_fn(unsigned long ignored
)
257 topology_schedule_update();
258 set_topology_timer();
261 static void set_topology_timer(void)
263 topology_timer
.function
= topology_timer_fn
;
264 topology_timer
.data
= 0;
265 topology_timer
.expires
= jiffies
+ 60 * HZ
;
266 add_timer(&topology_timer
);
269 static void topology_interrupt(__u16 code
)
271 schedule_work(&topology_work
);
274 static int __init
init_topology_update(void)
279 if (!machine_has_topology
) {
280 topology_update_polarization_simple();
283 init_timer_deferrable(&topology_timer
);
284 if (machine_has_topology_irq
) {
285 rc
= register_external_interrupt(0x2005, topology_interrupt
);
291 set_topology_timer();
293 update_cpu_core_map();
296 __initcall(init_topology_update
);
298 void __init
s390_init_cpu_topology(void)
300 unsigned long long facility_bits
;
301 struct tl_info
*info
;
302 struct core_info
*core
;
306 if (stfle(&facility_bits
, 1) <= 0)
308 if (!(facility_bits
& (1ULL << 52)) || !(facility_bits
& (1ULL << 61)))
310 machine_has_topology
= 1;
312 if (facility_bits
& (1ULL << 51))
313 machine_has_topology_irq
= 1;
315 tl_info
= alloc_bootmem_pages(PAGE_SIZE
);
319 stsi(info
, 15, 1, 2);
321 nr_cores
= info
->mag
[NR_MAG
- 2];
322 for (i
= 0; i
< info
->mnest
- 2; i
++)
323 nr_cores
*= info
->mag
[NR_MAG
- 3 - i
];
325 printk(KERN_INFO
"CPU topology:");
326 for (i
= 0; i
< NR_MAG
; i
++)
327 printk(" %d", info
->mag
[i
]);
328 printk(" / %d\n", info
->mnest
);
331 for (i
= 0; i
< nr_cores
; i
++) {
332 core
->next
= alloc_bootmem(sizeof(struct core_info
));
339 machine_has_topology
= 0;
340 machine_has_topology_irq
= 0;