blob: 789b3b961d65a9033e105404743abb1a7bdd0dbb [file] [log] [blame]
Konstantin Porotchkin01c84d42018-02-26 16:01:57 +02001/*
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
13int mci_initialize(int mci_index);
14void mci_turn_link_down(void);
15void mci_turn_link_on(void);
16int mci_get_link_status(void);
17
18#endif /* _MCI_H_ */