Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Stefano Babic
On 12/11/2014 23:27, John Tobias wrote:
 add the spl info in the header file.
 Also, added a macro statement in m6sabre_common.h to avoid compiler
 warning.
 
 Signed-off-by: John Tobias john.tobias...@gmail.com
 ---
  include/configs/mx6sabre_common.h | 2 ++
  include/configs/mx6sabresd.h  | 6 ++
  2 files changed, 8 insertions(+)
 
 diff --git a/include/configs/mx6sabre_common.h 
 b/include/configs/mx6sabre_common.h
 index c81e9e9..e4d0d14 100644
 --- a/include/configs/mx6sabre_common.h
 +++ b/include/configs/mx6sabre_common.h
 @@ -95,7 +95,9 @@
  #define CONFIG_BOOTDELAY   1
  
  #define CONFIG_LOADADDR0x1200
 +#ifndef CONFIG_SYS_TEXT_BASE
  #define CONFIG_SYS_TEXT_BASE   0x1780
 +#endif
  

Why is that needed ? SPL does not use it, because it use
CONFIG_SPL_TEXT_BASE, and this is defined in imx6_spl.h. And you do not
redefine it, meaning that overwriting the value is not necessary at all,
as we expect.

Best regards,
Stefano Babic

-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Fabio Estevam
Hi John,

On Thu, Nov 13, 2014 at 6:58 AM, Stefano Babic sba...@denx.de wrote:

  #define CONFIG_LOADADDR0x1200
 +#ifndef CONFIG_SYS_TEXT_BASE
  #define CONFIG_SYS_TEXT_BASE   0x1780
 +#endif


 Why is that needed ? SPL does not use it, because it use
 CONFIG_SPL_TEXT_BASE, and this is defined in imx6_spl.h. And you do not
 redefine it, meaning that overwriting the value is not necessary at all,
 as we expect.

Stefano is right.

You can simply remove this piece:

--- a/include/configs/mx6sabre_common.h
+++ b/include/configs/mx6sabre_common.h
@@ -95,9 +95,6 @@
 #define CONFIG_BOOTDELAY   1

 #define CONFIG_LOADADDR0x1200
-#ifndef CONFIG_SYS_TEXT_BASE
-#define CONFIG_SYS_TEXT_BASE   0x1780
-#endif

 #ifdef CONFIG_SUPPORT_EMMC_BOOT
 #define EMMC_ENV \

and the build will succeed as expected.

Thanks
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Fabio Estevam
On Thu, Nov 13, 2014 at 10:41 AM, Fabio Estevam feste...@gmail.com wrote:
 Hi John,

 On Thu, Nov 13, 2014 at 6:58 AM, Stefano Babic sba...@denx.de wrote:

  #define CONFIG_LOADADDR0x1200
 +#ifndef CONFIG_SYS_TEXT_BASE
  #define CONFIG_SYS_TEXT_BASE   0x1780
 +#endif


 Why is that needed ? SPL does not use it, because it use
 CONFIG_SPL_TEXT_BASE, and this is defined in imx6_spl.h. And you do not
 redefine it, meaning that overwriting the value is not necessary at all,
 as we expect.

 Stefano is right.

 You can simply remove this piece:

 --- a/include/configs/mx6sabre_common.h
 +++ b/include/configs/mx6sabre_common.h
 @@ -95,9 +95,6 @@
  #define CONFIG_BOOTDELAY   1

  #define CONFIG_LOADADDR0x1200
 -#ifndef CONFIG_SYS_TEXT_BASE
 -#define CONFIG_SYS_TEXT_BASE   0x1780
 -#endif

Sorry, I meant to remove only the ifdef:

--- a/include/configs/mx6sabre_common.h
+++ b/include/configs/mx6sabre_common.h
@@ -95,9 +95,7 @@
 #define CONFIG_BOOTDELAY   1

 #define CONFIG_LOADADDR0x1200
-#ifndef CONFIG_SYS_TEXT_BASE
 #define CONFIG_SYS_TEXT_BASE   0x1780
-#endif
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Fabio Estevam
Hi Stefano,

On Thu, Nov 13, 2014 at 10:49 AM, Fabio Estevam feste...@gmail.com wrote:

 Sorry, I meant to remove only the ifdef:

 --- a/include/configs/mx6sabre_common.h
 +++ b/include/configs/mx6sabre_common.h
 @@ -95,9 +95,7 @@
  #define CONFIG_BOOTDELAY   1

  #define CONFIG_LOADADDR0x1200
 -#ifndef CONFIG_SYS_TEXT_BASE
  #define CONFIG_SYS_TEXT_BASE   0x1780
 -#endif

Should John resend the series again with this change or can you remove
the ifndef manually while applying it?

Thanks,

Fabio Estevam
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Stefano Babic
Hi Fabio, John,

On 13/11/2014 15:39, Fabio Estevam wrote:
 Hi Stefano,
 
 On Thu, Nov 13, 2014 at 10:49 AM, Fabio Estevam feste...@gmail.com wrote:
 
 Sorry, I meant to remove only the ifdef:

 --- a/include/configs/mx6sabre_common.h
 +++ b/include/configs/mx6sabre_common.h
 @@ -95,9 +95,7 @@
  #define CONFIG_BOOTDELAY   1

  #define CONFIG_LOADADDR0x1200
 -#ifndef CONFIG_SYS_TEXT_BASE
  #define CONFIG_SYS_TEXT_BASE   0x1780
 -#endif
 
 Should John resend the series again with this change or can you remove
 the ifndef manually while applying it?
 

We already agree about the changes. There is no need to resend the
patchset, I will fix it when I apply the patchset.

Best regards,
Stefano Babic



-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Fabio Estevam
On Thu, Nov 13, 2014 at 12:42 PM, Stefano Babic sba...@denx.de wrote:

 We already agree about the changes. There is no need to resend the
 patchset, I will fix it when I apply the patchset.

Excellent! Thanks, Stefano
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread John Tobias
Hi Stefano,

On Thu, Nov 13, 2014 at 4:49 AM, Fabio Estevam feste...@gmail.com wrote:
 On Thu, Nov 13, 2014 at 10:41 AM, Fabio Estevam feste...@gmail.com wrote:
 Hi John,

 On Thu, Nov 13, 2014 at 6:58 AM, Stefano Babic sba...@denx.de wrote:

  #define CONFIG_LOADADDR0x1200
 +#ifndef CONFIG_SYS_TEXT_BASE
  #define CONFIG_SYS_TEXT_BASE   0x1780
 +#endif


 Why is that needed ? SPL does not use it, because it use
 CONFIG_SPL_TEXT_BASE, and this is defined in imx6_spl.h. And you do not
 redefine it, meaning that overwriting the value is not necessary at all,
 as we expect.

The CONFIG_SYS_TEXT_BASE was defined in imx6_spl.h and I was seeing
previously some warning related to the duplication of the said macro.

I thought it would be great to remove the warning messages so that is why
I added the macro.

Regards,

john



 Stefano is right.

 You can simply remove this piece:

 --- a/include/configs/mx6sabre_common.h
 +++ b/include/configs/mx6sabre_common.h
 @@ -95,9 +95,6 @@
  #define CONFIG_BOOTDELAY   1

  #define CONFIG_LOADADDR0x1200
 -#ifndef CONFIG_SYS_TEXT_BASE
 -#define CONFIG_SYS_TEXT_BASE   0x1780
 -#endif

 Sorry, I meant to remove only the ifdef:

 --- a/include/configs/mx6sabre_common.h
 +++ b/include/configs/mx6sabre_common.h
 @@ -95,9 +95,7 @@
  #define CONFIG_BOOTDELAY   1

  #define CONFIG_LOADADDR0x1200
 -#ifndef CONFIG_SYS_TEXT_BASE
  #define CONFIG_SYS_TEXT_BASE   0x1780
 -#endif
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread John Tobias
Hi Fabio, Stefano,

Thanks for reviewing my work and for accepting it.

Regards,

John

On Thu, Nov 13, 2014 at 6:42 AM, Stefano Babic sba...@denx.de wrote:
 Hi Fabio, John,

 On 13/11/2014 15:39, Fabio Estevam wrote:
 Hi Stefano,

 On Thu, Nov 13, 2014 at 10:49 AM, Fabio Estevam feste...@gmail.com wrote:

 Sorry, I meant to remove only the ifdef:

 --- a/include/configs/mx6sabre_common.h
 +++ b/include/configs/mx6sabre_common.h
 @@ -95,9 +95,7 @@
  #define CONFIG_BOOTDELAY   1

  #define CONFIG_LOADADDR0x1200
 -#ifndef CONFIG_SYS_TEXT_BASE
  #define CONFIG_SYS_TEXT_BASE   0x1780
 -#endif

 Should John resend the series again with this change or can you remove
 the ifndef manually while applying it?


 We already agree about the changes. There is no need to resend the
 patchset, I will fix it when I apply the patchset.

 Best regards,
 Stefano Babic



 --
 =
 DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
 HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
 Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba...@denx.de
 =
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v7 4/5] imx6: add spl in the header file

2014-11-13 Thread Stefano Babic
Hi John,

On 13/11/2014 16:47, John Tobias wrote:

 The CONFIG_SYS_TEXT_BASE was defined in imx6_spl.h and I was seeing
 previously some warning related to the duplication of the said macro.
 
 I thought it would be great to remove the warning messages so that is why
 I added the macro.

Maybe it was in a development phase where, or it was added as extra
option by compiling. I confirm that it compile fine without warnings
after removing.

Best regards,
Stefano Babic


-- 
=
DENX Software Engineering GmbH, MD: Wolfgang Denk  Detlev Zundel
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sba...@denx.de
=
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot