blob: 5108176435c1de65cb709500c272d7f2fbc63375 [file] [log] [blame]
Linus Torvalds1da177e2005-04-16 15:20:36 -07001#ifndef _ASM_S390_TOPOLOGY_H
2#define _ASM_S390_TOPOLOGY_H
3
Heiko Carstensdbd70fb2008-04-17 07:46:12 +02004#include <linux/cpumask.h>
Philipp Hachtmann3a368f72014-03-06 18:25:13 +01005#include <asm/numa.h>
Heiko Carstensdbd70fb2008-04-17 07:46:12 +02006
Heiko Carstens78609132012-09-03 14:11:32 +02007struct sysinfo_15_1_x;
Heiko Carstens83a24e32011-12-27 11:27:09 +01008struct cpu;
9
Heiko Carstens9236b4d2015-12-28 13:20:43 +010010#ifdef CONFIG_SCHED_TOPOLOGY
Heiko Carstens83a24e32011-12-27 11:27:09 +010011
Heiko Carstensd1e575082012-11-12 10:03:25 +010012struct cpu_topology_s390 {
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010013 unsigned short thread_id;
Heiko Carstensd1e575082012-11-12 10:03:25 +010014 unsigned short core_id;
15 unsigned short socket_id;
16 unsigned short book_id;
Heiko Carstensadac0f12016-05-25 10:25:50 +020017 unsigned short drawer_id;
Philipp Hachtmann3a368f72014-03-06 18:25:13 +010018 unsigned short node_id;
Martin Schwidefsky1887aa02017-09-22 14:17:41 +020019 unsigned short dedicated : 1;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010020 cpumask_t thread_mask;
Heiko Carstensd1e575082012-11-12 10:03:25 +010021 cpumask_t core_mask;
22 cpumask_t book_mask;
Heiko Carstensadac0f12016-05-25 10:25:50 +020023 cpumask_t drawer_mask;
Heiko Carstensd1e575082012-11-12 10:03:25 +010024};
Heiko Carstens658e5ce2012-11-10 11:04:27 +010025
Heiko Carstens30fc4ca2016-12-02 10:38:37 +010026extern struct cpu_topology_s390 cpu_topology[NR_CPUS];
Heiko Carstens8c9105802016-12-03 09:50:21 +010027extern cpumask_t cpus_with_topology;
Heiko Carstensd1e575082012-11-12 10:03:25 +010028
Heiko Carstens30fc4ca2016-12-02 10:38:37 +010029#define topology_physical_package_id(cpu) (cpu_topology[cpu].socket_id)
30#define topology_thread_id(cpu) (cpu_topology[cpu].thread_id)
31#define topology_sibling_cpumask(cpu) (&cpu_topology[cpu].thread_mask)
32#define topology_core_id(cpu) (cpu_topology[cpu].core_id)
33#define topology_core_cpumask(cpu) (&cpu_topology[cpu].core_mask)
34#define topology_book_id(cpu) (cpu_topology[cpu].book_id)
35#define topology_book_cpumask(cpu) (&cpu_topology[cpu].book_mask)
36#define topology_drawer_id(cpu) (cpu_topology[cpu].drawer_id)
37#define topology_drawer_cpumask(cpu) (&cpu_topology[cpu].drawer_mask)
Martin Schwidefsky1887aa02017-09-22 14:17:41 +020038#define topology_cpu_dedicated(cpu) (cpu_topology[cpu].dedicated)
Heiko Carstensd1e575082012-11-12 10:03:25 +010039
40#define mc_capable() 1
Heiko Carstensd00aa4e2008-04-30 13:38:40 +020041
Heiko Carstens8c9105802016-12-03 09:50:21 +010042void topology_init_early(void);
Heiko Carstens83a24e32011-12-27 11:27:09 +010043int topology_cpu_init(struct cpu *);
Heiko Carstensc10fde02008-04-17 07:46:13 +020044int topology_set_cpu_management(int fc);
45void topology_schedule_update(void);
Heiko Carstens96f4a702010-10-25 16:10:54 +020046void store_topology(struct sysinfo_15_1_x *info);
Heiko Carstensd68bddb2011-12-27 11:27:16 +010047void topology_expect_change(void);
Vincent Guittot2dfd7472014-04-11 11:44:38 +020048const struct cpumask *cpu_coregroup_mask(int cpu);
Heiko Carstensc10fde02008-04-17 07:46:13 +020049
Heiko Carstens9236b4d2015-12-28 13:20:43 +010050#else /* CONFIG_SCHED_TOPOLOGY */
Heiko Carstens83a24e32011-12-27 11:27:09 +010051
Heiko Carstens8c9105802016-12-03 09:50:21 +010052static inline void topology_init_early(void) { }
Heiko Carstens83a24e32011-12-27 11:27:09 +010053static inline void topology_schedule_update(void) { }
54static inline int topology_cpu_init(struct cpu *cpu) { return 0; }
Heiko Carstensd68bddb2011-12-27 11:27:16 +010055static inline void topology_expect_change(void) { }
Heiko Carstens83a24e32011-12-27 11:27:09 +010056
Heiko Carstens9236b4d2015-12-28 13:20:43 +010057#endif /* CONFIG_SCHED_TOPOLOGY */
Heiko Carstens83a24e32011-12-27 11:27:09 +010058
59#define POLARIZATION_UNKNOWN (-1)
Heiko Carstensc10fde02008-04-17 07:46:13 +020060#define POLARIZATION_HRZ (0)
61#define POLARIZATION_VL (1)
62#define POLARIZATION_VM (2)
63#define POLARIZATION_VH (3)
64
Philipp Hachtmann3a368f72014-03-06 18:25:13 +010065#define SD_BOOK_INIT SD_CPU_INIT
66
67#ifdef CONFIG_NUMA
68
69#define cpu_to_node cpu_to_node
70static inline int cpu_to_node(int cpu)
71{
Heiko Carstens30fc4ca2016-12-02 10:38:37 +010072 return cpu_topology[cpu].node_id;
Philipp Hachtmann3a368f72014-03-06 18:25:13 +010073}
74
75/* Returns a pointer to the cpumask of CPUs on node 'node'. */
76#define cpumask_of_node cpumask_of_node
77static inline const struct cpumask *cpumask_of_node(int node)
78{
Martin Schwidefsky22be9cd2015-09-22 14:21:16 +020079 return &node_to_cpumask_map[node];
Philipp Hachtmann3a368f72014-03-06 18:25:13 +010080}
81
Philipp Hachtmann3a368f72014-03-06 18:25:13 +010082#define pcibus_to_node(bus) __pcibus_to_node(bus)
83
84#define node_distance(a, b) __node_distance(a, b)
85
86#else /* !CONFIG_NUMA */
87
88#define numa_node_id numa_node_id
89static inline int numa_node_id(void)
90{
91 return 0;
92}
93
94#endif /* CONFIG_NUMA */
95
Linus Torvalds1da177e2005-04-16 15:20:36 -070096#include <asm-generic/topology.h>
97
98#endif /* _ASM_S390_TOPOLOGY_H */