mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 16:07:30 +00:00
f2f07e8553
According to: http://git.freescale.com/git/cgit.cgi/imx/uboot-imx.git/log/?h=imx_v2009.08_3.0.35_4.1.0 ENGR00287268 mx6: fix the secure boot issue on the new tapout chip commit 424cb1a79e9f5ae4ede9350dfb5e10dc9680e90b newer i.MX6 silicon revisions have an updated ROM and HAB API table. Please see also: i.MX Applications Processors Documentation Engineering Bulletins EB803, i.MX 6Dual/6Quad Applications Processor Silicon Revsion 1.2 to 1.3 Comparison With this change the secure boot status is correctly displayed Signed-off-by: Stefano Babic <sbabic@denx.de>
44 lines
1 KiB
C
44 lines
1 KiB
C
/*
|
|
* (C) Copyright 2009
|
|
* Stefano Babic, DENX Software Engineering, sbabic@denx.de.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#ifndef _SYS_PROTO_H_
|
|
#define _SYS_PROTO_H_
|
|
|
|
#include <asm/imx-common/regs-common.h>
|
|
#include "../arch-imx/cpu.h"
|
|
|
|
#define soc_rev() (get_cpu_rev() & 0xFF)
|
|
#define is_soc_rev(rev) (soc_rev() - rev)
|
|
|
|
u32 get_cpu_rev(void);
|
|
|
|
/* returns MXC_CPU_ value */
|
|
#define cpu_type(rev) (((rev) >> 12)&0xff)
|
|
|
|
/* use with MXC_CPU_ constants */
|
|
#define is_cpu_type(cpu) (cpu_type(get_cpu_rev()) == cpu)
|
|
|
|
const char *get_imx_type(u32 imxtype);
|
|
unsigned imx_ddr_size(void);
|
|
|
|
/*
|
|
* Initializes on-chip ethernet controllers.
|
|
* to override, implement board_eth_init()
|
|
*/
|
|
|
|
int fecmxc_initialize(bd_t *bis);
|
|
u32 get_ahb_clk(void);
|
|
u32 get_periph_clk(void);
|
|
|
|
int mxs_reset_block(struct mxs_register_32 *reg);
|
|
int mxs_wait_mask_set(struct mxs_register_32 *reg,
|
|
uint32_t mask,
|
|
unsigned int timeout);
|
|
int mxs_wait_mask_clr(struct mxs_register_32 *reg,
|
|
uint32_t mask,
|
|
unsigned int timeout);
|
|
#endif
|