blob: f15f5571ca2b5e6bf64283e6588ac1560cc7238a [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 Schwidefsky10ad34b2015-01-14 17:52:10 +010019 cpumask_t thread_mask;
Heiko Carstensd1e575082012-11-12 10:03:25 +010020 cpumask_t core_mask;
21 cpumask_t book_mask;
Heiko Carstensadac0f12016-05-25 10:25:50 +020022 cpumask_t drawer_mask;
Heiko Carstensd1e575082012-11-12 10:03:25 +010023};
Heiko Carstens658e5ce2012-11-10 11:04:27 +010024
Heiko Carstensda0c6362015-02-04 14:48:25 +010025DECLARE_PER_CPU(struct cpu_topology_s390, cpu_topology);
Heiko Carstensd1e575082012-11-12 10:03:25 +010026
Heiko Carstensda0c6362015-02-04 14:48:25 +010027#define topology_physical_package_id(cpu) (per_cpu(cpu_topology, cpu).socket_id)
28#define topology_thread_id(cpu) (per_cpu(cpu_topology, cpu).thread_id)
Bartosz Golaszewski06931e62015-05-26 15:11:28 +020029#define topology_sibling_cpumask(cpu) \
30 (&per_cpu(cpu_topology, cpu).thread_mask)
Heiko Carstensda0c6362015-02-04 14:48:25 +010031#define topology_core_id(cpu) (per_cpu(cpu_topology, cpu).core_id)
32#define topology_core_cpumask(cpu) (&per_cpu(cpu_topology, cpu).core_mask)
33#define topology_book_id(cpu) (per_cpu(cpu_topology, cpu).book_id)
34#define topology_book_cpumask(cpu) (&per_cpu(cpu_topology, cpu).book_mask)
Heiko Carstensadac0f12016-05-25 10:25:50 +020035#define topology_drawer_id(cpu) (per_cpu(cpu_topology, cpu).drawer_id)
36#define topology_drawer_cpumask(cpu) (&per_cpu(cpu_topology, cpu).drawer_mask)
Heiko Carstensd1e575082012-11-12 10:03:25 +010037
38#define mc_capable() 1
Heiko Carstensd00aa4e2008-04-30 13:38:40 +020039
Heiko Carstens83a24e32011-12-27 11:27:09 +010040int topology_cpu_init(struct cpu *);
Heiko Carstensc10fde02008-04-17 07:46:13 +020041int topology_set_cpu_management(int fc);
42void topology_schedule_update(void);
Heiko Carstens96f4a702010-10-25 16:10:54 +020043void store_topology(struct sysinfo_15_1_x *info);
Heiko Carstensd68bddb2011-12-27 11:27:16 +010044void topology_expect_change(void);
Vincent Guittot2dfd7472014-04-11 11:44:38 +020045const struct cpumask *cpu_coregroup_mask(int cpu);
Heiko Carstensc10fde02008-04-17 07:46:13 +020046
Heiko Carstens9236b4d2015-12-28 13:20:43 +010047#else /* CONFIG_SCHED_TOPOLOGY */
Heiko Carstens83a24e32011-12-27 11:27:09 +010048
49static inline void topology_schedule_update(void) { }
50static inline int topology_cpu_init(struct cpu *cpu) { return 0; }
Heiko Carstensd68bddb2011-12-27 11:27:16 +010051static inline void topology_expect_change(void) { }
Heiko Carstens83a24e32011-12-27 11:27:09 +010052
Heiko Carstens9236b4d2015-12-28 13:20:43 +010053#endif /* CONFIG_SCHED_TOPOLOGY */
Heiko Carstens83a24e32011-12-27 11:27:09 +010054
55#define POLARIZATION_UNKNOWN (-1)
Heiko Carstensc10fde02008-04-17 07:46:13 +020056#define POLARIZATION_HRZ (0)
57#define POLARIZATION_VL (1)
58#define POLARIZATION_VM (2)
59#define POLARIZATION_VH (3)
60
Philipp Hachtmann3a368f72014-03-06 18:25:13 +010061#define SD_BOOK_INIT SD_CPU_INIT
62
63#ifdef CONFIG_NUMA
64
65#define cpu_to_node cpu_to_node
66static inline int cpu_to_node(int cpu)
67{
68 return per_cpu(cpu_topology, cpu).node_id;
69}
70
71/* Returns a pointer to the cpumask of CPUs on node 'node'. */
72#define cpumask_of_node cpumask_of_node
73static inline const struct cpumask *cpumask_of_node(int node)
74{
Martin Schwidefsky22be9cd2015-09-22 14:21:16 +020075 return &node_to_cpumask_map[node];
Philipp Hachtmann3a368f72014-03-06 18:25:13 +010076}
77
78/*
79 * Returns the number of the node containing node 'node'. This
80 * architecture is flat, so it is a pretty simple function!
81 */
82#define parent_node(node) (node)
83
84#define pcibus_to_node(bus) __pcibus_to_node(bus)
85
86#define node_distance(a, b) __node_distance(a, b)
87
88#else /* !CONFIG_NUMA */
89
90#define numa_node_id numa_node_id
91static inline int numa_node_id(void)
92{
93 return 0;
94}
95
96#endif /* CONFIG_NUMA */
97
Linus Torvalds1da177e2005-04-16 15:20:36 -070098#include <asm-generic/topology.h>
99
100#endif /* _ASM_S390_TOPOLOGY_H */