mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-05-08 10:08:47 +00:00

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>
55 lines
1.5 KiB
C
55 lines
1.5 KiB
C
/*
|
|
* Copyright (C) 2018 Marvell International Ltd.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
* https://spdx.org/licenses
|
|
*/
|
|
|
|
/* CP110 Marvell SoC driver */
|
|
|
|
#ifndef CP110_SETUP_H
|
|
#define CP110_SETUP_H
|
|
|
|
#include <lib/mmio.h>
|
|
|
|
#include <mvebu_def.h>
|
|
|
|
#define MVEBU_DEVICE_ID_REG (MVEBU_CP_DFX_OFFSET + 0x40)
|
|
#define MVEBU_DEVICE_ID_OFFSET (0)
|
|
#define MVEBU_DEVICE_ID_MASK (0xffff << MVEBU_DEVICE_ID_OFFSET)
|
|
#define MVEBU_DEVICE_REV_OFFSET (16)
|
|
#define MVEBU_DEVICE_REV_MASK (0xf << MVEBU_DEVICE_REV_OFFSET)
|
|
#define MVEBU_70X0_DEV_ID (0x7040)
|
|
#define MVEBU_70X0_CP115_DEV_ID (0x7045)
|
|
#define MVEBU_3900_DEV_ID (0x6025)
|
|
#define MVEBU_80X0_DEV_ID (0x8040)
|
|
#define MVEBU_80X0_CP115_DEV_ID (0x8045)
|
|
#define MVEBU_CP110_SA_DEV_ID (0x110)
|
|
#define MVEBU_CP110_REF_ID_A1 1
|
|
#define MVEBU_CP110_REF_ID_A2 2
|
|
#define MAX_STREAM_ID_PER_CP (0x10)
|
|
#define STREAM_ID_BASE (0x40)
|
|
|
|
static inline uint32_t cp110_device_id_get(uintptr_t base)
|
|
{
|
|
/* Returns:
|
|
* - MVEBU_70X0_DEV_ID for A70X0 family
|
|
* - MVEBU_80X0_DEV_ID for A80X0 family
|
|
* - MVEBU_CP110_SA_DEV_ID for CP that connected stand alone
|
|
*/
|
|
return (mmio_read_32(base + MVEBU_DEVICE_ID_REG) >>
|
|
MVEBU_DEVICE_ID_OFFSET) &
|
|
MVEBU_DEVICE_ID_MASK;
|
|
}
|
|
|
|
static inline uint32_t cp110_rev_id_get(uintptr_t base)
|
|
{
|
|
return (mmio_read_32(base + MVEBU_DEVICE_ID_REG) &
|
|
MVEBU_DEVICE_REV_MASK) >>
|
|
MVEBU_DEVICE_REV_OFFSET;
|
|
}
|
|
|
|
void cp110_init(uintptr_t cp110_base, uint32_t stream_id);
|
|
void cp110_ble_init(uintptr_t cp110_base);
|
|
|
|
#endif /* CP110_SETUP_H */
|