]>
Commit | Line | Data |
---|---|---|
e8cb6f1e MCC |
1 | =========================================== |
2 | How CPU topology info is exported via sysfs | |
3 | =========================================== | |
69dcc991 | 4 | |
663fb2fc | 5 | Export CPU topology info via sysfs. Items (attributes) are similar |
54a53694 | 6 | to /proc/cpuinfo output of some architectures: |
69dcc991 ZY |
7 | |
8 | 1) /sys/devices/system/cpu/cpuX/topology/physical_package_id: | |
663fb2fc AC |
9 | |
10 | physical package id of cpuX. Typically corresponds to a physical | |
11 | socket number, but the actual value is architecture and platform | |
12 | dependent. | |
13 | ||
69dcc991 | 14 | 2) /sys/devices/system/cpu/cpuX/topology/core_id: |
663fb2fc AC |
15 | |
16 | the CPU core ID of cpuX. Typically it is the hardware platform's | |
17 | identifier (rather than the kernel's). The actual value is | |
18 | architecture and platform dependent. | |
19 | ||
b40d8ed4 HC |
20 | 3) /sys/devices/system/cpu/cpuX/topology/book_id: |
21 | ||
22 | the book ID of cpuX. Typically it is the hardware platform's | |
23 | identifier (rather than the kernel's). The actual value is | |
24 | architecture and platform dependent. | |
25 | ||
a62247e1 HC |
26 | 4) /sys/devices/system/cpu/cpuX/topology/drawer_id: |
27 | ||
28 | the drawer ID of cpuX. Typically it is the hardware platform's | |
29 | identifier (rather than the kernel's). The actual value is | |
30 | architecture and platform dependent. | |
31 | ||
32 | 5) /sys/devices/system/cpu/cpuX/topology/thread_siblings: | |
663fb2fc | 33 | |
f8ea61e6 | 34 | internal kernel map of cpuX's hardware threads within the same |
54a53694 | 35 | core as cpuX. |
663fb2fc | 36 | |
a62247e1 | 37 | 6) /sys/devices/system/cpu/cpuX/topology/thread_siblings_list: |
54a53694 BG |
38 | |
39 | human-readable list of cpuX's hardware threads within the same | |
40 | core as cpuX. | |
41 | ||
a62247e1 | 42 | 7) /sys/devices/system/cpu/cpuX/topology/core_siblings: |
663fb2fc AC |
43 | |
44 | internal kernel map of cpuX's hardware threads within the same | |
45 | physical_package_id. | |
69dcc991 | 46 | |
a62247e1 | 47 | 8) /sys/devices/system/cpu/cpuX/topology/core_siblings_list: |
54a53694 BG |
48 | |
49 | human-readable list of cpuX's hardware threads within the same | |
50 | physical_package_id. | |
51 | ||
a62247e1 | 52 | 9) /sys/devices/system/cpu/cpuX/topology/book_siblings: |
b40d8ed4 HC |
53 | |
54 | internal kernel map of cpuX's hardware threads within the same | |
55 | book_id. | |
56 | ||
a62247e1 | 57 | 10) /sys/devices/system/cpu/cpuX/topology/book_siblings_list: |
54a53694 BG |
58 | |
59 | human-readable list of cpuX's hardware threads within the same | |
60 | book_id. | |
61 | ||
a62247e1 HC |
62 | 11) /sys/devices/system/cpu/cpuX/topology/drawer_siblings: |
63 | ||
64 | internal kernel map of cpuX's hardware threads within the same | |
65 | drawer_id. | |
66 | ||
67 | 12) /sys/devices/system/cpu/cpuX/topology/drawer_siblings_list: | |
68 | ||
69 | human-readable list of cpuX's hardware threads within the same | |
70 | drawer_id. | |
71 | ||
69dcc991 | 72 | To implement it in an architecture-neutral way, a new source file, |
a62247e1 HC |
73 | drivers/base/topology.c, is to export the 6 to 12 attributes. The book |
74 | and drawer related sysfs files will only be created if CONFIG_SCHED_BOOK | |
75 | and CONFIG_SCHED_DRAWER are selected. | |
76 | ||
77 | CONFIG_SCHED_BOOK and CONFIG_DRAWER are currently only used on s390, where | |
78 | they reflect the cpu and cache hierarchy. | |
69dcc991 | 79 | |
c50cbb05 | 80 | For an architecture to support this feature, it must define some of |
e8cb6f1e MCC |
81 | these macros in include/asm-XXX/topology.h:: |
82 | ||
83 | #define topology_physical_package_id(cpu) | |
84 | #define topology_core_id(cpu) | |
85 | #define topology_book_id(cpu) | |
86 | #define topology_drawer_id(cpu) | |
87 | #define topology_sibling_cpumask(cpu) | |
88 | #define topology_core_cpumask(cpu) | |
89 | #define topology_book_cpumask(cpu) | |
90 | #define topology_drawer_cpumask(cpu) | |
91 | ||
92 | The type of ``**_id macros`` is int. | |
93 | The type of ``**_cpumask macros`` is ``(const) struct cpumask *``. The latter | |
94 | correspond with appropriate ``**_siblings`` sysfs attributes (except for | |
54a53694 | 95 | topology_sibling_cpumask() which corresponds with thread_siblings). |
69dcc991 | 96 | |
c50cbb05 BH |
97 | To be consistent on all architectures, include/linux/topology.h |
98 | provides default definitions for any of the above macros that are | |
99 | not defined by include/asm-XXX/topology.h: | |
e8cb6f1e | 100 | |
c50cbb05 BH |
101 | 1) physical_package_id: -1 |
102 | 2) core_id: 0 | |
54a53694 BG |
103 | 3) sibling_cpumask: just the given CPU |
104 | 4) core_cpumask: just the given CPU | |
d62720ad | 105 | |
b40d8ed4 HC |
106 | For architectures that don't support books (CONFIG_SCHED_BOOK) there are no |
107 | default definitions for topology_book_id() and topology_book_cpumask(). | |
9bb0e9cb | 108 | For architectures that don't support drawers (CONFIG_SCHED_DRAWER) there are |
a62247e1 | 109 | no default definitions for topology_drawer_id() and topology_drawer_cpumask(). |
b40d8ed4 | 110 | |
663fb2fc | 111 | Additionally, CPU topology information is provided under |
d62720ad MT |
112 | /sys/devices/system/cpu and includes these files. The internal |
113 | source for the output is in brackets ("[]"). | |
114 | ||
e8cb6f1e | 115 | =========== ========================================================== |
663fb2fc | 116 | kernel_max: the maximum CPU index allowed by the kernel configuration. |
d62720ad MT |
117 | [NR_CPUS-1] |
118 | ||
663fb2fc | 119 | offline: CPUs that are not online because they have been |
d62720ad | 120 | HOTPLUGGED off (see cpu-hotplug.txt) or exceed the limit |
663fb2fc | 121 | of CPUs allowed by the kernel configuration (kernel_max |
d62720ad MT |
122 | above). [~cpu_online_mask + cpus >= NR_CPUS] |
123 | ||
663fb2fc | 124 | online: CPUs that are online and being scheduled [cpu_online_mask] |
d62720ad | 125 | |
663fb2fc | 126 | possible: CPUs that have been allocated resources and can be |
d62720ad MT |
127 | brought online if they are present. [cpu_possible_mask] |
128 | ||
663fb2fc | 129 | present: CPUs that have been identified as being present in the |
d62720ad | 130 | system. [cpu_present_mask] |
e8cb6f1e | 131 | =========== ========================================================== |
d62720ad MT |
132 | |
133 | The format for the above output is compatible with cpulist_parse() | |
134 | [see <linux/cpumask.h>]. Some examples follow. | |
135 | ||
663fb2fc | 136 | In this example, there are 64 CPUs in the system but cpus 32-63 exceed |
d62720ad | 137 | the kernel max which is limited to 0..31 by the NR_CPUS config option |
663fb2fc | 138 | being 32. Note also that CPUs 2 and 4-31 are not online but could be |
e8cb6f1e | 139 | brought online as they are both present and possible:: |
d62720ad MT |
140 | |
141 | kernel_max: 31 | |
142 | offline: 2,4-31,32-63 | |
143 | online: 0-1,3 | |
144 | possible: 0-31 | |
145 | present: 0-31 | |
146 | ||
147 | In this example, the NR_CPUS config option is 128, but the kernel was | |
663fb2fc AC |
148 | started with possible_cpus=144. There are 4 CPUs in the system and cpu2 |
149 | was manually taken offline (and is the only CPU that can be brought | |
e8cb6f1e | 150 | online.):: |
d62720ad MT |
151 | |
152 | kernel_max: 127 | |
153 | offline: 2,4-127,128-143 | |
154 | online: 0-1,3 | |
155 | possible: 0-127 | |
156 | present: 0-3 | |
157 | ||
158 | See cpu-hotplug.txt for the possible_cpus=NUM kernel start parameter | |
663fb2fc | 159 | as well as more information on the various cpumasks. |