1 /* 2 * (C) Copyright 2011 3 * Helmut Raiger, HALE electronic GmbH, helmut.raiger@hale.at 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #ifndef _MX31_SYS_PROTO_H_ 9 #define _MX31_SYS_PROTO_H_ 10 11 #include <asm/imx-common/sys_proto.h> 12 13 struct mxc_weimcs { 14 u32 upper; 15 u32 lower; 16 u32 additional; 17 }; 18 19 void mxc_setup_weimcs(int cs, const struct mxc_weimcs *weimcs); 20 int mxc_mmc_init(bd_t *bis); 21 #endif 22