From mboxrd@z Thu Jan 1 00:00:00 1970 From: Philipp Tomsich Date: Sun, 25 Feb 2018 16:49:12 +0100 Subject: [U-Boot] [U-Boot, v2, 2/2] rockchip: rk3288: Fix wrong TPL_TEXT_BASE In-Reply-To: <20180223074311.6968-2-jagan@amarulasolutions.com> References: <20180223074311.6968-2-jagan@amarulasolutions.com> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de > TPL offset 0xff704004 is unaligned address which is adding nearest > 8-bytes for next instruction, So 0xff704004 is adding 0x20 for > proper alignment which is causing the next instruction data > 0xefffffff is moved. > > Hexdump with overlaped bytes: > ----------------------------- > 0000000 0000 0000 0000 0000 0000 0000 0000 0000 > 0000010 0000 0000 0000 0000 0000 0000 ffff eaff > > So, Fix the TEXT_BASE for proper aligned address 0xff704000 > > Signed-off-by: Jagan Teki > Acked-by: Philipp Tomsich > --- > Changes for v2: > - Update commit message > > arch/arm/mach-rockchip/Kconfig | 3 +++ > configs/vyasa-rk3288_defconfig | 1 - > 2 files changed, 3 insertions(+), 1 deletion(-) > Applied to u-boot-rockchip, thanks!