2018-05-06 21:58:06 +00:00
|
|
|
/* SPDX-License-Identifier: GPL-2.0+ */
|
2011-11-08 23:18:21 +00:00
|
|
|
/*
|
|
|
|
* Freescale i.MX28 SPL functions
|
|
|
|
*
|
|
|
|
* Copyright (C) 2011 Marek Vasut <marek.vasut@gmail.com>
|
|
|
|
* on behalf of DENX Software Engineering GmbH
|
|
|
|
*/
|
|
|
|
|
|
|
|
#ifndef __M28_INIT_H__
|
|
|
|
#define __M28_INIT_H__
|
|
|
|
|
|
|
|
void early_delay(int delay);
|
|
|
|
|
2012-08-05 09:05:32 +00:00
|
|
|
void mxs_power_init(void);
|
2011-11-08 23:18:21 +00:00
|
|
|
|
2013-02-23 02:43:04 +00:00
|
|
|
#ifdef CONFIG_SPL_MXS_PSWITCH_WAIT
|
2012-08-05 09:05:32 +00:00
|
|
|
void mxs_power_wait_pswitch(void);
|
2011-11-08 23:18:21 +00:00
|
|
|
#else
|
2012-08-05 09:05:32 +00:00
|
|
|
static inline void mxs_power_wait_pswitch(void) { }
|
2011-11-08 23:18:21 +00:00
|
|
|
#endif
|
|
|
|
|
2012-08-05 09:05:32 +00:00
|
|
|
void mxs_mem_init(void);
|
|
|
|
uint32_t mxs_mem_get_size(void);
|
2011-11-08 23:18:21 +00:00
|
|
|
|
2012-08-05 09:05:32 +00:00
|
|
|
void mxs_lradc_init(void);
|
|
|
|
void mxs_lradc_enable_batt_measurement(void);
|
2012-05-01 11:09:49 +00:00
|
|
|
|
2011-11-08 23:18:21 +00:00
|
|
|
#endif /* __M28_INIT_H__ */
|