mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-17 09:57:01 +02:00
The LS1046A reference design board (RDB) is a high-performance computing, evaluation, and development platform that supports the Layerscape LS1046A architecture processor. Signed-off-by: Jiafei Pan <Jiafei.Pan@nxp.com> Signed-off-by: York Sun <york.sun@nxp.com> Signed-off-by: Pankaj Gupta <pankaj.gupta@nxp.com> Change-Id: Ib7a01b309e0b0acc7f38e22b138e9e181dff244a
17 lines
292 B
C
17 lines
292 B
C
/*
|
|
* Copyright 2022 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 */
|