bl33: uboot 2023 need enbale uasan [1/1]

PD#SWPL-126938

Problem:
uboot 2023 need enbale uasan

Solution:
enable uasan for uboot 2023

Verify:
s4_ap222
BUG: UASAN: malloc-out-of-bounds in hexport_r
Write of size 126972 at addr 0000000077571844

Memory state around the buggy address: 000000006eeae308
0000000077571700: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00
0000000077571780: 00 00 00 00 f1 f1 f1 f1 00 f3 f3 f3 00 00 00 00
0000000077571800: fe fe fe fe f1 f1 f1 f1 fe fe fe fe fe fe fe fe
                                           ^
0000000077571880: fe fe fe fe fe fe fe fe fe fe fe fe fe fe fe fe
0000000077571900: 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00

Call trace:
[<000000007f5b62b0>] dump_backtrace+0x0/0x1dc
[<000000007f702240>] uasan_report+0x10c/0x2e4
[<000000007f702720>] memset+0x2c/0x4c
[<000000007f6fb040>] hexport_r+0x294/0x3d0
[<000000007f697cdc>] env_export+0xa0/0x110
[<000000007f699750>] env_storage_save+0xf4/0x13c
[<000000007f698274>] env_save+0xa4/0xe4
[<000000007f60a524>] do_env_save+0x8/0x1c
[<000000007f61d7ac>] cmd_process+0x1d8/0x240
[<000000007f60db98>] run_list_real+0x998/0x9e0

Change-Id: I6fd02b3fa3370f9adc32415a0a14968a31822c01
Signed-off-by: Bo Lv <bo.lv@amlogic.com>
diff --git a/include/linux/compiler-gcc.h b/include/linux/compiler-gcc.h
index d7ee4c6..4f642cb 100644
--- a/include/linux/compiler-gcc.h
+++ b/include/linux/compiler-gcc.h
@@ -88,6 +88,8 @@
  */
 #define barrier_before_unreachable() asm volatile("")
 
+#define _RET_IP_		(unsigned long)__builtin_return_address(0)
+
 /*
  * Mark a position in code as unreachable.  This can be used to
  * suppress control flow warnings after asm blocks that transfer