mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/next/linux-next.git
synced 2024-12-29 09:12:07 +00:00
991f5c4dd2
Add support for sdhci-edshc mmc controller. Signed-off-by: Angelo Dureghello <angelo.dureghello@timesys.com> Acked-by: Greg Ungerer <gerg@linux-m68k.org> Link: https://lore.kernel.org/r/20200518191742.1251440-1-angelo.dureghello@timesys.com Signed-off-by: Ulf Hansson <ulf.hansson@linaro.org>
18 lines
447 B
C
18 lines
447 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef __LINUX_PLATFORM_DATA_MCF_ESDHC_H__
|
|
#define __LINUX_PLATFORM_DATA_MCF_ESDHC_H__
|
|
|
|
enum cd_types {
|
|
ESDHC_CD_NONE, /* no CD, neither controller nor gpio */
|
|
ESDHC_CD_CONTROLLER, /* mmc controller internal CD */
|
|
ESDHC_CD_PERMANENT, /* no CD, card permanently wired to host */
|
|
};
|
|
|
|
struct mcf_esdhc_platform_data {
|
|
int max_bus_width;
|
|
int cd_type;
|
|
};
|
|
|
|
#endif /* __LINUX_PLATFORM_DATA_MCF_ESDHC_H__ */
|