mirror of
https://github.com/ARM-software/arm-trusted-firmware.git
synced 2025-08-21 14:31:03 +02:00
Add ModularChip and MCI drivers for A8K SoC family. ModularChip drivers include support for the internal building blocks of Marvell ARMADA SoCs - APN806, APN807 and CP110 Change-Id: I9559343788fa2e5eb47e6384a4a7d47408787c02 Signed-off-by: Hanna Hawa <hannah@marvell.com> Signed-off-by: Konstantin Porotchkin <kostap@marvell.com>
19 lines
372 B
C
19 lines
372 B
C
/*
|
|
* Copyright (C) 2018 Marvell International Ltd.
|
|
*
|
|
* SPDX-License-Identifier: BSD-3-Clause
|
|
* https://spdx.org/licenses
|
|
*/
|
|
|
|
/* MCI bus driver for Marvell ARMADA 8K and 8K+ SoCs */
|
|
|
|
#ifndef _MCI_H_
|
|
#define _MCI_H_
|
|
|
|
int mci_initialize(int mci_index);
|
|
void mci_turn_link_down(void);
|
|
void mci_turn_link_on(void);
|
|
int mci_get_link_status(void);
|
|
|
|
#endif /* _MCI_H_ */
|