topology.h 1.3 KB

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