percpu.h 5.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __LINUX_PERCPU_H
  3. #define __LINUX_PERCPU_H
  4. #include <linux/mmdebug.h>
  5. #include <linux/preempt.h>
  6. #include <linux/smp.h>
  7. #include <linux/cpumask.h>
  8. #include <linux/printk.h>
  9. #include <linux/pfn.h>
  10. #include <linux/init.h>
  11. #include <asm/percpu.h>
  12. /* enough to cover all DEFINE_PER_CPUs in modules */
  13. #ifdef CONFIG_MODULES
  14. #define PERCPU_MODULE_RESERVE (8 << 10)
  15. #else
  16. #define PERCPU_MODULE_RESERVE 0
  17. #endif
  18. /* minimum unit size, also is the maximum supported allocation size */
  19. #define PCPU_MIN_UNIT_SIZE PFN_ALIGN(32 << 10)
  20. /* minimum allocation size and shift in bytes */
  21. #define PCPU_MIN_ALLOC_SHIFT 2
  22. #define PCPU_MIN_ALLOC_SIZE (1 << PCPU_MIN_ALLOC_SHIFT)
  23. /* number of bits per page, used to trigger a scan if blocks are > PAGE_SIZE */
  24. #define PCPU_BITS_PER_PAGE (PAGE_SIZE >> PCPU_MIN_ALLOC_SHIFT)
  25. /*
  26. * This determines the size of each metadata block. There are several subtle
  27. * constraints around this constant. The reserved region must be a multiple of
  28. * PCPU_BITMAP_BLOCK_SIZE. Additionally, PCPU_BITMAP_BLOCK_SIZE must be a
  29. * multiple of PAGE_SIZE or PAGE_SIZE must be a multiple of
  30. * PCPU_BITMAP_BLOCK_SIZE to align with the populated page map. The unit_size
  31. * also has to be a multiple of PCPU_BITMAP_BLOCK_SIZE to ensure full blocks.
  32. */
  33. #define PCPU_BITMAP_BLOCK_SIZE PAGE_SIZE
  34. #define PCPU_BITMAP_BLOCK_BITS (PCPU_BITMAP_BLOCK_SIZE >> \
  35. PCPU_MIN_ALLOC_SHIFT)
  36. /*
  37. * Percpu allocator can serve percpu allocations before slab is
  38. * initialized which allows slab to depend on the percpu allocator.
  39. * The following two parameters decide how much resource to
  40. * preallocate for this. Keep PERCPU_DYNAMIC_RESERVE equal to or
  41. * larger than PERCPU_DYNAMIC_EARLY_SIZE.
  42. */
  43. #define PERCPU_DYNAMIC_EARLY_SLOTS 128
  44. #define PERCPU_DYNAMIC_EARLY_SIZE (12 << 10)
  45. /*
  46. * PERCPU_DYNAMIC_RESERVE indicates the amount of free area to piggy
  47. * back on the first chunk for dynamic percpu allocation if arch is
  48. * manually allocating and mapping it for faster access (as a part of
  49. * large page mapping for example).
  50. *
  51. * The following values give between one and two pages of free space
  52. * after typical minimal boot (2-way SMP, single disk and NIC) with
  53. * both defconfig and a distro config on x86_64 and 32. More
  54. * intelligent way to determine this would be nice.
  55. */
  56. #if BITS_PER_LONG > 32
  57. #define PERCPU_DYNAMIC_RESERVE (28 << 10)
  58. #else
  59. #define PERCPU_DYNAMIC_RESERVE (20 << 10)
  60. #endif
  61. extern void *pcpu_base_addr;
  62. extern const unsigned long *pcpu_unit_offsets;
  63. struct pcpu_group_info {
  64. int nr_units; /* aligned # of units */
  65. unsigned long base_offset; /* base address offset */
  66. unsigned int *cpu_map; /* unit->cpu map, empty
  67. * entries contain NR_CPUS */
  68. };
  69. struct pcpu_alloc_info {
  70. size_t static_size;
  71. size_t reserved_size;
  72. size_t dyn_size;
  73. size_t unit_size;
  74. size_t atom_size;
  75. size_t alloc_size;
  76. size_t __ai_size; /* internal, don't use */
  77. int nr_groups; /* 0 if grouping unnecessary */
  78. struct pcpu_group_info groups[];
  79. };
  80. enum pcpu_fc {
  81. PCPU_FC_AUTO,
  82. PCPU_FC_EMBED,
  83. PCPU_FC_PAGE,
  84. PCPU_FC_NR,
  85. };
  86. extern const char * const pcpu_fc_names[PCPU_FC_NR];
  87. extern enum pcpu_fc pcpu_chosen_fc;
  88. typedef void * (*pcpu_fc_alloc_fn_t)(unsigned int cpu, size_t size,
  89. size_t align);
  90. typedef void (*pcpu_fc_free_fn_t)(void *ptr, size_t size);
  91. typedef void (*pcpu_fc_populate_pte_fn_t)(unsigned long addr);
  92. typedef int (pcpu_fc_cpu_distance_fn_t)(unsigned int from, unsigned int to);
  93. extern struct pcpu_alloc_info * __init pcpu_alloc_alloc_info(int nr_groups,
  94. int nr_units);
  95. extern void __init pcpu_free_alloc_info(struct pcpu_alloc_info *ai);
  96. extern int __init pcpu_setup_first_chunk(const struct pcpu_alloc_info *ai,
  97. void *base_addr);
  98. #ifdef CONFIG_NEED_PER_CPU_EMBED_FIRST_CHUNK
  99. extern int __init pcpu_embed_first_chunk(size_t reserved_size, size_t dyn_size,
  100. size_t atom_size,
  101. pcpu_fc_cpu_distance_fn_t cpu_distance_fn,
  102. pcpu_fc_alloc_fn_t alloc_fn,
  103. pcpu_fc_free_fn_t free_fn);
  104. #endif
  105. #ifdef CONFIG_NEED_PER_CPU_PAGE_FIRST_CHUNK
  106. extern int __init pcpu_page_first_chunk(size_t reserved_size,
  107. pcpu_fc_alloc_fn_t alloc_fn,
  108. pcpu_fc_free_fn_t free_fn,
  109. pcpu_fc_populate_pte_fn_t populate_pte_fn);
  110. #endif
  111. extern void __percpu *__alloc_reserved_percpu(size_t size, size_t align);
  112. extern bool __is_kernel_percpu_address(unsigned long addr, unsigned long *can_addr);
  113. extern bool is_kernel_percpu_address(unsigned long addr);
  114. #if !defined(CONFIG_SMP) || !defined(CONFIG_HAVE_SETUP_PER_CPU_AREA)
  115. extern void __init setup_per_cpu_areas(void);
  116. #endif
  117. extern void __percpu *__alloc_percpu_gfp(size_t size, size_t align, gfp_t gfp);
  118. extern void __percpu *__alloc_percpu(size_t size, size_t align);
  119. extern void free_percpu(void __percpu *__pdata);
  120. extern phys_addr_t per_cpu_ptr_to_phys(void *addr);
  121. #define alloc_percpu_gfp(type, gfp) \
  122. (typeof(type) __percpu *)__alloc_percpu_gfp(sizeof(type), \
  123. __alignof__(type), gfp)
  124. #define alloc_percpu(type) \
  125. (typeof(type) __percpu *)__alloc_percpu(sizeof(type), \
  126. __alignof__(type))
  127. extern unsigned long pcpu_nr_pages(void);
  128. #endif /* __LINUX_PERCPU_H */