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