Lines Matching full:package
28 the past a socket always contained a single package (see below), but with the
29 advent of Multi Chip Modules (MCM) a socket can hold more than one package. So
39 Package chapter
44 Modern systems may also use the term 'Die' for package.
46 AMD nomenclature for package is 'Node'.
48 Package-related topology information in the kernel:
52 The number of threads in a package.
56 The number of cores in a package.
60 The maximum number of dies in a package.
68 The physical ID of the package. This information is retrieved via CPUID
69 and deduced from the APIC IDs of the cores in the package.
76 The logical ID of the package. As we do not trust BIOSes to enumerate the
77 packages in a consistent way, we introduced the concept of logical package
84 package facilities to preallocate per package information.
115 The cpumask contains all online threads in the package to which a thread
127 The logical package ID to which a thread belongs.
131 The physical package ID to which a thread belongs.
204 CPUs on the package is detected using the Size Identifier leaf
215 `ECX[7:0]` which describes the `number of threads - 1` on the package.
312 The APIC ID and Package information is computed using the data from
318 The mask and shifts to derive the Physical Package (socket) ID is
320 processors in this physical package` from `EBX[23:16]` of CPUID leaf
345 1) Single Package, Single Core::
347 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
349 2) Single Package, Dual Core
353 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
358 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
365 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
377 4) Dual Package, Dual Core
381 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
384 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2
389 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
394 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 4
401 [package 0] -> [core 0] -> [thread 0] -> Linux CPU 0
406 [package 1] -> [core 0] -> [thread 0] -> Linux CPU 2