sparsemem.h 341 B

1234567891011121314
  1. #ifndef _MIPS_SPARSEMEM_H
  2. #define _MIPS_SPARSEMEM_H
  3. #ifdef CONFIG_SPARSEMEM
  4. /*
  5. * SECTION_SIZE_BITS 2^N: how big each section will be
  6. * MAX_PHYSMEM_BITS 2^N: how much memory we can have in that space
  7. */
  8. #define SECTION_SIZE_BITS 28
  9. #define MAX_PHYSMEM_BITS 35
  10. #endif /* CONFIG_SPARSEMEM */
  11. #endif /* _MIPS_SPARSEMEM_H */