public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v2 0/3] Remove unused _relocate arguments
@ 2018-06-25 18:12 Ivan Gorinov
  2018-06-25 18:12 ` [U-Boot] [PATCH v2 1/3] x86: " Ivan Gorinov
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Ivan Gorinov @ 2018-06-25 18:12 UTC (permalink / raw)
  To: u-boot

EFI image handle and system table are not used in _relocate().

v2:
  Separated the changes in efi_main() arguments and calling convention.

Ivan Gorinov (3):
  x86: Remove unused _relocate arguments
  arm: Remove unused _relocate arguments
  riscv: Remove unused _relocate arguments

 arch/arm/lib/crt0_aarch64_efi.S  | 2 --
 arch/arm/lib/crt0_arm_efi.S      | 2 --
 arch/arm/lib/reloc_aarch64_efi.c | 3 +--
 arch/arm/lib/reloc_arm_efi.c     | 3 +--
 arch/riscv/lib/reloc_riscv_efi.c | 3 +--
 arch/x86/lib/crt0_x86_64_efi.S   | 3 ---
 arch/x86/lib/reloc_ia32_efi.c    | 3 +--
 arch/x86/lib/reloc_x86_64_efi.c  | 3 +--
 8 files changed, 5 insertions(+), 17 deletions(-)

-- 
2.7.4

^ permalink raw reply	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH v2 1/3] x86: Remove unused _relocate arguments
  2018-06-25 18:12 [U-Boot] [PATCH v2 0/3] Remove unused _relocate arguments Ivan Gorinov
@ 2018-06-25 18:12 ` Ivan Gorinov
  2018-06-25 18:12 ` [U-Boot] [PATCH v2 2/3] arm: " Ivan Gorinov
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Ivan Gorinov @ 2018-06-25 18:12 UTC (permalink / raw)
  To: u-boot

EFI image handle and system table are not used in _relocate().

Signed-off-by: Ivan Gorinov <ivan.gorinov@intel.com>
---
 arch/x86/lib/crt0_x86_64_efi.S  | 3 ---
 arch/x86/lib/reloc_ia32_efi.c   | 3 +--
 arch/x86/lib/reloc_x86_64_efi.c | 3 +--
 3 files changed, 2 insertions(+), 7 deletions(-)

diff --git a/arch/x86/lib/crt0_x86_64_efi.S b/arch/x86/lib/crt0_x86_64_efi.S
index bb8d3cf..47ed5af 100644
--- a/arch/x86/lib/crt0_x86_64_efi.S
+++ b/arch/x86/lib/crt0_x86_64_efi.S
@@ -18,9 +18,6 @@ _start:
 	pushq %rcx
 	pushq %rdx
 
-	mov %rcx, %r8
-	mov %rdx, %r9
-
 	lea image_base(%rip), %rcx
 	lea _DYNAMIC(%rip), %rdx
 
diff --git a/arch/x86/lib/reloc_ia32_efi.c b/arch/x86/lib/reloc_ia32_efi.c
index f0bd2db..4fb0e56 100644
--- a/arch/x86/lib/reloc_ia32_efi.c
+++ b/arch/x86/lib/reloc_ia32_efi.c
@@ -11,8 +11,7 @@
 #include <efi.h>
 #include <elf.h>
 
-efi_status_t _relocate(long ldbase, Elf32_Dyn *dyn, efi_handle_t image,
-		       struct efi_system_table *systab)
+efi_status_t _relocate(long ldbase, Elf32_Dyn *dyn)
 {
 	long relsz = 0, relent = 0;
 	Elf32_Rel *rel = 0;
diff --git a/arch/x86/lib/reloc_x86_64_efi.c b/arch/x86/lib/reloc_x86_64_efi.c
index adc80ea..9361235 100644
--- a/arch/x86/lib/reloc_x86_64_efi.c
+++ b/arch/x86/lib/reloc_x86_64_efi.c
@@ -13,8 +13,7 @@
 #include <efi.h>
 #include <elf.h>
 
-efi_status_t _relocate(long ldbase, Elf64_Dyn *dyn, efi_handle_t image,
-		       struct efi_system_table *systab)
+efi_status_t _relocate(long ldbase, Elf64_Dyn *dyn)
 {
 	long relsz = 0, relent = 0;
 	Elf64_Rel *rel = 0;
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH v2 2/3] arm: Remove unused _relocate arguments
  2018-06-25 18:12 [U-Boot] [PATCH v2 0/3] Remove unused _relocate arguments Ivan Gorinov
  2018-06-25 18:12 ` [U-Boot] [PATCH v2 1/3] x86: " Ivan Gorinov
@ 2018-06-25 18:12 ` Ivan Gorinov
  2018-06-25 18:13 ` [U-Boot] [PATCH v2 3/3] riscv: " Ivan Gorinov
  2018-06-26  2:54 ` [U-Boot] [PATCH v2 0/3] " Bin Meng
  3 siblings, 0 replies; 5+ messages in thread
From: Ivan Gorinov @ 2018-06-25 18:12 UTC (permalink / raw)
  To: u-boot

EFI image handle and system table are not used in _relocate().

Signed-off-by: Ivan Gorinov <ivan.gorinov@intel.com>
---
 arch/arm/lib/crt0_aarch64_efi.S  | 2 --
 arch/arm/lib/crt0_arm_efi.S      | 2 --
 arch/arm/lib/reloc_aarch64_efi.c | 3 +--
 arch/arm/lib/reloc_arm_efi.c     | 3 +--
 4 files changed, 2 insertions(+), 8 deletions(-)

diff --git a/arch/arm/lib/crt0_aarch64_efi.S b/arch/arm/lib/crt0_aarch64_efi.S
index 5b6c384..0db4360 100644
--- a/arch/arm/lib/crt0_aarch64_efi.S
+++ b/arch/arm/lib/crt0_aarch64_efi.S
@@ -122,8 +122,6 @@ _start:
 	mov		x29, sp
 
 	stp		x0, x1, [sp, #16]
-	mov		x2, x0
-	mov		x3, x1
 	adr		x0, ImageBase
 	adrp		x1, _DYNAMIC
 	add		x1, x1, #:lo12:_DYNAMIC
diff --git a/arch/arm/lib/crt0_arm_efi.S b/arch/arm/lib/crt0_arm_efi.S
index 0f296f3..23db49f 100644
--- a/arch/arm/lib/crt0_arm_efi.S
+++ b/arch/arm/lib/crt0_arm_efi.S
@@ -119,8 +119,6 @@ section_table:
 _start:
 	stmfd		sp!, {r0-r2, lr}
 
-	mov		r2, r0
-	mov		r3, r1
 	adr		r1, .L_DYNAMIC
 	ldr		r0, [r1]
 	add		r1, r0, r1
diff --git a/arch/arm/lib/reloc_aarch64_efi.c b/arch/arm/lib/reloc_aarch64_efi.c
index 38c13d3..1cf5cdc 100644
--- a/arch/arm/lib/reloc_aarch64_efi.c
+++ b/arch/arm/lib/reloc_aarch64_efi.c
@@ -38,8 +38,7 @@
 
 #include <elf.h>
 
-efi_status_t _relocate(long ldbase, Elf64_Dyn *dyn, efi_handle_t image,
-		       struct efi_system_table *systab)
+efi_status_t _relocate(long ldbase, Elf64_Dyn *dyn)
 {
 	long relsz = 0, relent = 0;
 	Elf64_Rela *rel = 0;
diff --git a/arch/arm/lib/reloc_arm_efi.c b/arch/arm/lib/reloc_arm_efi.c
index 6232e3f..336a98a 100644
--- a/arch/arm/lib/reloc_arm_efi.c
+++ b/arch/arm/lib/reloc_arm_efi.c
@@ -14,8 +14,7 @@
 #include <efi.h>
 #include <elf.h>
 
-efi_status_t _relocate(long ldbase, Elf32_Dyn *dyn, efi_handle_t image,
-		       struct efi_system_table *systab)
+efi_status_t _relocate(long ldbase, Elf32_Dyn *dyn)
 {
 	long relsz = 0, relent = 0;
 	Elf32_Rel *rel = 0;
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH v2 3/3] riscv: Remove unused _relocate arguments
  2018-06-25 18:12 [U-Boot] [PATCH v2 0/3] Remove unused _relocate arguments Ivan Gorinov
  2018-06-25 18:12 ` [U-Boot] [PATCH v2 1/3] x86: " Ivan Gorinov
  2018-06-25 18:12 ` [U-Boot] [PATCH v2 2/3] arm: " Ivan Gorinov
@ 2018-06-25 18:13 ` Ivan Gorinov
  2018-06-26  2:54 ` [U-Boot] [PATCH v2 0/3] " Bin Meng
  3 siblings, 0 replies; 5+ messages in thread
From: Ivan Gorinov @ 2018-06-25 18:13 UTC (permalink / raw)
  To: u-boot

EFI image handle and system table are not used in _relocate().

Signed-off-by: Ivan Gorinov <ivan.gorinov@intel.com>
---
 arch/riscv/lib/reloc_riscv_efi.c | 3 +--
 1 file changed, 1 insertion(+), 2 deletions(-)

diff --git a/arch/riscv/lib/reloc_riscv_efi.c b/arch/riscv/lib/reloc_riscv_efi.c
index 8b4b2b1..2fbbfcb 100644
--- a/arch/riscv/lib/reloc_riscv_efi.c
+++ b/arch/riscv/lib/reloc_riscv_efi.c
@@ -50,8 +50,7 @@
 #define ELF_R_TYPE	ELF32_R_TYPE
 #endif
 
-efi_status_t _relocate(long ldbase, Elf_Dyn *dyn, efi_handle_t image,
-		       struct efi_system_table *systab)
+efi_status_t _relocate(long ldbase, Elf_Dyn *dyn)
 {
 	long relsz = 0, relent = 0;
 	Elf_Rela *rel = 0;
-- 
2.7.4

^ permalink raw reply related	[flat|nested] 5+ messages in thread

* [U-Boot] [PATCH v2 0/3] Remove unused _relocate arguments
  2018-06-25 18:12 [U-Boot] [PATCH v2 0/3] Remove unused _relocate arguments Ivan Gorinov
                   ` (2 preceding siblings ...)
  2018-06-25 18:13 ` [U-Boot] [PATCH v2 3/3] riscv: " Ivan Gorinov
@ 2018-06-26  2:54 ` Bin Meng
  3 siblings, 0 replies; 5+ messages in thread
From: Bin Meng @ 2018-06-26  2:54 UTC (permalink / raw)
  To: u-boot

Hi Ivan,

On Tue, Jun 26, 2018 at 2:12 AM, Ivan Gorinov <ivan.gorinov@intel.com> wrote:
> EFI image handle and system table are not used in _relocate().
>
> v2:
>   Separated the changes in efi_main() arguments and calling convention.
>
> Ivan Gorinov (3):
>   x86: Remove unused _relocate arguments

This does not apply cleanly on current u-boot/master. Can you please
rebase this series?

Applying: x86: Remove unused _relocate arguments
error: patch failed: arch/x86/lib/reloc_ia32_efi.c:11
error: arch/x86/lib/reloc_ia32_efi.c: patch does not apply
error: patch failed: arch/x86/lib/reloc_x86_64_efi.c:13
error: arch/x86/lib/reloc_x86_64_efi.c: patch does not apply
Patch failed at 0001 x86: Remove unused _relocate arguments

>   arm: Remove unused _relocate arguments
>   riscv: Remove unused _relocate arguments
>
>  arch/arm/lib/crt0_aarch64_efi.S  | 2 --
>  arch/arm/lib/crt0_arm_efi.S      | 2 --
>  arch/arm/lib/reloc_aarch64_efi.c | 3 +--
>  arch/arm/lib/reloc_arm_efi.c     | 3 +--
>  arch/riscv/lib/reloc_riscv_efi.c | 3 +--
>  arch/x86/lib/crt0_x86_64_efi.S   | 3 ---
>  arch/x86/lib/reloc_ia32_efi.c    | 3 +--
>  arch/x86/lib/reloc_x86_64_efi.c  | 3 +--
>  8 files changed, 5 insertions(+), 17 deletions(-)
>

Regards,
Bin

^ permalink raw reply	[flat|nested] 5+ messages in thread

end of thread, other threads:[~2018-06-26  2:54 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-06-25 18:12 [U-Boot] [PATCH v2 0/3] Remove unused _relocate arguments Ivan Gorinov
2018-06-25 18:12 ` [U-Boot] [PATCH v2 1/3] x86: " Ivan Gorinov
2018-06-25 18:12 ` [U-Boot] [PATCH v2 2/3] arm: " Ivan Gorinov
2018-06-25 18:13 ` [U-Boot] [PATCH v2 3/3] riscv: " Ivan Gorinov
2018-06-26  2:54 ` [U-Boot] [PATCH v2 0/3] " Bin Meng

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox