percpu.h 4.2 KB

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