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

TOMOYO Linux Cross Reference
Linux/arch/loongarch/include/asm/numa.h

Version: ~ [ linux-6.11.5 ] ~ [ linux-6.10.14 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.58 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.114 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.169 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.228 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.284 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.322 ] ~ [ 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.9 ] ~ [ policy-sample ] ~
Architecture: ~ [ i386 ] ~ [ alpha ] ~ [ m68k ] ~ [ mips ] ~ [ ppc ] ~ [ sparc ] ~ [ sparc64 ] ~

  1 /* SPDX-License-Identifier: GPL-2.0 */
  2 /*
  3  * Author: Jianmin Lv <lvjianmin@loongson.cn>
  4  *         Huacai Chen <chenhuacai@loongson.cn>
  5  *
  6  * Copyright (C) 2020-2022 Loongson Technology Corporation Limited
  7  */
  8 
  9 #ifndef _ASM_LOONGARCH_NUMA_H
 10 #define _ASM_LOONGARCH_NUMA_H
 11 
 12 #include <linux/nodemask.h>
 13 
 14 #define NODE_ADDRSPACE_SHIFT 44
 15 
 16 #define pa_to_nid(addr)         (((addr) & 0xf00000000000) >> NODE_ADDRSPACE_SHIFT)
 17 #define nid_to_addrbase(nid)    (_ULCAST_(nid) << NODE_ADDRSPACE_SHIFT)
 18 
 19 #ifdef CONFIG_NUMA
 20 
 21 extern int numa_off;
 22 extern s16 __cpuid_to_node[CONFIG_NR_CPUS];
 23 extern nodemask_t numa_nodes_parsed __initdata;
 24 
 25 struct numa_memblk {
 26         u64                     start;
 27         u64                     end;
 28         int                     nid;
 29 };
 30 
 31 #define NR_NODE_MEMBLKS         (MAX_NUMNODES*2)
 32 struct numa_meminfo {
 33         int                     nr_blks;
 34         struct numa_memblk      blk[NR_NODE_MEMBLKS];
 35 };
 36 
 37 extern int __init numa_add_memblk(int nodeid, u64 start, u64 end);
 38 
 39 extern void __init early_numa_add_cpu(int cpuid, s16 node);
 40 extern void numa_add_cpu(unsigned int cpu);
 41 extern void numa_remove_cpu(unsigned int cpu);
 42 
 43 static inline void numa_clear_node(int cpu)
 44 {
 45 }
 46 
 47 static inline void set_cpuid_to_node(int cpuid, s16 node)
 48 {
 49         __cpuid_to_node[cpuid] = node;
 50 }
 51 
 52 extern int early_cpu_to_node(int cpu);
 53 
 54 #else
 55 
 56 static inline void early_numa_add_cpu(int cpuid, s16 node)      { }
 57 static inline void numa_add_cpu(unsigned int cpu)               { }
 58 static inline void numa_remove_cpu(unsigned int cpu)            { }
 59 static inline void set_cpuid_to_node(int cpuid, s16 node)       { }
 60 
 61 static inline int early_cpu_to_node(int cpu)
 62 {
 63         return 0;
 64 }
 65 
 66 #endif  /* CONFIG_NUMA */
 67 
 68 #endif  /* _ASM_LOONGARCH_NUMA_H */
 69 

~ [ 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