xref: /rk3399_ARM-atf/include/drivers/marvell/mci.h (revision 0a6e7e3b76fa0e6aea6a40c69ad7d4ea8be720d8)
1 /*
2  * Copyright (C) 2018 Marvell International Ltd.
3  *
4  * SPDX-License-Identifier:     BSD-3-Clause
5  * https://spdx.org/licenses
6  */
7 
8 /* MCI bus driver for Marvell ARMADA 8K and 8K+ SoCs */
9 
10 #ifndef MCI_H
11 #define MCI_H
12 
13 int mci_initialize(int mci_index);
14 void mci_turn_link_down(void);
15 void mci_turn_link_on(void);
16 int mci_get_link_status(void);
17 
18 #endif /* MCI_H */
19