blob: 6179e89e2a294a042953b79e3e85f13cfe39e71d [file] [log] [blame]
Yann Gautier9abbd6a2018-10-15 09:36:44 +02001/*
Vyacheslav Yurkovb74313c2021-06-04 10:08:39 +02002 * Copyright (c) 2015-2021, ARM Limited and Contributors. All rights reserved.
Yann Gautier9abbd6a2018-10-15 09:36:44 +02003 *
4 * SPDX-License-Identifier: BSD-3-Clause
5 */
6
7#ifndef IO_MMC_H
8#define IO_MMC_H
9
Antonio Nino Diaze0f90632018-12-14 00:18:21 +000010#include <drivers/io/io_driver.h>
Yann Gautier9abbd6a2018-10-15 09:36:44 +020011
Vyacheslav Yurkovb74313c2021-06-04 10:08:39 +020012struct io_mmc_dev_spec {
13 bool use_boot_part;
14};
15
Yann Gautier9abbd6a2018-10-15 09:36:44 +020016int register_io_dev_mmc(const io_dev_connector_t **dev_con);
17
18#endif /* IO_MMC_H */