aboutsummaryrefslogtreecommitdiff
path: root/include/drivers/synopsys/dw_mmc.h
blob: 533a876fc402807fa1346031ea810ba4fa100a17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
/*
 * Copyright (c) 2016-2017, ARM Limited and Contributors. All rights reserved.
 *
 * SPDX-License-Identifier: BSD-3-Clause
 */

#ifndef DW_MMC_H
#define DW_MMC_H

#include <mmc.h>

typedef struct dw_mmc_params {
	uintptr_t	reg_base;
	uintptr_t	desc_base;
	size_t		desc_size;
	int		clk_rate;
	int		bus_width;
	unsigned int	flags;
} dw_mmc_params_t;

void dw_mmc_init(dw_mmc_params_t *params, struct mmc_device_info *info);

#endif /* DW_MMC_H */