blob: 38851a135c8a5bf4686226ed715cf3d3ad791e4d [file] [log] [blame]
Jason Liudec11122011-11-25 00:18:02 +00001/*
2 * (C) Copyright 2009
3 * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
4 *
Wolfgang Denkd79de1d2013-07-08 09:37:19 +02005 * SPDX-License-Identifier: GPL-2.0+
Jason Liudec11122011-11-25 00:18:02 +00006 */
7
8#ifndef _SYS_PROTO_H_
9#define _SYS_PROTO_H_
10
Stefan Roese05b0ef42013-04-09 21:06:08 +000011#include <asm/imx-common/regs-common.h>
Fabio Estevam87d87332014-01-26 15:06:40 -020012#include "../arch-imx/cpu.h"
Jason Liudec11122011-11-25 00:18:02 +000013
Troy Kisky58394932012-10-23 10:57:46 +000014#define is_soc_rev(rev) ((get_cpu_rev() & 0xFF) - rev)
Jason Liudec11122011-11-25 00:18:02 +000015u32 get_cpu_rev(void);
Eric Nelson7d603b92013-08-29 10:57:10 -070016
17/* returns MXC_CPU_ value */
18#define cpu_type(rev) (((rev) >> 12)&0xff)
19
20/* use with MXC_CPU_ constants */
21#define is_cpu_type(cpu) (cpu_type(get_cpu_rev()) == cpu)
22
Troy Kisky58394932012-10-23 10:57:46 +000023const char *get_imx_type(u32 imxtype);
Troy Kiskyb3aec6a2012-10-23 10:57:48 +000024unsigned imx_ddr_size(void);
Jason Liudec11122011-11-25 00:18:02 +000025
26/*
27 * Initializes on-chip ethernet controllers.
28 * to override, implement board_eth_init()
29 */
30
31int fecmxc_initialize(bd_t *bis);
Fabio Estevam6479f512012-04-29 08:11:13 +000032u32 get_ahb_clk(void);
33u32 get_periph_clk(void);
Stefan Roese05b0ef42013-04-09 21:06:08 +000034
35int mxs_reset_block(struct mxs_register_32 *reg);
36int mxs_wait_mask_set(struct mxs_register_32 *reg,
37 uint32_t mask,
38 unsigned int timeout);
39int mxs_wait_mask_clr(struct mxs_register_32 *reg,
40 uint32_t mask,
41 unsigned int timeout);
Jason Liudec11122011-11-25 00:18:02 +000042#endif