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

TOMOYO Linux Cross Reference
Linux/arch/x86/include/asm/e820/api.h

Version: ~ [ linux-6.11-rc3 ] ~ [ linux-6.10.4 ] ~ [ linux-6.9.12 ] ~ [ linux-6.8.12 ] ~ [ linux-6.7.12 ] ~ [ linux-6.6.45 ] ~ [ linux-6.5.13 ] ~ [ linux-6.4.16 ] ~ [ linux-6.3.13 ] ~ [ linux-6.2.16 ] ~ [ linux-6.1.104 ] ~ [ linux-6.0.19 ] ~ [ linux-5.19.17 ] ~ [ linux-5.18.19 ] ~ [ linux-5.17.15 ] ~ [ linux-5.16.20 ] ~ [ linux-5.15.164 ] ~ [ linux-5.14.21 ] ~ [ linux-5.13.19 ] ~ [ linux-5.12.19 ] ~ [ linux-5.11.22 ] ~ [ linux-5.10.223 ] ~ [ linux-5.9.16 ] ~ [ linux-5.8.18 ] ~ [ linux-5.7.19 ] ~ [ linux-5.6.19 ] ~ [ linux-5.5.19 ] ~ [ linux-5.4.281 ] ~ [ linux-5.3.18 ] ~ [ linux-5.2.21 ] ~ [ linux-5.1.21 ] ~ [ linux-5.0.21 ] ~ [ linux-4.20.17 ] ~ [ linux-4.19.319 ] ~ [ 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 #ifndef _ASM_E820_API_H
  3 #define _ASM_E820_API_H
  4 
  5 #include <asm/e820/types.h>
  6 
  7 extern struct e820_table *e820_table;
  8 extern struct e820_table *e820_table_kexec;
  9 extern struct e820_table *e820_table_firmware;
 10 
 11 extern unsigned long pci_mem_start;
 12 
 13 extern bool e820__mapped_raw_any(u64 start, u64 end, enum e820_type type);
 14 extern bool e820__mapped_any(u64 start, u64 end, enum e820_type type);
 15 extern bool e820__mapped_all(u64 start, u64 end, enum e820_type type);
 16 
 17 extern void e820__range_add   (u64 start, u64 size, enum e820_type type);
 18 extern u64  e820__range_update(u64 start, u64 size, enum e820_type old_type, enum e820_type new_type);
 19 extern u64  e820__range_remove(u64 start, u64 size, enum e820_type old_type, bool check_type);
 20 extern u64  e820__range_update_table(struct e820_table *t, u64 start, u64 size, enum e820_type old_type, enum e820_type new_type);
 21 
 22 extern void e820__print_table(char *who);
 23 extern int  e820__update_table(struct e820_table *table);
 24 extern void e820__update_table_print(void);
 25 
 26 extern unsigned long e820__end_of_ram_pfn(void);
 27 extern unsigned long e820__end_of_low_ram_pfn(void);
 28 
 29 extern u64  e820__memblock_alloc_reserved(u64 size, u64 align);
 30 extern void e820__memblock_setup(void);
 31 
 32 extern void e820__reserve_setup_data(void);
 33 extern void e820__finish_early_params(void);
 34 extern void e820__reserve_resources(void);
 35 extern void e820__reserve_resources_late(void);
 36 
 37 extern void e820__memory_setup(void);
 38 extern void e820__memory_setup_extended(u64 phys_addr, u32 data_len);
 39 extern char *e820__memory_setup_default(void);
 40 extern void e820__setup_pci_gap(void);
 41 
 42 extern void e820__reallocate_tables(void);
 43 extern void e820__register_nosave_regions(unsigned long limit_pfn);
 44 
 45 extern int  e820__get_entry_type(u64 start, u64 end);
 46 
 47 /*
 48  * Returns true iff the specified range [start,end) is completely contained inside
 49  * the ISA region.
 50  */
 51 static inline bool is_ISA_range(u64 start, u64 end)
 52 {
 53         return start >= ISA_START_ADDRESS && end <= ISA_END_ADDRESS;
 54 }
 55 
 56 #endif /* _ASM_E820_API_H */
 57 

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