topology.c 11 KB

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