1 /* SPDX-License-Identifier: GPL-2.0+ */ 2 /* 3 * Copyright (c) 2019 Marcel Ziswiler <marcel.ziswiler@toradex.com> 4 */ 5 6 #ifndef __PXA_MMC_GEN_H 7 #define __PXA_MMC_GEN_H 8 9 #include <mmc.h> 10 11 /* 12 * struct pxa_mmc_plat - information about a PXA MMC controller 13 * 14 * @base: MMC controller base register address 15 */ 16 struct pxa_mmc_plat { 17 struct mmc_config cfg; 18 struct mmc mmc; 19 struct pxa_mmc_regs *base; 20 }; 21 22 #endif /* __PXA_MMC_GEN_H */ 23