Jason Liu | dec1112 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 1 | /* |
| 2 | * (C) Copyright 2009 |
| 3 | * Stefano Babic, DENX Software Engineering, sbabic@denx.de. |
| 4 | * |
Wolfgang Denk | d79de1d | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 5 | * SPDX-License-Identifier: GPL-2.0+ |
Jason Liu | dec1112 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 6 | */ |
| 7 | |
| 8 | #ifndef _SYS_PROTO_H_ |
| 9 | #define _SYS_PROTO_H_ |
| 10 | |
Stefan Roese | 05b0ef4 | 2013-04-09 21:06:08 +0000 | [diff] [blame] | 11 | #include <asm/imx-common/regs-common.h> |
Fabio Estevam | 87d8733 | 2014-01-26 15:06:40 -0200 | [diff] [blame] | 12 | #include "../arch-imx/cpu.h" |
Jason Liu | dec1112 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 13 | |
Stefano Babic | 1440442 | 2014-06-10 10:26:22 +0200 | [diff] [blame] | 14 | #define soc_rev() (get_cpu_rev() & 0xFF) |
| 15 | #define is_soc_rev(rev) (soc_rev() - rev) |
| 16 | |
Gabriel Huau | 170ceaf | 2014-07-26 11:35:43 -0700 | [diff] [blame] | 17 | u32 get_nr_cpus(void); |
Jason Liu | dec1112 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 18 | u32 get_cpu_rev(void); |
Eric Nelson | 7d603b9 | 2013-08-29 10:57:10 -0700 | [diff] [blame] | 19 | |
| 20 | /* returns MXC_CPU_ value */ |
| 21 | #define cpu_type(rev) (((rev) >> 12)&0xff) |
| 22 | |
Nikita Kiryanov | 937a1d2 | 2014-08-20 15:08:59 +0300 | [diff] [blame] | 23 | /* both macros return/take MXC_CPU_ constants */ |
| 24 | #define get_cpu_type() (cpu_type(get_cpu_rev())) |
| 25 | #define is_cpu_type(cpu) (get_cpu_type() == cpu) |
Eric Nelson | 7d603b9 | 2013-08-29 10:57:10 -0700 | [diff] [blame] | 26 | |
Troy Kisky | 5839493 | 2012-10-23 10:57:46 +0000 | [diff] [blame] | 27 | const char *get_imx_type(u32 imxtype); |
Troy Kisky | b3aec6a | 2012-10-23 10:57:48 +0000 | [diff] [blame] | 28 | unsigned imx_ddr_size(void); |
Fabio Estevam | 16e65f6 | 2014-11-14 11:27:21 -0200 | [diff] [blame] | 29 | void set_chipselect_size(int const); |
Jason Liu | dec1112 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 30 | |
| 31 | /* |
| 32 | * Initializes on-chip ethernet controllers. |
| 33 | * to override, implement board_eth_init() |
| 34 | */ |
| 35 | |
| 36 | int fecmxc_initialize(bd_t *bis); |
Fabio Estevam | 6479f51 | 2012-04-29 08:11:13 +0000 | [diff] [blame] | 37 | u32 get_ahb_clk(void); |
| 38 | u32 get_periph_clk(void); |
Stefan Roese | 05b0ef4 | 2013-04-09 21:06:08 +0000 | [diff] [blame] | 39 | |
| 40 | int mxs_reset_block(struct mxs_register_32 *reg); |
| 41 | int mxs_wait_mask_set(struct mxs_register_32 *reg, |
| 42 | uint32_t mask, |
| 43 | unsigned int timeout); |
| 44 | int mxs_wait_mask_clr(struct mxs_register_32 *reg, |
| 45 | uint32_t mask, |
| 46 | unsigned int timeout); |
Jason Liu | dec1112 | 2011-11-25 00:18:02 +0000 | [diff] [blame] | 47 | #endif |