]> git.kernelconcepts.de Git - karo-tx-uboot.git/blob - arch/arm/include/asm/arch-mx6/sys_proto.h
Merge branch 'u-boot-ti/master' into 'u-boot-arm/master'
[karo-tx-uboot.git] / arch / arm / include / asm / arch-mx6 / sys_proto.h
1 /*
2  * (C) Copyright 2009
3  * Stefano Babic, DENX Software Engineering, sbabic@denx.de.
4  *
5  * SPDX-License-Identifier:     GPL-2.0+
6  */
7
8 #ifndef _SYS_PROTO_H_
9 #define _SYS_PROTO_H_
10
11 #include <asm/imx-common/regs-common.h>
12 #include "../arch-imx/cpu.h"
13
14 #define soc_rev() (get_cpu_rev() & 0xFF)
15 #define is_soc_rev(rev)        (soc_rev() - rev)
16
17 u32 get_cpu_rev(void);
18
19 /* returns MXC_CPU_ value */
20 #define cpu_type(rev) (((rev) >> 12)&0xff)
21
22 /* use with MXC_CPU_ constants */
23 #define is_cpu_type(cpu) (cpu_type(get_cpu_rev()) == cpu)
24
25 const char *get_imx_type(u32 imxtype);
26 unsigned imx_ddr_size(void);
27
28 /*
29  * Initializes on-chip ethernet controllers.
30  * to override, implement board_eth_init()
31  */
32
33 int fecmxc_initialize(bd_t *bis);
34 u32 get_ahb_clk(void);
35 u32 get_periph_clk(void);
36
37 int mxs_reset_block(struct mxs_register_32 *reg);
38 int mxs_wait_mask_set(struct mxs_register_32 *reg,
39                        uint32_t mask,
40                        unsigned int timeout);
41 int mxs_wait_mask_clr(struct mxs_register_32 *reg,
42                        uint32_t mask,
43                        unsigned int timeout);
44 #endif