Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | /* SPDX-License-Identifier: GPL-2.0+ */ |
Chris Zankel | c978b52 | 2016-08-10 18:36:44 +0300 | [diff] [blame] | 2 | /* |
| 3 | * Copyright (C) 2009 Tensilica Inc. |
| 4 | * Copyright (C) 2014 - 2016 Cadence Design Systems Inc. |
Chris Zankel | c978b52 | 2016-08-10 18:36:44 +0300 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #ifndef _ASM_CONFIG_H_ |
| 8 | #define _ASM_CONFIG_H_ |
| 9 | |
| 10 | #include <asm/arch/core.h> |
| 11 | |
Chris Zankel | c978b52 | 2016-08-10 18:36:44 +0300 | [diff] [blame] | 12 | /* |
| 13 | * Make boot parameters available in the MMUv2 virtual memory layout by |
| 14 | * restricting used physical memory to the first 128MB. |
| 15 | */ |
| 16 | #if XCHAL_HAVE_PTP_MMU |
Tom Rini | 1d457db | 2022-12-04 10:04:50 -0500 | [diff] [blame] | 17 | #define CFG_MAX_MEM_MAPPED (128 << 20) |
Chris Zankel | c978b52 | 2016-08-10 18:36:44 +0300 | [diff] [blame] | 18 | #endif |
| 19 | |
| 20 | #endif |