config.h 480 B

1234567891011121314151617181920212223
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * Copyright (C) 2009 Tensilica Inc.
  4. * Copyright (C) 2014 - 2016 Cadence Design Systems Inc.
  5. */
  6. #ifndef _ASM_CONFIG_H_
  7. #define _ASM_CONFIG_H_
  8. #include <asm/arch/core.h>
  9. #define CONFIG_LMB
  10. /*
  11. * Make boot parameters available in the MMUv2 virtual memory layout by
  12. * restricting used physical memory to the first 128MB.
  13. */
  14. #if XCHAL_HAVE_PTP_MMU
  15. #define CONFIG_VERY_BIG_RAM
  16. #define CONFIG_MAX_MEM_MAPPED (128 << 20)
  17. #endif
  18. #endif