topology.h 1.7 KB
Newer Older
L
Linus Torvalds 已提交
1 2 3
#ifndef _ASM_S390_TOPOLOGY_H
#define _ASM_S390_TOPOLOGY_H

4
#include <linux/cpumask.h>
5
#include <asm/sysinfo.h>
6

7 8 9 10
struct cpu;

#ifdef CONFIG_SCHED_BOOK

11
extern unsigned char cpu_core_id[NR_CPUS];
12 13
extern cpumask_t cpu_core_map[NR_CPUS];

14
static inline const struct cpumask *cpu_coregroup_mask(int cpu)
15 16 17 18
{
	return &cpu_core_map[cpu];
}

19
#define topology_core_id(cpu)		(cpu_core_id[cpu])
20
#define topology_core_cpumask(cpu)	(&cpu_core_map[cpu])
21 22 23 24 25
#define mc_capable()			(1)

extern unsigned char cpu_book_id[NR_CPUS];
extern cpumask_t cpu_book_map[NR_CPUS];

26
static inline const struct cpumask *cpu_book_mask(int cpu)
27 28 29 30 31 32 33
{
	return &cpu_book_map[cpu];
}

#define topology_book_id(cpu)		(cpu_book_id[cpu])
#define topology_book_cpumask(cpu)	(&cpu_book_map[cpu])

34
int topology_cpu_init(struct cpu *);
H
Heiko Carstens 已提交
35 36
int topology_set_cpu_management(int fc);
void topology_schedule_update(void);
37
void store_topology(struct sysinfo_15_1_x *info);
H
Heiko Carstens 已提交
38

39 40 41 42 43 44 45 46
#else /* CONFIG_SCHED_BOOK */

static inline void topology_schedule_update(void) { }
static inline int topology_cpu_init(struct cpu *cpu) { return 0; }

#endif /* CONFIG_SCHED_BOOK */

#define POLARIZATION_UNKNOWN	(-1)
H
Heiko Carstens 已提交
47 48 49 50 51
#define POLARIZATION_HRZ	(0)
#define POLARIZATION_VL		(1)
#define POLARIZATION_VM		(2)
#define POLARIZATION_VH		(3)

52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70
extern int cpu_polarization[];

static inline void cpu_set_polarization(int cpu, int val)
{
#ifdef CONFIG_SCHED_BOOK
	cpu_polarization[cpu] = val;
#endif
}

static inline int cpu_read_polarization(int cpu)
{
#ifdef CONFIG_SCHED_BOOK
	return cpu_polarization[cpu];
#else
	return POLARIZATION_HRZ;
#endif
}

#ifdef CONFIG_SCHED_BOOK
71 72 73 74 75 76 77
void s390_init_cpu_topology(void);
#else
static inline void s390_init_cpu_topology(void)
{
};
#endif

78 79
#define SD_BOOK_INIT	SD_CPU_INIT

L
Linus Torvalds 已提交
80 81 82
#include <asm-generic/topology.h>

#endif /* _ASM_S390_TOPOLOGY_H */