diff options
author | Lin Fuzhen <fuzhen.lin@freescale.com> | 2013-01-28 17:46:07 +0800 |
---|---|---|
committer | Lin Fuzhen <fuzhen.lin@freescale.com> | 2013-01-28 20:35:56 +0800 |
commit | 69867900d85e71737f6760c57c86d911625cd61c (patch) | |
tree | 4dc17d378b9bec158d6811ab880079a48abea42f /include/asm-arm/arch-mx6 | |
parent | d33eefe083563a082840a46ec9cac21f98fad550 (diff) | |
download | u-boot-imx-69867900d85e71737f6760c57c86d911625cd61c.zip u-boot-imx-69867900d85e71737f6760c57c86d911625cd61c.tar.gz u-boot-imx-69867900d85e71737f6760c57c86d911625cd61c.tar.bz2 |
ENGR00242042 MX6DQ/DL: fix boot fail issue on mx6dl boardsjb4.2.1_1.0.0-alpha
MX6DQ and MX6DL share the common board file, but only MX6DQ has built-in
SATA, for the SATA PDDQ should be enabled default, so it needs to add
code to distinguish different chip ID.
Signed-off-by: Lin Fuzhen <fuzhen.lin@freescale.com>
Diffstat (limited to 'include/asm-arm/arch-mx6')
-rw-r--r-- | include/asm-arm/arch-mx6/mx6.h | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/include/asm-arm/arch-mx6/mx6.h b/include/asm-arm/arch-mx6/mx6.h index 45381e2..54eeddf 100644 --- a/include/asm-arm/arch-mx6/mx6.h +++ b/include/asm-arm/arch-mx6/mx6.h @@ -1,5 +1,5 @@ /* - * Copyright (C) 2011-2012 Freescale Semiconductor, Inc. All Rights Reserved. + * Copyright (C) 2011-2013 Freescale Semiconductor, Inc. All Rights Reserved. * * This program is free software; you can redistribute it and/or modify * it under the terms of the GNU General Public License as published by @@ -815,6 +815,7 @@ extern unsigned int get_board_rev(void); extern int is_soc_rev(int rev); extern enum boot_device get_boot_device(void); extern void fsl_set_system_rev(void); +extern int cpu_is_mx6q(void); #endif /* __ASSEMBLER__*/ |