mirror of
https://github.com/CTCaer/switch-l4t-atf.git
synced 2024-12-01 05:40:27 +00:00
09d40e0e08
Enforce full include path for includes. Deprecate old paths. The following folders inside include/lib have been left unchanged: - include/lib/cpus/${ARCH} - include/lib/el3_runtime/${ARCH} The reason for this change is that having a global namespace for includes isn't a good idea. It defeats one of the advantages of having folders and it introduces problems that are sometimes subtle (because you may not know the header you are actually including if there are two of them). For example, this patch had to be created because two headers were called the same way:e0ea0928d5
("Fix gpio includes of mt8173 platform to avoid collision."). More recently, this patch has had similar problems:46f9b2c3a2
("drivers: add tzc380 support"). This problem was introduced in commit4ecca33988
("Move include and source files to logical locations"). At that time, there weren't too many headers so it wasn't a real issue. However, time has shown that this creates problems. Platforms that want to preserve the way they include headers may add the removed paths to PLAT_INCLUDES, but this is discouraged. Change-Id: I39dc53ed98f9e297a5966e723d1936d6ccf2fc8f Signed-off-by: Antonio Nino Diaz <antonio.ninodiaz@arm.com>
58 lines
1.6 KiB
C
58 lines
1.6 KiB
C
/*
|
|
* Copyright (c) 2018, ARM Limited and Contributors. All rights reserved.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
*/
|
|
|
|
#include <lib/mmio.h>
|
|
#include <lib/utils_def.h>
|
|
|
|
#include <imx_aips.h>
|
|
#include <imx_regs.h>
|
|
|
|
static void imx_aips_set_default_access(struct aipstz_regs *aips_regs)
|
|
{
|
|
int i;
|
|
uintptr_t addr;
|
|
|
|
/*
|
|
* See section 4.7.7.1 AIPSTZ_MPR field descriptions
|
|
* i.MX 7Solo Applications Processor Reference Manual, Rev. 0.1, 08/2016
|
|
* 0111 ->
|
|
* 0: Write Access from master not buffered
|
|
* 1: Master is trusted for read access
|
|
* 1: Master is trsuted for write access
|
|
* 1: Access from master is not forced to user mode
|
|
*/
|
|
addr = (uintptr_t)&aips_regs->aipstz_mpr;
|
|
mmio_write_32(addr, 0x77777777);
|
|
|
|
/*
|
|
* Helpfully the OPACR registers have the logical inversion of the above
|
|
* See section 4.7.7.1 AIPSTZ_MPR field descriptions
|
|
* i.MX 7Solo Applications Processor Reference Manual, Rev. 0.1, 08/2016
|
|
* 0000 ->
|
|
* 0: Write Access to the peripheral is not buffered by AIPSTZ
|
|
* 0: The peripheral does not require supervisor priv to access
|
|
* 0: Master is trsuted for write access
|
|
* 0: Access from master is not forced to user mode
|
|
*/
|
|
for (i = 0; i < AIPSTZ_OAPCR_COUNT; i++) {
|
|
addr = (uintptr_t)&aips_regs->aipstz_opacr[i];
|
|
mmio_write_32(addr, 0x00000000);
|
|
}
|
|
}
|
|
|
|
void imx_aips_init(void)
|
|
{
|
|
int i;
|
|
struct aipstz_regs *aips_regs[] = {
|
|
(struct aipstz_regs *)(AIPS1_BASE + AIPSTZ_CONFIG_OFFSET),
|
|
(struct aipstz_regs *)(AIPS2_BASE + AIPSTZ_CONFIG_OFFSET),
|
|
(struct aipstz_regs *)(AIPS3_BASE + AIPSTZ_CONFIG_OFFSET),
|
|
};
|
|
|
|
for (i = 0; i < ARRAY_SIZE(aips_regs); i++)
|
|
imx_aips_set_default_access(aips_regs[i]);
|
|
}
|