All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH] arm: spear: Move to generic board support
@ 2015-02-03  7:27 Stefan Roese
  2015-02-04  5:03 ` Viresh Kumar
  2015-03-06 15:44 ` [U-Boot] " Tom Rini
  0 siblings, 2 replies; 3+ messages in thread
From: Stefan Roese @ 2015-02-03  7:27 UTC (permalink / raw)
  To: u-boot

Without this change the board support for these SPEAr boards would
be dropped soon. Generic board support seems to work just fine.

Signed-off-by: Stefan Roese <sr@denx.de>
Cc: Viresh Kumar <viresh.kumar@linaro.org>
Cc: Vipin Kumar <vk.vipin@gmail.com>
---
Unfortunately I missed the merge window by one day. I totally forget to
check here. But I'm currently busy with updating U-Boot on at least
the x600 board. Including updated SPL support (which is quite outdated).
So I really would like to not have these SPEAr board dropped from
mainline for now.

Thanks,
Stefan

 include/configs/spear-common.h | 2 ++
 include/configs/x600.h         | 1 +
 2 files changed, 3 insertions(+)

diff --git a/include/configs/spear-common.h b/include/configs/spear-common.h
index a11f4ed..16281f5 100644
--- a/include/configs/spear-common.h
+++ b/include/configs/spear-common.h
@@ -11,6 +11,8 @@
  * Common configurations used for both spear3xx as well as spear6xx
  */
 
+#define CONFIG_SYS_GENERIC_BOARD
+
 /* U-boot Load Address */
 #define CONFIG_SYS_TEXT_BASE			0x00700000
 
diff --git a/include/configs/x600.h b/include/configs/x600.h
index 04187c0..241bf65 100644
--- a/include/configs/x600.h
+++ b/include/configs/x600.h
@@ -16,6 +16,7 @@
  */
 #define CONFIG_SPEAR600				/* SPEAr600 SoC */
 #define CONFIG_X600				/* on X600 board */
+#define CONFIG_SYS_GENERIC_BOARD
 
 #include <asm/arch/hardware.h>
 
-- 
2.2.2

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

* [U-Boot] [PATCH] arm: spear: Move to generic board support
  2015-02-03  7:27 [U-Boot] [PATCH] arm: spear: Move to generic board support Stefan Roese
@ 2015-02-04  5:03 ` Viresh Kumar
  2015-03-06 15:44 ` [U-Boot] " Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Viresh Kumar @ 2015-02-04  5:03 UTC (permalink / raw)
  To: u-boot

On 3 February 2015 at 12:57, Stefan Roese <sr@denx.de> wrote:
> Without this change the board support for these SPEAr boards would
> be dropped soon. Generic board support seems to work just fine.
>
> Signed-off-by: Stefan Roese <sr@denx.de>
> Cc: Viresh Kumar <viresh.kumar@linaro.org>
> Cc: Vipin Kumar <vk.vipin@gmail.com>
> ---
> Unfortunately I missed the merge window by one day. I totally forget to
> check here. But I'm currently busy with updating U-Boot on at least
> the x600 board. Including updated SPL support (which is quite outdated).
> So I really would like to not have these SPEAr board dropped from
> mainline for now.
>
> Thanks,
> Stefan
>
>  include/configs/spear-common.h | 2 ++
>  include/configs/x600.h         | 1 +
>  2 files changed, 3 insertions(+)
>
> diff --git a/include/configs/spear-common.h b/include/configs/spear-common.h
> index a11f4ed..16281f5 100644
> --- a/include/configs/spear-common.h
> +++ b/include/configs/spear-common.h
> @@ -11,6 +11,8 @@
>   * Common configurations used for both spear3xx as well as spear6xx
>   */
>
> +#define CONFIG_SYS_GENERIC_BOARD
> +
>  /* U-boot Load Address */
>  #define CONFIG_SYS_TEXT_BASE                   0x00700000
>
> diff --git a/include/configs/x600.h b/include/configs/x600.h
> index 04187c0..241bf65 100644
> --- a/include/configs/x600.h
> +++ b/include/configs/x600.h
> @@ -16,6 +16,7 @@
>   */
>  #define CONFIG_SPEAR600                                /* SPEAr600 SoC */
>  #define CONFIG_X600                            /* on X600 board */
> +#define CONFIG_SYS_GENERIC_BOARD
>
>  #include <asm/arch/hardware.h>

Looks fine to me..

Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

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

* [U-Boot] arm: spear: Move to generic board support
  2015-02-03  7:27 [U-Boot] [PATCH] arm: spear: Move to generic board support Stefan Roese
  2015-02-04  5:03 ` Viresh Kumar
@ 2015-03-06 15:44 ` Tom Rini
  1 sibling, 0 replies; 3+ messages in thread
From: Tom Rini @ 2015-03-06 15:44 UTC (permalink / raw)
  To: u-boot

On Tue, Feb 03, 2015 at 08:27:21AM +0100, Stefan Roese wrote:

> Without this change the board support for these SPEAr boards would
> be dropped soon. Generic board support seems to work just fine.
> 
> Signed-off-by: Stefan Roese <sr@denx.de>
> Cc: Viresh Kumar <viresh.kumar@linaro.org>
> Cc: Vipin Kumar <vk.vipin@gmail.com>
> Acked-by: Viresh Kumar <viresh.kumar@linaro.org>

Applied to u-boot/master, thanks!

-- 
Tom
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20150306/ce06bdf7/attachment.sig>

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

end of thread, other threads:[~2015-03-06 15:44 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2015-02-03  7:27 [U-Boot] [PATCH] arm: spear: Move to generic board support Stefan Roese
2015-02-04  5:03 ` Viresh Kumar
2015-03-06 15:44 ` [U-Boot] " Tom Rini

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.