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 struct mxc_weimcs {
12 	u32 upper;
13 	u32 lower;
14 	u32 additional;
15 };
16 
17 void mxc_setup_weimcs(int cs, const struct mxc_weimcs *weimcs);
18 int mxc_mmc_init(bd_t *bis);
19 u32 get_cpu_rev(void);
20 #endif
21