blob: 6a7063976ceaa01fe32418f50a60861a29b2d52d [file] [log] [blame]
Paul Burtonda61fa52013-09-09 15:30:26 +01001/*
2 * Copyright 2008,2010 Freescale Semiconductor, Inc
3 * Andy Fleming
4 *
5 * Based (loosely) on the Linux code
6 *
7 * SPDX-License-Identifier: GPL-2.0+
8 */
9
10#ifndef _MMC_PRIVATE_H_
11#define _MMC_PRIVATE_H_
12
13#include <mmc.h>
14
15extern int mmc_send_cmd(struct mmc *mmc, struct mmc_cmd *cmd,
16 struct mmc_data *data);
17extern int mmc_send_status(struct mmc *mmc, int timeout);
18extern int mmc_set_blocklen(struct mmc *mmc, int len);
Yangbo Lu5a8dbdc2015-04-22 13:57:00 +080019#ifdef CONFIG_FSL_ESDHC_ADAPTER_IDENT
20void mmc_adapter_card_type_ident(void);
21#endif
Paul Burtonda61fa52013-09-09 15:30:26 +010022
23#ifndef CONFIG_SPL_BUILD
24
Stephen Warren7c4213f2015-12-07 11:38:48 -070025unsigned long mmc_berase(block_dev_desc_t *block_dev, lbaint_t start,
26 lbaint_t blkcnt);
Paul Burtonda61fa52013-09-09 15:30:26 +010027
Stephen Warren7c4213f2015-12-07 11:38:48 -070028unsigned long mmc_bwrite(block_dev_desc_t *block_dev, lbaint_t start,
29 lbaint_t blkcnt, const void *src);
Paul Burtonda61fa52013-09-09 15:30:26 +010030
31#else /* CONFIG_SPL_BUILD */
32
33/* SPL will never write or erase, declare dummies to reduce code size. */
34
Stephen Warren7c4213f2015-12-07 11:38:48 -070035static inline unsigned long mmc_berase(block_dev_desc_t *block_dev,
36 lbaint_t start, lbaint_t blkcnt)
Paul Burtonda61fa52013-09-09 15:30:26 +010037{
38 return 0;
39}
40
Stephen Warren7c4213f2015-12-07 11:38:48 -070041static inline ulong mmc_bwrite(block_dev_desc_t *block_dev, lbaint_t start,
42 lbaint_t blkcnt, const void *src)
Paul Burtonda61fa52013-09-09 15:30:26 +010043{
44 return 0;
45}
46
47#endif /* CONFIG_SPL_BUILD */
48
49#endif /* _MMC_PRIVATE_H_ */