early_ioremap.h 1.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142
  1. #ifndef _ASM_EARLY_IOREMAP_H_
  2. #define _ASM_EARLY_IOREMAP_H_
  3. #include <linux/types.h>
  4. /*
  5. * early_ioremap() and early_iounmap() are for temporary early boot-time
  6. * mappings, before the real ioremap() is functional.
  7. */
  8. extern void __iomem *early_ioremap(resource_size_t phys_addr,
  9. unsigned long size);
  10. extern void *early_memremap(resource_size_t phys_addr,
  11. unsigned long size);
  12. extern void early_iounmap(void __iomem *addr, unsigned long size);
  13. extern void early_memunmap(void *addr, unsigned long size);
  14. /*
  15. * Weak function called by early_ioremap_reset(). It does nothing, but
  16. * architectures may provide their own version to do any needed cleanups.
  17. */
  18. extern void early_ioremap_shutdown(void);
  19. #if defined(CONFIG_GENERIC_EARLY_IOREMAP) && defined(CONFIG_MMU)
  20. /* Arch-specific initialization */
  21. extern void early_ioremap_init(void);
  22. /* Generic initialization called by architecture code */
  23. extern void early_ioremap_setup(void);
  24. /*
  25. * Called as last step in paging_init() so library can act
  26. * accordingly for subsequent map/unmap requests.
  27. */
  28. extern void early_ioremap_reset(void);
  29. #else
  30. static inline void early_ioremap_init(void) { }
  31. static inline void early_ioremap_setup(void) { }
  32. static inline void early_ioremap_reset(void) { }
  33. #endif
  34. #endif /* _ASM_EARLY_IOREMAP_H_ */