setup.h 1.1 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243
  1. /* SPDX-License-Identifier: GPL-2.0-only */
  2. /*
  3. * linux/include/asm/setup.h
  4. *
  5. * Copyright (C) 1997-1999 Russell King
  6. *
  7. * Structure passed to kernel to tell it about the
  8. * hardware it's running on. See Documentation/arch/arm/setup.rst
  9. * for more info.
  10. */
  11. #ifndef __ASMARM_SETUP_H
  12. #define __ASMARM_SETUP_H
  13. #include <linux/screen_info.h>
  14. #include <uapi/asm/setup.h>
  15. #define __tag __used __section(".taglist.init")
  16. #define __tagtable(tag, fn) \
  17. static const struct tagtable __tagtable_##fn __tag = { tag, fn }
  18. extern int arm_add_memory(u64 start, u64 size);
  19. extern __printf(1, 2) void early_print(const char *str, ...);
  20. extern void dump_machine_table(void);
  21. #ifdef CONFIG_ATAGS_PROC
  22. extern void save_atags(const struct tag *tags);
  23. #else
  24. static inline void save_atags(const struct tag *tags) { }
  25. #endif
  26. struct machine_desc;
  27. void init_default_cache_policy(unsigned long);
  28. void paging_init(const struct machine_desc *desc);
  29. void early_mm_init(const struct machine_desc *);
  30. void adjust_lowmem_bounds(void);
  31. void setup_dma_zone(const struct machine_desc *desc);
  32. #ifdef CONFIG_VGA_CONSOLE
  33. extern struct screen_info vgacon_screen_info;
  34. #endif
  35. #endif