Zhang, Yanmin | 69dcc99 | 2006-02-03 03:04:36 -0800 | [diff] [blame] | 1 | |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 2 | Export CPU topology info via sysfs. Items (attributes) are similar |
Zhang, Yanmin | 69dcc99 | 2006-02-03 03:04:36 -0800 | [diff] [blame] | 3 | to /proc/cpuinfo. |
| 4 | |
| 5 | 1) /sys/devices/system/cpu/cpuX/topology/physical_package_id: |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 6 | |
| 7 | physical package id of cpuX. Typically corresponds to a physical |
| 8 | socket number, but the actual value is architecture and platform |
| 9 | dependent. |
| 10 | |
Zhang, Yanmin | 69dcc99 | 2006-02-03 03:04:36 -0800 | [diff] [blame] | 11 | 2) /sys/devices/system/cpu/cpuX/topology/core_id: |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 12 | |
| 13 | the CPU core ID of cpuX. Typically it is the hardware platform's |
| 14 | identifier (rather than the kernel's). The actual value is |
| 15 | architecture and platform dependent. |
| 16 | |
Zhang, Yanmin | 69dcc99 | 2006-02-03 03:04:36 -0800 | [diff] [blame] | 17 | 3) /sys/devices/system/cpu/cpuX/topology/thread_siblings: |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 18 | |
| 19 | internel kernel map of cpuX's hardware threads within the same |
| 20 | core as cpuX |
| 21 | |
Zhang, Yanmin | 69dcc99 | 2006-02-03 03:04:36 -0800 | [diff] [blame] | 22 | 4) /sys/devices/system/cpu/cpuX/topology/core_siblings: |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 23 | |
| 24 | internal kernel map of cpuX's hardware threads within the same |
| 25 | physical_package_id. |
Zhang, Yanmin | 69dcc99 | 2006-02-03 03:04:36 -0800 | [diff] [blame] | 26 | |
| 27 | To implement it in an architecture-neutral way, a new source file, |
Jesper Juhl | ded23ac | 2006-03-28 01:56:52 -0800 | [diff] [blame] | 28 | drivers/base/topology.c, is to export the 4 attributes. |
Zhang, Yanmin | 69dcc99 | 2006-02-03 03:04:36 -0800 | [diff] [blame] | 29 | |
Ben Hutchings | c50cbb0 | 2008-06-04 21:47:29 -0700 | [diff] [blame] | 30 | For an architecture to support this feature, it must define some of |
| 31 | these macros in include/asm-XXX/topology.h: |
Zhang, Yanmin | 69dcc99 | 2006-02-03 03:04:36 -0800 | [diff] [blame] | 32 | #define topology_physical_package_id(cpu) |
| 33 | #define topology_core_id(cpu) |
Rusty Russell | fbd59a8 | 2009-01-10 21:58:08 -0800 | [diff] [blame] | 34 | #define topology_thread_cpumask(cpu) |
| 35 | #define topology_core_cpumask(cpu) |
Zhang, Yanmin | 69dcc99 | 2006-02-03 03:04:36 -0800 | [diff] [blame] | 36 | |
| 37 | The type of **_id is int. |
Rusty Russell | fbd59a8 | 2009-01-10 21:58:08 -0800 | [diff] [blame] | 38 | The type of siblings is (const) struct cpumask *. |
Zhang, Yanmin | 69dcc99 | 2006-02-03 03:04:36 -0800 | [diff] [blame] | 39 | |
Ben Hutchings | c50cbb0 | 2008-06-04 21:47:29 -0700 | [diff] [blame] | 40 | To be consistent on all architectures, include/linux/topology.h |
| 41 | provides default definitions for any of the above macros that are |
| 42 | not defined by include/asm-XXX/topology.h: |
| 43 | 1) physical_package_id: -1 |
| 44 | 2) core_id: 0 |
| 45 | 3) thread_siblings: just the given CPU |
| 46 | 4) core_siblings: just the given CPU |
Mike Travis | d62720a | 2008-12-17 14:14:30 -0800 | [diff] [blame] | 47 | |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 48 | Additionally, CPU topology information is provided under |
Mike Travis | d62720a | 2008-12-17 14:14:30 -0800 | [diff] [blame] | 49 | /sys/devices/system/cpu and includes these files. The internal |
| 50 | source for the output is in brackets ("[]"). |
| 51 | |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 52 | kernel_max: the maximum CPU index allowed by the kernel configuration. |
Mike Travis | d62720a | 2008-12-17 14:14:30 -0800 | [diff] [blame] | 53 | [NR_CPUS-1] |
| 54 | |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 55 | offline: CPUs that are not online because they have been |
Mike Travis | d62720a | 2008-12-17 14:14:30 -0800 | [diff] [blame] | 56 | HOTPLUGGED off (see cpu-hotplug.txt) or exceed the limit |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 57 | of CPUs allowed by the kernel configuration (kernel_max |
Mike Travis | d62720a | 2008-12-17 14:14:30 -0800 | [diff] [blame] | 58 | above). [~cpu_online_mask + cpus >= NR_CPUS] |
| 59 | |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 60 | online: CPUs that are online and being scheduled [cpu_online_mask] |
Mike Travis | d62720a | 2008-12-17 14:14:30 -0800 | [diff] [blame] | 61 | |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 62 | possible: CPUs that have been allocated resources and can be |
Mike Travis | d62720a | 2008-12-17 14:14:30 -0800 | [diff] [blame] | 63 | brought online if they are present. [cpu_possible_mask] |
| 64 | |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 65 | present: CPUs that have been identified as being present in the |
Mike Travis | d62720a | 2008-12-17 14:14:30 -0800 | [diff] [blame] | 66 | system. [cpu_present_mask] |
| 67 | |
| 68 | The format for the above output is compatible with cpulist_parse() |
| 69 | [see <linux/cpumask.h>]. Some examples follow. |
| 70 | |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 71 | In this example, there are 64 CPUs in the system but cpus 32-63 exceed |
Mike Travis | d62720a | 2008-12-17 14:14:30 -0800 | [diff] [blame] | 72 | the kernel max which is limited to 0..31 by the NR_CPUS config option |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 73 | being 32. Note also that CPUs 2 and 4-31 are not online but could be |
Mike Travis | d62720a | 2008-12-17 14:14:30 -0800 | [diff] [blame] | 74 | brought online as they are both present and possible. |
| 75 | |
| 76 | kernel_max: 31 |
| 77 | offline: 2,4-31,32-63 |
| 78 | online: 0-1,3 |
| 79 | possible: 0-31 |
| 80 | present: 0-31 |
| 81 | |
| 82 | In this example, the NR_CPUS config option is 128, but the kernel was |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 83 | started with possible_cpus=144. There are 4 CPUs in the system and cpu2 |
| 84 | was manually taken offline (and is the only CPU that can be brought |
Mike Travis | d62720a | 2008-12-17 14:14:30 -0800 | [diff] [blame] | 85 | online.) |
| 86 | |
| 87 | kernel_max: 127 |
| 88 | offline: 2,4-127,128-143 |
| 89 | online: 0-1,3 |
| 90 | possible: 0-127 |
| 91 | present: 0-3 |
| 92 | |
| 93 | See cpu-hotplug.txt for the possible_cpus=NUM kernel start parameter |
Alex Chiang | 663fb2f | 2009-10-21 21:45:31 -0600 | [diff] [blame] | 94 | as well as more information on the various cpumasks. |