mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-16 01:17:01 +02:00
The LS1043A reference design board (RDB) is a computing, evaluation, and development platform that supports the Layerscape LS1043A architecture processor. The old implementation in tf-a (plat/layerscape/board/ls1043/) is removed, and this patch is adding it back, it is using the unified software component and architecture with all the other Layerscape platforms. Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com> Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com> Signed-off-by: Ruchika Gupta <ruchika.gupta@nxp.com> Change-Id: I83eee2f9254267b148960b05e25b6c9ba86cf07e
17 lines
297 B
C
17 lines
297 B
C
/*
|
|
* Copyright 2018-2021 NXP
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#ifndef POLICY_H
|
|
#define POLICY_H
|
|
|
|
/*
|
|
* Set this to 0x0 to leave the default SMMU page size in sACR
|
|
* Set this to 0x1 to change the SMMU page size to 64K
|
|
*/
|
|
#define POLICY_SMMU_PAGESZ_64K 0x1
|
|
|
|
#endif /* POLICY_H */
|