~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

TOMOYO Linux Cross Reference
Linux/arch/x86/kernel/cpu/topology.h

Version: ~ [ linux-6.12-rc7 ] ~ [ linux-6.11.7 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.60 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.116 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.171 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.229 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.285 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.323 ] ~ [ linux-4.18.20 ] ~ [ linux-4.17.19 ] ~ [ linux-4.16.18 ] ~ [ linux-4.15.18 ] ~ [ linux-4.14.336 ] ~ [ linux-4.13.16 ] ~ [ linux-4.12.14 ] ~ [ linux-4.11.12 ] ~ [ linux-4.10.17 ] ~ [ linux-4.9.337 ] ~ [ linux-4.4.302 ] ~ [ linux-3.10.108 ] ~ [ linux-2.6.32.71 ] ~ [ linux-2.6.0 ] ~ [ linux-2.4.37.11 ] ~ [ unix-v6-master ] ~ [ ccs-tools-1.8.12 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 #ifndef ARCH_X86_TOPOLOGY_H
  3 #define ARCH_X86_TOPOLOGY_H
  4 
  5 struct topo_scan {
  6         struct cpuinfo_x86      *c;
  7         unsigned int            dom_shifts[TOPO_MAX_DOMAIN];
  8         unsigned int            dom_ncpus[TOPO_MAX_DOMAIN];
  9 
 10         /* Legacy CPUID[1]:EBX[23:16] number of logical processors */
 11         unsigned int            ebx1_nproc_shift;
 12 
 13         /* AMD specific node ID which cannot be mapped into APIC space. */
 14         u16                     amd_nodes_per_pkg;
 15         u16                     amd_node_id;
 16 };
 17 
 18 void cpu_init_topology(struct cpuinfo_x86 *c);
 19 void cpu_parse_topology(struct cpuinfo_x86 *c);
 20 void topology_set_dom(struct topo_scan *tscan, enum x86_topology_domains dom,
 21                       unsigned int shift, unsigned int ncpus);
 22 bool cpu_parse_topology_ext(struct topo_scan *tscan);
 23 void cpu_parse_topology_amd(struct topo_scan *tscan);
 24 void cpu_topology_fixup_amd(struct topo_scan *tscan);
 25 
 26 static inline u32 topo_shift_apicid(u32 apicid, enum x86_topology_domains dom)
 27 {
 28         if (dom == TOPO_SMT_DOMAIN)
 29                 return apicid;
 30         return apicid >> x86_topo_system.dom_shifts[dom - 1];
 31 }
 32 
 33 static inline u32 topo_relative_domain_id(u32 apicid, enum x86_topology_domains dom)
 34 {
 35         if (dom != TOPO_SMT_DOMAIN)
 36                 apicid >>= x86_topo_system.dom_shifts[dom - 1];
 37         return apicid & (x86_topo_system.dom_size[dom] - 1);
 38 }
 39 
 40 static inline u32 topo_domain_mask(enum x86_topology_domains dom)
 41 {
 42         return (1U << x86_topo_system.dom_shifts[dom]) - 1;
 43 }
 44 
 45 /*
 46  * Update a domain level after the fact without propagating. Used to fixup
 47  * broken CPUID enumerations.
 48  */
 49 static inline void topology_update_dom(struct topo_scan *tscan, enum x86_topology_domains dom,
 50                                        unsigned int shift, unsigned int ncpus)
 51 {
 52         tscan->dom_shifts[dom] = shift;
 53         tscan->dom_ncpus[dom] = ncpus;
 54 }
 55 
 56 #ifdef CONFIG_X86_LOCAL_APIC
 57 unsigned int topology_unit_count(u32 apicid, enum x86_topology_domains which_units,
 58                                  enum x86_topology_domains at_level);
 59 #else
 60 static inline unsigned int topology_unit_count(u32 apicid, enum x86_topology_domains which_units,
 61                                                enum x86_topology_domains at_level)
 62 {
 63         return 1;
 64 }
 65 #endif
 66 
 67 #endif /* ARCH_X86_TOPOLOGY_H */
 68 

~ [ source navigation ] ~ [ diff markup ] ~ [ identifier search ] ~

kernel.org | git.kernel.org | LWN.net | Project Home | SVN repository | Mail admin

Linux® is a registered trademark of Linus Torvalds in the United States and other countries.
TOMOYO® is a registered trademark of NTT DATA CORPORATION.

sflogo.php