topology.h 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354
  1. #ifndef _ASM_S390_TOPOLOGY_H
  2. #define _ASM_S390_TOPOLOGY_H
  3. #include <linux/cpumask.h>
  4. extern unsigned char cpu_core_id[NR_CPUS];
  5. extern cpumask_t cpu_core_map[NR_CPUS];
  6. static inline const struct cpumask *cpu_coregroup_mask(unsigned int cpu)
  7. {
  8. return &cpu_core_map[cpu];
  9. }
  10. #define topology_core_id(cpu) (cpu_core_id[cpu])
  11. #define topology_core_cpumask(cpu) (&cpu_core_map[cpu])
  12. #define mc_capable() (1)
  13. #ifdef CONFIG_SCHED_BOOK
  14. extern unsigned char cpu_book_id[NR_CPUS];
  15. extern cpumask_t cpu_book_map[NR_CPUS];
  16. static inline const struct cpumask *cpu_book_mask(unsigned int cpu)
  17. {
  18. return &cpu_book_map[cpu];
  19. }
  20. #define topology_book_id(cpu) (cpu_book_id[cpu])
  21. #define topology_book_cpumask(cpu) (&cpu_book_map[cpu])
  22. #endif /* CONFIG_SCHED_BOOK */
  23. int topology_set_cpu_management(int fc);
  24. void topology_schedule_update(void);
  25. #define POLARIZATION_UNKNWN (-1)
  26. #define POLARIZATION_HRZ (0)
  27. #define POLARIZATION_VL (1)
  28. #define POLARIZATION_VM (2)
  29. #define POLARIZATION_VH (3)
  30. #ifdef CONFIG_SMP
  31. void s390_init_cpu_topology(void);
  32. #else
  33. static inline void s390_init_cpu_topology(void)
  34. {
  35. };
  36. #endif
  37. #define SD_BOOK_INIT SD_CPU_INIT
  38. #include <asm-generic/topology.h>
  39. #endif /* _ASM_S390_TOPOLOGY_H */