blob: 94fc55fc72ce88a18eb73d3f43d5a7895ac6cd9c [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
10#ifdef CONFIG_SCHED_BOOK
11
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;
Philipp Hachtmann3a368f72014-03-06 18:25:13 +010017 unsigned short node_id;
Martin Schwidefsky10ad34b2015-01-14 17:52:10 +010018 cpumask_t thread_mask;
Heiko Carstensd1e575082012-11-12 10:03:25 +010019 cpumask_t core_mask;
20 cpumask_t book_mask;
21};
Heiko Carstens658e5ce2012-11-10 11:04:27 +010022
Heiko Carstensda0c6362015-02-04 14:48:25 +010023DECLARE_PER_CPU(struct cpu_topology_s390, cpu_topology);
Heiko Carstensd1e575082012-11-12 10:03:25 +010024
Heiko Carstensda0c6362015-02-04 14:48:25 +010025#define topology_physical_package_id(cpu) (per_cpu(cpu_topology, cpu).socket_id)
26#define topology_thread_id(cpu) (per_cpu(cpu_topology, cpu).thread_id)
Bartosz Golaszewski06931e62015-05-26 15:11:28 +020027#define topology_sibling_cpumask(cpu) \
28 (&per_cpu(cpu_topology, cpu).thread_mask)
Heiko Carstensda0c6362015-02-04 14:48:25 +010029#define topology_core_id(cpu) (per_cpu(cpu_topology, cpu).core_id)
30#define topology_core_cpumask(cpu) (&per_cpu(cpu_topology, cpu).core_mask)
31#define topology_book_id(cpu) (per_cpu(cpu_topology, cpu).book_id)
32#define topology_book_cpumask(cpu) (&per_cpu(cpu_topology, cpu).book_mask)
Heiko Carstensd1e575082012-11-12 10:03:25 +010033
34#define mc_capable() 1
Heiko Carstensd00aa4e2008-04-30 13:38:40 +020035
Heiko Carstens83a24e32011-12-27 11:27:09 +010036int topology_cpu_init(struct cpu *);
Heiko Carstensc10fde02008-04-17 07:46:13 +020037int topology_set_cpu_management(int fc);
38void topology_schedule_update(void);
Heiko Carstens96f4a702010-10-25 16:10:54 +020039void store_topology(struct sysinfo_15_1_x *info);
Heiko Carstensd68bddb2011-12-27 11:27:16 +010040void topology_expect_change(void);
Vincent Guittot2dfd7472014-04-11 11:44:38 +020041const struct cpumask *cpu_coregroup_mask(int cpu);
Heiko Carstensc10fde02008-04-17 07:46:13 +020042
Heiko Carstens83a24e32011-12-27 11:27:09 +010043#else /* CONFIG_SCHED_BOOK */
44
45static inline void topology_schedule_update(void) { }
46static inline int topology_cpu_init(struct cpu *cpu) { return 0; }
Heiko Carstensd68bddb2011-12-27 11:27:16 +010047static inline void topology_expect_change(void) { }
Heiko Carstens83a24e32011-12-27 11:27:09 +010048
49#endif /* CONFIG_SCHED_BOOK */
50
51#define POLARIZATION_UNKNOWN (-1)
Heiko Carstensc10fde02008-04-17 07:46:13 +020052#define POLARIZATION_HRZ (0)
53#define POLARIZATION_VL (1)
54#define POLARIZATION_VM (2)
55#define POLARIZATION_VH (3)
56
Philipp Hachtmann3a368f72014-03-06 18:25:13 +010057#define SD_BOOK_INIT SD_CPU_INIT
58
59#ifdef CONFIG_NUMA
60
61#define cpu_to_node cpu_to_node
62static inline int cpu_to_node(int cpu)
63{
64 return per_cpu(cpu_topology, cpu).node_id;
65}
66
67/* Returns a pointer to the cpumask of CPUs on node 'node'. */
68#define cpumask_of_node cpumask_of_node
69static inline const struct cpumask *cpumask_of_node(int node)
70{
Martin Schwidefsky22be9cd2015-09-22 14:21:16 +020071 return &node_to_cpumask_map[node];
Philipp Hachtmann3a368f72014-03-06 18:25:13 +010072}
73
74/*
75 * Returns the number of the node containing node 'node'. This
76 * architecture is flat, so it is a pretty simple function!
77 */
78#define parent_node(node) (node)
79
80#define pcibus_to_node(bus) __pcibus_to_node(bus)
81
82#define node_distance(a, b) __node_distance(a, b)
83
84#else /* !CONFIG_NUMA */
85
86#define numa_node_id numa_node_id
87static inline int numa_node_id(void)
88{
89 return 0;
90}
91
92#endif /* CONFIG_NUMA */
93
Linus Torvalds1da177e2005-04-16 15:20:36 -070094#include <asm-generic/topology.h>
95
96#endif /* _ASM_S390_TOPOLOGY_H */