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 _SYS_PROTO_H_ 9 #define _SYS_PROTO_H_ 10 11 #include "../arch-imx/cpu.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 u32 get_cpu_rev(void); 22 #endif 23