blob: b0dfcba586c4f9b89dc88c0406565fb612679deb [file] [log] [blame]
Helmut Raiger035929c2011-09-29 05:45:03 +00001/*
2 * (C) Copyright 2011
3 * Helmut Raiger, HALE electronic GmbH, helmut.raiger@hale.at
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Helmut Raiger035929c2011-09-29 05:45:03 +00006 */
7
8#ifndef _SYS_PROTO_H_
9#define _SYS_PROTO_H_
10
11struct mxc_weimcs {
12 u32 upper;
13 u32 lower;
14 u32 additional;
15};
16
17void mxc_setup_weimcs(int cs, const struct mxc_weimcs *weimcs);
Helmut Raiger64c316d2012-01-11 03:59:22 +000018int mxc_mmc_init(bd_t *bis);
Helmut Raiger8deec392012-02-15 22:40:12 +000019u32 get_cpu_rev(void);
Helmut Raiger035929c2011-09-29 05:45:03 +000020#endif