diff options
author | Yutang Jiang <yutang.jiang@nxp.com> | 2016-12-01 23:01:27 +0800 |
---|---|---|
committer | John Crispin <john@phrozen.org> | 2016-12-12 09:57:40 +0100 |
commit | d5fc7430ca293213dd4f1de7f52446c17d4def6a (patch) | |
tree | 4d884312e45871f219a0f1993c80299cc1cc61a6 /package/boot/uboot-layerscape/patches/0027-fsl-qixis-Add-flag-for-LBMAP-brdcfg-reg-offset.patch | |
parent | b0ac825884e7bfe3f68385109df3234e37022c71 (diff) | |
download | upstream-d5fc7430ca293213dd4f1de7f52446c17d4def6a.tar.gz upstream-d5fc7430ca293213dd4f1de7f52446c17d4def6a.tar.bz2 upstream-d5fc7430ca293213dd4f1de7f52446c17d4def6a.zip |
layerscape: uboot-layerscape: prefer github over git.freescale.com
In order to prevent the impact of the merger of the company and the potential
rebase of the SDK repositories, migrate the u-boot source to github.
Signed-off-by: Yutang Jiang <yutang.jiang@nxp.com>
Diffstat (limited to 'package/boot/uboot-layerscape/patches/0027-fsl-qixis-Add-flag-for-LBMAP-brdcfg-reg-offset.patch')
-rw-r--r-- | package/boot/uboot-layerscape/patches/0027-fsl-qixis-Add-flag-for-LBMAP-brdcfg-reg-offset.patch | 48 |
1 files changed, 0 insertions, 48 deletions
diff --git a/package/boot/uboot-layerscape/patches/0027-fsl-qixis-Add-flag-for-LBMAP-brdcfg-reg-offset.patch b/package/boot/uboot-layerscape/patches/0027-fsl-qixis-Add-flag-for-LBMAP-brdcfg-reg-offset.patch deleted file mode 100644 index a002e1c6f8..0000000000 --- a/package/boot/uboot-layerscape/patches/0027-fsl-qixis-Add-flag-for-LBMAP-brdcfg-reg-offset.patch +++ /dev/null @@ -1,48 +0,0 @@ -From 34a472a20695cbd6ab1bc2d0686c6f324d8e0d6c Mon Sep 17 00:00:00 2001 -From: Abhimanyu Saini <abhimanyu.saini@nxp.com> -Date: Tue, 10 May 2016 09:38:46 +0530 -Subject: [PATCH 27/93] fsl, qixis: Add flag for LBMAP brdcfg reg offset - -Add QIXIS_LBMAP_BRDCFG_REG to the save offset of LBMAP -configuration register instead of hardcoding it in -set_lbmap() function. - -Signed-off-by: Calvin Johnson <calvin.johnson@nxp.com> -Signed-off-by: Abhimanyu Saini <abhimanyu.saini@nxp.com> ---- - board/freescale/common/qixis.c | 11 +++++++++-- - 1 file changed, 9 insertions(+), 2 deletions(-) - -diff --git a/board/freescale/common/qixis.c b/board/freescale/common/qixis.c -index 2e35d41..0db0ed6 100644 ---- a/board/freescale/common/qixis.c -+++ b/board/freescale/common/qixis.c -@@ -14,6 +14,13 @@ - #include <i2c.h> - #include "qixis.h" - -+#ifndef QIXIS_LBMAP_BRDCFG_REG -+/* -+ * For consistency with existing platforms -+ */ -+#define QIXIS_LBMAP_BRDCFG_REG 0x00 -+#endif -+ - #ifdef CONFIG_SYS_I2C_FPGA_ADDR - u8 qixis_read_i2c(unsigned int reg) - { -@@ -144,9 +151,9 @@ static void __maybe_unused set_lbmap(int lbmap) - { - u8 reg; - -- reg = QIXIS_READ(brdcfg[0]); -+ reg = QIXIS_READ(brdcfg[QIXIS_LBMAP_BRDCFG_REG]); - reg = (reg & ~QIXIS_LBMAP_MASK) | lbmap; -- QIXIS_WRITE(brdcfg[0], reg); -+ QIXIS_WRITE(brdcfg[QIXIS_LBMAP_BRDCFG_REG], reg); - } - - static void __maybe_unused set_rcw_src(int rcw_src) --- -1.7.9.5 - |