boot.h 214 B

1234567891011121314
  1. #ifndef __ASM_BOOT_H
  2. #define __ASM_BOOT_H
  3. #include <asm/sizes.h>
  4. /*
  5. * arm64 requires the DTB to be 8 byte aligned and
  6. * not exceed 2MB in size.
  7. */
  8. #define MIN_FDT_ALIGN 8
  9. #define MAX_FDT_SIZE SZ_2M
  10. #endif