mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-12 07:57:21 +00:00
37cf215253
Since we need to support runtime check for different drivers, we need to add get_cpu_rev for vf610, otherwise there will be build errors. This patch introduces a dummy CPU id which is not read from chip silicon. Later when we can get the real id from chip, can fix the value of MXC_CPU_VF610 then. Signed-off-by: Peng Fan <Peng.Fan@freescale.com> Suggested-by: Stefano Babic <sbabic@denx.de> Cc: Stefano Babic <sbabic@denx.de> Acked-by: Stefano Babic <sbabic@denx.de>
31 lines
789 B
C
31 lines
789 B
C
/*
|
|
* (C) Copyright 2014 Freescale Semiconductor, Inc.
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+
|
|
*/
|
|
|
|
#define MXC_CPU_MX23 0x23
|
|
#define MXC_CPU_MX25 0x25
|
|
#define MXC_CPU_MX27 0x27
|
|
#define MXC_CPU_MX28 0x28
|
|
#define MXC_CPU_MX31 0x31
|
|
#define MXC_CPU_MX35 0x35
|
|
#define MXC_CPU_MX51 0x51
|
|
#define MXC_CPU_MX53 0x53
|
|
#define MXC_CPU_MX6SL 0x60
|
|
#define MXC_CPU_MX6DL 0x61
|
|
#define MXC_CPU_MX6SX 0x62
|
|
#define MXC_CPU_MX6Q 0x63
|
|
#define MXC_CPU_MX6UL 0x64
|
|
#define MXC_CPU_MX6SOLO 0x65 /* dummy ID */
|
|
#define MXC_CPU_MX6D 0x67
|
|
#define MXC_CPU_MX6DP 0x68
|
|
#define MXC_CPU_MX6QP 0x69
|
|
#define MXC_CPU_VF610 0xF6 /* dummy ID */
|
|
|
|
#define CS0_128 0
|
|
#define CS0_64M_CS1_64M 1
|
|
#define CS0_64M_CS1_32M_CS2_32M 2
|
|
#define CS0_32M_CS1_32M_CS2_32M_CS3_32M 3
|
|
|
|
u32 get_imx_reset_cause(void);
|