From e914109de48d3baf8baf8a2fcada78a0dbe7757c Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sat, 14 Sep 2019 19:03:32 +0200 Subject: sh: Fix incorrect linking with new binutils Since binutils 2.30 , the resulting U-Boot binary was incorrectly linked against address 0 instead of text base, fix it. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- arch/sh/cpu/u-boot.lds | 1 + 1 file changed, 1 insertion(+) (limited to 'arch') diff --git a/arch/sh/cpu/u-boot.lds b/arch/sh/cpu/u-boot.lds index 47302da252..4cc97737f1 100644 --- a/arch/sh/cpu/u-boot.lds +++ b/arch/sh/cpu/u-boot.lds @@ -25,6 +25,7 @@ ENTRY(_start) SECTIONS { + . = CONFIG_SYS_TEXT_BASE; reloc_dst = .; PROVIDE (_ftext = .); -- cgit From fa7cff834f2b510ec37027b6d4c5e9f87efea3d3 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sat, 14 Sep 2019 19:05:38 +0200 Subject: sh: Fix SH4 build with GCC versions without -m4-nofpu Pass -m4 instead of -m4-nofpu to GCC versions which do not support the -m4-nofpu option. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- arch/sh/cpu/sh4/config.mk | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) (limited to 'arch') diff --git a/arch/sh/cpu/sh4/config.mk b/arch/sh/cpu/sh4/config.mk index d62d285e60..23fec66492 100644 --- a/arch/sh/cpu/sh4/config.mk +++ b/arch/sh/cpu/sh4/config.mk @@ -6,4 +6,4 @@ # (C) Copyright 2007 # Nobuhiro Iwamatsu # -PLATFORM_CPPFLAGS += -m4-nofpu +PLATFORM_CPPFLAGS += $(call cc-option,-m4-nofpu,-m4) -- cgit From a12c90a28ddecac23ff09d8564c10dc9d9df7e46 Mon Sep 17 00:00:00 2001 From: Marek Vasut Date: Sat, 14 Sep 2019 21:18:09 +0200 Subject: sh: r2dplus: Fix missing PCI range Add missing PCI range for translating DRAM to bus addresses. This fixes e.g. PCI NIC interface and allows network to work in QEMU. Signed-off-by: Marek Vasut Cc: Nobuhiro Iwamatsu --- arch/sh/dts/sh7751-r2dplus.dts | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'arch') diff --git a/arch/sh/dts/sh7751-r2dplus.dts b/arch/sh/dts/sh7751-r2dplus.dts index ecaf0772d8..efaeb33e36 100644 --- a/arch/sh/dts/sh7751-r2dplus.dts +++ b/arch/sh/dts/sh7751-r2dplus.dts @@ -21,6 +21,7 @@ #size-cells = <2>; #interrupt-cells = <1>; ranges = <0x01000000 0 0xfe240000 0 0xfe240000 0 0x00040000 - 0x02000000 0 0xfd000000 0 0xfd000000 0 0x01000000>; + 0x02000000 0 0xfd000000 0 0xfd000000 0 0x01000000 + 0x42000000 0 0x0c000000 0 0x8c000000 0 0x04000000>; }; }; -- cgit