topology.c 10 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470
  1. /*
  2. * Copyright IBM Corp. 2007, 2011
  3. * Author(s): Heiko Carstens <heiko.carstens@de.ibm.com>
  4. */
  5. #define KMSG_COMPONENT "cpu"
  6. #define pr_fmt(fmt) KMSG_COMPONENT ": " fmt
  7. #include <linux/workqueue.h>
  8. #include <linux/cpuset.h>
  9. #include <linux/device.h>
  10. #include <linux/export.h>
  11. #include <linux/kernel.h>
  12. #include <linux/sched.h>
  13. #include <linux/delay.h>
  14. #include <linux/init.h>
  15. #include <linux/slab.h>
  16. #include <linux/cpu.h>
  17. #include <linux/smp.h>
  18. #include <linux/mm.h>
  19. #include <linux/nodemask.h>
  20. #include <linux/node.h>
  21. #include <asm/sysinfo.h>
  22. #include <asm/numa.h>
  23. #define PTF_HORIZONTAL (0UL)
  24. #define PTF_VERTICAL (1UL)
  25. #define PTF_CHECK (2UL)
  26. struct mask_info {
  27. struct mask_info *next;
  28. unsigned char id;
  29. cpumask_t mask;
  30. };
  31. static void set_topology_timer(void);
  32. static void topology_work_fn(struct work_struct *work);
  33. static struct sysinfo_15_1_x *tl_info;
  34. static DECLARE_WORK(topology_work, topology_work_fn);
  35. /*
  36. * Socket/Book linked lists and per_cpu(cpu_topology) updates are
  37. * protected by "sched_domains_mutex".
  38. */
  39. static struct mask_info socket_info;
  40. static struct mask_info book_info;
  41. static struct mask_info drawer_info;
  42. DEFINE_PER_CPU(struct cpu_topology_s390, cpu_topology);
  43. EXPORT_PER_CPU_SYMBOL_GPL(cpu_topology);
  44. static cpumask_t cpu_group_map(struct mask_info *info, unsigned int cpu)
  45. {
  46. cpumask_t mask;
  47. cpumask_copy(&mask, cpumask_of(cpu));
  48. if (!MACHINE_HAS_TOPOLOGY)
  49. return mask;
  50. for (; info; info = info->next) {
  51. if (cpumask_test_cpu(cpu, &info->mask))
  52. return info->mask;
  53. }
  54. return mask;
  55. }
  56. static cpumask_t cpu_thread_map(unsigned int cpu)
  57. {
  58. cpumask_t mask;
  59. int i;
  60. cpumask_copy(&mask, cpumask_of(cpu));
  61. if (!MACHINE_HAS_TOPOLOGY)
  62. return mask;
  63. cpu -= cpu % (smp_cpu_mtid + 1);
  64. for (i = 0; i <= smp_cpu_mtid; i++)
  65. if (cpu_present(cpu + i))
  66. cpumask_set_cpu(cpu + i, &mask);
  67. return mask;
  68. }
  69. static void add_cpus_to_mask(struct topology_core *tl_core,
  70. struct mask_info *drawer,
  71. struct mask_info *book,
  72. struct mask_info *socket)
  73. {
  74. struct cpu_topology_s390 *topo;
  75. unsigned int core;
  76. for_each_set_bit(core, &tl_core->mask[0], TOPOLOGY_CORE_BITS) {
  77. unsigned int rcore;
  78. int lcpu, i;
  79. rcore = TOPOLOGY_CORE_BITS - 1 - core + tl_core->origin;
  80. lcpu = smp_find_processor_id(rcore << smp_cpu_mt_shift);
  81. if (lcpu < 0)
  82. continue;
  83. for (i = 0; i <= smp_cpu_mtid; i++) {
  84. topo = &per_cpu(cpu_topology, lcpu + i);
  85. topo->drawer_id = drawer->id;
  86. topo->book_id = book->id;
  87. topo->socket_id = socket->id;
  88. topo->core_id = rcore;
  89. topo->thread_id = lcpu + i;
  90. cpumask_set_cpu(lcpu + i, &drawer->mask);
  91. cpumask_set_cpu(lcpu + i, &book->mask);
  92. cpumask_set_cpu(lcpu + i, &socket->mask);
  93. smp_cpu_set_polarization(lcpu + i, tl_core->pp);
  94. }
  95. }
  96. }
  97. static void clear_masks(void)
  98. {
  99. struct mask_info *info;
  100. info = &socket_info;
  101. while (info) {
  102. cpumask_clear(&info->mask);
  103. info = info->next;
  104. }
  105. info = &book_info;
  106. while (info) {
  107. cpumask_clear(&info->mask);
  108. info = info->next;
  109. }
  110. info = &drawer_info;
  111. while (info) {
  112. cpumask_clear(&info->mask);
  113. info = info->next;
  114. }
  115. }
  116. static union topology_entry *next_tle(union topology_entry *tle)
  117. {
  118. if (!tle->nl)
  119. return (union topology_entry *)((struct topology_core *)tle + 1);
  120. return (union topology_entry *)((struct topology_container *)tle + 1);
  121. }
  122. static void tl_to_masks(struct sysinfo_15_1_x *info)
  123. {
  124. struct mask_info *socket = &socket_info;
  125. struct mask_info *book = &book_info;
  126. struct mask_info *drawer = &drawer_info;
  127. union topology_entry *tle, *end;
  128. clear_masks();
  129. tle = info->tle;
  130. end = (union topology_entry *)((unsigned long)info + info->length);
  131. while (tle < end) {
  132. switch (tle->nl) {
  133. case 3:
  134. drawer = drawer->next;
  135. drawer->id = tle->container.id;
  136. break;
  137. case 2:
  138. book = book->next;
  139. book->id = tle->container.id;
  140. break;
  141. case 1:
  142. socket = socket->next;
  143. socket->id = tle->container.id;
  144. break;
  145. case 0:
  146. add_cpus_to_mask(&tle->cpu, drawer, book, socket);
  147. break;
  148. default:
  149. clear_masks();
  150. return;
  151. }
  152. tle = next_tle(tle);
  153. }
  154. }
  155. static void topology_update_polarization_simple(void)
  156. {
  157. int cpu;
  158. mutex_lock(&smp_cpu_state_mutex);
  159. for_each_possible_cpu(cpu)
  160. smp_cpu_set_polarization(cpu, POLARIZATION_HRZ);
  161. mutex_unlock(&smp_cpu_state_mutex);
  162. }
  163. static int ptf(unsigned long fc)
  164. {
  165. int rc;
  166. asm volatile(
  167. " .insn rre,0xb9a20000,%1,%1\n"
  168. " ipm %0\n"
  169. " srl %0,28\n"
  170. : "=d" (rc)
  171. : "d" (fc) : "cc");
  172. return rc;
  173. }
  174. int topology_set_cpu_management(int fc)
  175. {
  176. int cpu, rc;
  177. if (!MACHINE_HAS_TOPOLOGY)
  178. return -EOPNOTSUPP;
  179. if (fc)
  180. rc = ptf(PTF_VERTICAL);
  181. else
  182. rc = ptf(PTF_HORIZONTAL);
  183. if (rc)
  184. return -EBUSY;
  185. for_each_possible_cpu(cpu)
  186. smp_cpu_set_polarization(cpu, POLARIZATION_UNKNOWN);
  187. return rc;
  188. }
  189. static void update_cpu_masks(void)
  190. {
  191. struct cpu_topology_s390 *topo;
  192. int cpu;
  193. for_each_possible_cpu(cpu) {
  194. topo = &per_cpu(cpu_topology, cpu);
  195. topo->thread_mask = cpu_thread_map(cpu);
  196. topo->core_mask = cpu_group_map(&socket_info, cpu);
  197. topo->book_mask = cpu_group_map(&book_info, cpu);
  198. topo->drawer_mask = cpu_group_map(&drawer_info, cpu);
  199. if (!MACHINE_HAS_TOPOLOGY) {
  200. topo->thread_id = cpu;
  201. topo->core_id = cpu;
  202. topo->socket_id = cpu;
  203. topo->book_id = cpu;
  204. topo->drawer_id = cpu;
  205. }
  206. }
  207. numa_update_cpu_topology();
  208. }
  209. void store_topology(struct sysinfo_15_1_x *info)
  210. {
  211. stsi(info, 15, 1, min(topology_max_mnest, 4));
  212. }
  213. int arch_update_cpu_topology(void)
  214. {
  215. struct sysinfo_15_1_x *info = tl_info;
  216. struct device *dev;
  217. int cpu, rc = 0;
  218. if (MACHINE_HAS_TOPOLOGY) {
  219. rc = 1;
  220. store_topology(info);
  221. tl_to_masks(info);
  222. }
  223. update_cpu_masks();
  224. if (!MACHINE_HAS_TOPOLOGY)
  225. topology_update_polarization_simple();
  226. for_each_online_cpu(cpu) {
  227. dev = get_cpu_device(cpu);
  228. kobject_uevent(&dev->kobj, KOBJ_CHANGE);
  229. }
  230. return rc;
  231. }
  232. static void topology_work_fn(struct work_struct *work)
  233. {
  234. rebuild_sched_domains();
  235. }
  236. void topology_schedule_update(void)
  237. {
  238. schedule_work(&topology_work);
  239. }
  240. static void topology_timer_fn(unsigned long ignored)
  241. {
  242. if (ptf(PTF_CHECK))
  243. topology_schedule_update();
  244. set_topology_timer();
  245. }
  246. static struct timer_list topology_timer =
  247. TIMER_DEFERRED_INITIALIZER(topology_timer_fn, 0, 0);
  248. static atomic_t topology_poll = ATOMIC_INIT(0);
  249. static void set_topology_timer(void)
  250. {
  251. if (atomic_add_unless(&topology_poll, -1, 0))
  252. mod_timer(&topology_timer, jiffies + HZ / 10);
  253. else
  254. mod_timer(&topology_timer, jiffies + HZ * 60);
  255. }
  256. void topology_expect_change(void)
  257. {
  258. if (!MACHINE_HAS_TOPOLOGY)
  259. return;
  260. /* This is racy, but it doesn't matter since it is just a heuristic.
  261. * Worst case is that we poll in a higher frequency for a bit longer.
  262. */
  263. if (atomic_read(&topology_poll) > 60)
  264. return;
  265. atomic_add(60, &topology_poll);
  266. set_topology_timer();
  267. }
  268. static int cpu_management;
  269. static ssize_t dispatching_show(struct device *dev,
  270. struct device_attribute *attr,
  271. char *buf)
  272. {
  273. ssize_t count;
  274. mutex_lock(&smp_cpu_state_mutex);
  275. count = sprintf(buf, "%d\n", cpu_management);
  276. mutex_unlock(&smp_cpu_state_mutex);
  277. return count;
  278. }
  279. static ssize_t dispatching_store(struct device *dev,
  280. struct device_attribute *attr,
  281. const char *buf,
  282. size_t count)
  283. {
  284. int val, rc;
  285. char delim;
  286. if (sscanf(buf, "%d %c", &val, &delim) != 1)
  287. return -EINVAL;
  288. if (val != 0 && val != 1)
  289. return -EINVAL;
  290. rc = 0;
  291. get_online_cpus();
  292. mutex_lock(&smp_cpu_state_mutex);
  293. if (cpu_management == val)
  294. goto out;
  295. rc = topology_set_cpu_management(val);
  296. if (rc)
  297. goto out;
  298. cpu_management = val;
  299. topology_expect_change();
  300. out:
  301. mutex_unlock(&smp_cpu_state_mutex);
  302. put_online_cpus();
  303. return rc ? rc : count;
  304. }
  305. static DEVICE_ATTR(dispatching, 0644, dispatching_show,
  306. dispatching_store);
  307. static ssize_t cpu_polarization_show(struct device *dev,
  308. struct device_attribute *attr, char *buf)
  309. {
  310. int cpu = dev->id;
  311. ssize_t count;
  312. mutex_lock(&smp_cpu_state_mutex);
  313. switch (smp_cpu_get_polarization(cpu)) {
  314. case POLARIZATION_HRZ:
  315. count = sprintf(buf, "horizontal\n");
  316. break;
  317. case POLARIZATION_VL:
  318. count = sprintf(buf, "vertical:low\n");
  319. break;
  320. case POLARIZATION_VM:
  321. count = sprintf(buf, "vertical:medium\n");
  322. break;
  323. case POLARIZATION_VH:
  324. count = sprintf(buf, "vertical:high\n");
  325. break;
  326. default:
  327. count = sprintf(buf, "unknown\n");
  328. break;
  329. }
  330. mutex_unlock(&smp_cpu_state_mutex);
  331. return count;
  332. }
  333. static DEVICE_ATTR(polarization, 0444, cpu_polarization_show, NULL);
  334. static struct attribute *topology_cpu_attrs[] = {
  335. &dev_attr_polarization.attr,
  336. NULL,
  337. };
  338. static struct attribute_group topology_cpu_attr_group = {
  339. .attrs = topology_cpu_attrs,
  340. };
  341. int topology_cpu_init(struct cpu *cpu)
  342. {
  343. return sysfs_create_group(&cpu->dev.kobj, &topology_cpu_attr_group);
  344. }
  345. static const struct cpumask *cpu_thread_mask(int cpu)
  346. {
  347. return &per_cpu(cpu_topology, cpu).thread_mask;
  348. }
  349. const struct cpumask *cpu_coregroup_mask(int cpu)
  350. {
  351. return &per_cpu(cpu_topology, cpu).core_mask;
  352. }
  353. static const struct cpumask *cpu_book_mask(int cpu)
  354. {
  355. return &per_cpu(cpu_topology, cpu).book_mask;
  356. }
  357. static const struct cpumask *cpu_drawer_mask(int cpu)
  358. {
  359. return &per_cpu(cpu_topology, cpu).drawer_mask;
  360. }
  361. static struct sched_domain_topology_level s390_topology[] = {
  362. { cpu_thread_mask, cpu_smt_flags, SD_INIT_NAME(SMT) },
  363. { cpu_coregroup_mask, cpu_core_flags, SD_INIT_NAME(MC) },
  364. { cpu_book_mask, SD_INIT_NAME(BOOK) },
  365. { cpu_drawer_mask, SD_INIT_NAME(DRAWER) },
  366. { cpu_cpu_mask, SD_INIT_NAME(DIE) },
  367. { NULL, },
  368. };
  369. static void __init alloc_masks(struct sysinfo_15_1_x *info,
  370. struct mask_info *mask, int offset)
  371. {
  372. int i, nr_masks;
  373. nr_masks = info->mag[TOPOLOGY_NR_MAG - offset];
  374. for (i = 0; i < info->mnest - offset; i++)
  375. nr_masks *= info->mag[TOPOLOGY_NR_MAG - offset - 1 - i];
  376. nr_masks = max(nr_masks, 1);
  377. for (i = 0; i < nr_masks; i++) {
  378. mask->next = kzalloc(sizeof(*mask->next), GFP_KERNEL);
  379. mask = mask->next;
  380. }
  381. }
  382. static int __init s390_topology_init(void)
  383. {
  384. struct sysinfo_15_1_x *info;
  385. int i;
  386. set_sched_topology(s390_topology);
  387. if (!MACHINE_HAS_TOPOLOGY)
  388. return 0;
  389. tl_info = (struct sysinfo_15_1_x *)__get_free_page(GFP_KERNEL);
  390. info = tl_info;
  391. store_topology(info);
  392. pr_info("The CPU configuration topology of the machine is:");
  393. for (i = 0; i < TOPOLOGY_NR_MAG; i++)
  394. printk(KERN_CONT " %d", info->mag[i]);
  395. printk(KERN_CONT " / %d\n", info->mnest);
  396. alloc_masks(info, &socket_info, 1);
  397. alloc_masks(info, &book_info, 2);
  398. alloc_masks(info, &drawer_info, 3);
  399. return 0;
  400. }
  401. early_initcall(s390_topology_init);
  402. static int __init topology_init(void)
  403. {
  404. if (MACHINE_HAS_TOPOLOGY)
  405. set_topology_timer();
  406. else
  407. topology_update_polarization_simple();
  408. return device_create_file(cpu_subsys.dev_root, &dev_attr_dispatching);
  409. }
  410. device_initcall(topology_init);