blob: af5d6206612313823a9cce0bb3011daac152a8b4 [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
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000010#ifndef MCI_H
11#define MCI_H
Konstantin Porotchkin01c84d42018-02-26 16:01:57 +020012
Grzegorz Jaszczyk106eb822019-02-07 15:15:14 +010013int mci_link_tune(int mci_index);
Konstantin Porotchkin01c84d42018-02-26 16:01:57 +020014void mci_turn_link_down(void);
15void mci_turn_link_on(void);
16int mci_get_link_status(void);
17
Antonio Nino Diaz5eb88372018-11-08 10:20:19 +000018#endif /* MCI_H */