All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 0/2] board: ti: am57xx: Add DT support for BeagleBoard-X15 revC
@ 2017-08-23  6:09 Lokesh Vutla
  2017-08-23  6:09 ` [U-Boot] [PATCH 1/2] board: ti: am57xx: Add dt " Lokesh Vutla
                   ` (2 more replies)
  0 siblings, 3 replies; 10+ messages in thread
From: Lokesh Vutla @ 2017-08-23  6:09 UTC (permalink / raw)
  To: u-boot

Now that we have synced DTS from Latest Linux kernel, add dt support
for BeagleBoard-X15 revC. Board detection support is already added for
this board.

Lokesh Vutla (2):
  board: ti: am57xx: Add dt support for BeagleBoard-X15 revC
  env: ti: boot: Select dtb name for X15 revC

 arch/arm/dts/Makefile           | 1 +
 board/ti/am57xx/board.c         | 3 +++
 configs/am57xx_evm_defconfig    | 2 +-
 configs/am57xx_hs_evm_defconfig | 2 +-
 include/environment/ti/boot.h   | 2 ++
 5 files changed, 8 insertions(+), 2 deletions(-)

-- 
2.13.0

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

* [U-Boot] [PATCH 1/2] board: ti: am57xx: Add dt support for BeagleBoard-X15 revC
  2017-08-23  6:09 [U-Boot] [PATCH 0/2] board: ti: am57xx: Add DT support for BeagleBoard-X15 revC Lokesh Vutla
@ 2017-08-23  6:09 ` Lokesh Vutla
  2017-08-25  1:04   ` Tom Rini
                     ` (2 more replies)
  2017-08-23  6:09 ` [U-Boot] [PATCH 2/2] env: ti: boot: Select dtb name for X15 revC Lokesh Vutla
  2017-08-23  7:55 ` [U-Boot] [PATCH 0/2] board: ti: am57xx: Add DT support for BeagleBoard-X15 revC Łukasz Majewski
  2 siblings, 3 replies; 10+ messages in thread
From: Lokesh Vutla @ 2017-08-23  6:09 UTC (permalink / raw)
  To: u-boot

Add support for selecting proper dtb for
am57xx BeagleBoard X15 revC u-boot from FIT

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
---
 arch/arm/dts/Makefile           | 1 +
 board/ti/am57xx/board.c         | 3 +++
 configs/am57xx_evm_defconfig    | 2 +-
 configs/am57xx_hs_evm_defconfig | 2 +-
 4 files changed, 6 insertions(+), 2 deletions(-)

diff --git a/arch/arm/dts/Makefile b/arch/arm/dts/Makefile
index f1dbdce9be..174c1c3f11 100644
--- a/arch/arm/dts/Makefile
+++ b/arch/arm/dts/Makefile
@@ -178,6 +178,7 @@ dtb-$(CONFIG_TARGET_DRA7XX_EVM) += dra72-evm.dtb dra7-evm.dtb	\
 	dra72-evm-revc.dtb dra71-evm.dtb dra76-evm.dtb
 dtb-$(CONFIG_TARGET_AM57XX_EVM) += am57xx-beagle-x15.dtb \
 	am57xx-beagle-x15-revb1.dtb \
+	am57xx-beagle-x15-revc.dtb \
 	am572x-idk.dtb	\
 	am571x-idk.dtb
 dtb-$(CONFIG_TARGET_STV0991) += stv0991.dtb
diff --git a/board/ti/am57xx/board.c b/board/ti/am57xx/board.c
index 3d15cb1dbf..f79aefd400 100644
--- a/board/ti/am57xx/board.c
+++ b/board/ti/am57xx/board.c
@@ -1063,6 +1063,9 @@ int board_fit_config_name_match(const char *name)
 		if (board_is_x15_revb1()) {
 			if (!strcmp(name, "am57xx-beagle-x15-revb1"))
 				return 0;
+		} else if (board_is_x15_revc()) {
+			if (!strcmp(name, "am57xx-beagle-x15-revc"))
+				return 0;
 		} else if (!strcmp(name, "am57xx-beagle-x15")) {
 			return 0;
 		}
diff --git a/configs/am57xx_evm_defconfig b/configs/am57xx_evm_defconfig
index 11be1ad27f..f3fcda7b61 100644
--- a/configs/am57xx_evm_defconfig
+++ b/configs/am57xx_evm_defconfig
@@ -40,7 +40,7 @@ CONFIG_CMD_SPL=y
 CONFIG_ISO_PARTITION=y
 CONFIG_OF_CONTROL=y
 CONFIG_SPL_OF_CONTROL=y
-CONFIG_OF_LIST="am57xx-beagle-x15 am57xx-beagle-x15-revb1 am572x-idk am571x-idk"
+CONFIG_OF_LIST="am57xx-beagle-x15 am57xx-beagle-x15-revb1 am57xx-beagle-x15-revc am572x-idk am571x-idk"
 CONFIG_DM=y
 CONFIG_SPL_DM=y
 # CONFIG_BLK is not set
diff --git a/configs/am57xx_hs_evm_defconfig b/configs/am57xx_hs_evm_defconfig
index 91baa2b53e..d322c37326 100644
--- a/configs/am57xx_hs_evm_defconfig
+++ b/configs/am57xx_hs_evm_defconfig
@@ -43,7 +43,7 @@ CONFIG_FASTBOOT_FLASH_MMC_DEV=1
 CONFIG_ISO_PARTITION=y
 CONFIG_OF_CONTROL=y
 CONFIG_SPL_OF_CONTROL=y
-CONFIG_OF_LIST="am57xx-beagle-x15 am57xx-beagle-x15-revb1 am572x-idk am571x-idk"
+CONFIG_OF_LIST="am57xx-beagle-x15 am57xx-beagle-x15-revb1 am57xx-beagle-x15-revc am572x-idk am571x-idk"
 CONFIG_DM=y
 CONFIG_SPL_DM=y
 # CONFIG_BLK is not set
-- 
2.13.0

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

* [U-Boot] [PATCH 2/2] env: ti: boot: Select dtb name for X15 revC
  2017-08-23  6:09 [U-Boot] [PATCH 0/2] board: ti: am57xx: Add DT support for BeagleBoard-X15 revC Lokesh Vutla
  2017-08-23  6:09 ` [U-Boot] [PATCH 1/2] board: ti: am57xx: Add dt " Lokesh Vutla
@ 2017-08-23  6:09 ` Lokesh Vutla
  2017-08-25  1:05   ` Tom Rini
  2017-09-12 13:31   ` [U-Boot] [U-Boot, " Tom Rini
  2017-08-23  7:55 ` [U-Boot] [PATCH 0/2] board: ti: am57xx: Add DT support for BeagleBoard-X15 revC Łukasz Majewski
  2 siblings, 2 replies; 10+ messages in thread
From: Lokesh Vutla @ 2017-08-23  6:09 UTC (permalink / raw)
  To: u-boot

Select dtb name for am57xx BeagleBoard-X15 revC

Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
---
 include/environment/ti/boot.h | 2 ++
 1 file changed, 2 insertions(+)

diff --git a/include/environment/ti/boot.h b/include/environment/ti/boot.h
index 01f7f7a300..dabfb37204 100644
--- a/include/environment/ti/boot.h
+++ b/include/environment/ti/boot.h
@@ -50,6 +50,8 @@
 			"setenv fdtfile am57xx-beagle-x15.dtb; fi;" \
 		"if test $board_name = beagle_x15_revb1; then " \
 			"setenv fdtfile am57xx-beagle-x15-revb1.dtb; fi;" \
+		"if test $board_name = beagle_x15_revc; then " \
+			"setenv fdtfile am57xx-beagle-x15-revc.dtb; fi;" \
 		"if test $board_name = am572x_idk; then " \
 			"setenv fdtfile am572x-idk.dtb; fi;" \
 		"if test $board_name = am57xx_evm; then " \
-- 
2.13.0

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

* [U-Boot] [PATCH 0/2] board: ti: am57xx: Add DT support for BeagleBoard-X15 revC
  2017-08-23  6:09 [U-Boot] [PATCH 0/2] board: ti: am57xx: Add DT support for BeagleBoard-X15 revC Lokesh Vutla
  2017-08-23  6:09 ` [U-Boot] [PATCH 1/2] board: ti: am57xx: Add dt " Lokesh Vutla
  2017-08-23  6:09 ` [U-Boot] [PATCH 2/2] env: ti: boot: Select dtb name for X15 revC Lokesh Vutla
@ 2017-08-23  7:55 ` Łukasz Majewski
  2 siblings, 0 replies; 10+ messages in thread
From: Łukasz Majewski @ 2017-08-23  7:55 UTC (permalink / raw)
  To: u-boot

[-- Warning: decoded text below may be mangled, UTF-8 assumed --]
[-- Attachment #1: Type: text/plain; charset="windows-1254", Size: 902 bytes --]

On 08/23/2017 08:09 AM, Lokesh Vutla wrote:
> Now that we have synced DTS from Latest Linux kernel, add dt support
> for BeagleBoard-X15 revC. Board detection support is already added for
> this board.
>
> Lokesh Vutla (2):
>   board: ti: am57xx: Add dt support for BeagleBoard-X15 revC
>   env: ti: boot: Select dtb name for X15 revC
>
>  arch/arm/dts/Makefile           | 1 +
>  board/ti/am57xx/board.c         | 3 +++
>  configs/am57xx_evm_defconfig    | 2 +-
>  configs/am57xx_hs_evm_defconfig | 2 +-
>  include/environment/ti/boot.h   | 2 ++
>  5 files changed, 8 insertions(+), 2 deletions(-)
>

Reviewed-by: Łukasz Majewski <lukma@denx.de>

-- 
Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-10 Fax: (+49)-8142-66989-80 Email: wd at denx.de

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

* [U-Boot] [PATCH 1/2] board: ti: am57xx: Add dt support for BeagleBoard-X15 revC
  2017-08-23  6:09 ` [U-Boot] [PATCH 1/2] board: ti: am57xx: Add dt " Lokesh Vutla
@ 2017-08-25  1:04   ` Tom Rini
  2017-08-28 11:19   ` [U-Boot] [U-Boot, " Tom Rini
  2017-09-12 13:30   ` Tom Rini
  2 siblings, 0 replies; 10+ messages in thread
From: Tom Rini @ 2017-08-25  1:04 UTC (permalink / raw)
  To: u-boot

On Wed, Aug 23, 2017 at 11:39:06AM +0530, Lokesh Vutla wrote:

> Add support for selecting proper dtb for
> am57xx BeagleBoard X15 revC u-boot from FIT
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Reviewed-by: Tom Rini <trini@konsulko.com>

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

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

* [U-Boot] [PATCH 2/2] env: ti: boot: Select dtb name for X15 revC
  2017-08-23  6:09 ` [U-Boot] [PATCH 2/2] env: ti: boot: Select dtb name for X15 revC Lokesh Vutla
@ 2017-08-25  1:05   ` Tom Rini
  2017-09-12 13:31   ` [U-Boot] [U-Boot, " Tom Rini
  1 sibling, 0 replies; 10+ messages in thread
From: Tom Rini @ 2017-08-25  1:05 UTC (permalink / raw)
  To: u-boot

On Wed, Aug 23, 2017 at 11:39:07AM +0530, Lokesh Vutla wrote:

> Select dtb name for am57xx BeagleBoard-X15 revC
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>

Reviewed-by: Tom Rini <trini@konsulko.com>

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

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

* [U-Boot] [U-Boot, 1/2] board: ti: am57xx: Add dt support for BeagleBoard-X15 revC
  2017-08-23  6:09 ` [U-Boot] [PATCH 1/2] board: ti: am57xx: Add dt " Lokesh Vutla
  2017-08-25  1:04   ` Tom Rini
@ 2017-08-28 11:19   ` Tom Rini
  2017-08-29  0:08     ` Robert Nelson
  2017-09-12 13:30   ` Tom Rini
  2 siblings, 1 reply; 10+ messages in thread
From: Tom Rini @ 2017-08-28 11:19 UTC (permalink / raw)
  To: u-boot

On Wed, Aug 23, 2017 at 11:39:06AM +0530, Lokesh Vutla wrote:

> Add support for selecting proper dtb for
> am57xx BeagleBoard X15 revC u-boot from FIT
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>
> ---
>  arch/arm/dts/Makefile           | 1 +
>  board/ti/am57xx/board.c         | 3 +++
>  configs/am57xx_evm_defconfig    | 2 +-
>  configs/am57xx_hs_evm_defconfig | 2 +-
>  4 files changed, 6 insertions(+), 2 deletions(-)

am57xx-beagle-x15-revc.dts isn't included, what series brings that in?
Thanks!

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

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

* [U-Boot] [U-Boot, 1/2] board: ti: am57xx: Add dt support for BeagleBoard-X15 revC
  2017-08-28 11:19   ` [U-Boot] [U-Boot, " Tom Rini
@ 2017-08-29  0:08     ` Robert Nelson
  0 siblings, 0 replies; 10+ messages in thread
From: Robert Nelson @ 2017-08-29  0:08 UTC (permalink / raw)
  To: u-boot

On Mon, Aug 28, 2017 at 6:19 AM, Tom Rini <trini@konsulko.com> wrote:
> On Wed, Aug 23, 2017 at 11:39:06AM +0530, Lokesh Vutla wrote:
>
>> Add support for selecting proper dtb for
>> am57xx BeagleBoard X15 revC u-boot from FIT
>>
>> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
>> Reviewed-by: Tom Rini <trini@konsulko.com>
>> ---
>>  arch/arm/dts/Makefile           | 1 +
>>  board/ti/am57xx/board.c         | 3 +++
>>  configs/am57xx_evm_defconfig    | 2 +-
>>  configs/am57xx_hs_evm_defconfig | 2 +-
>>  4 files changed, 6 insertions(+), 2 deletions(-)
>
> am57xx-beagle-x15-revc.dts isn't included, what series brings that in?
> Thanks!

it's pretty small, so got buried in:

"arm: dts: dra7: sync DT with latest Linux"

https://patchwork.ozlabs.org/patch/803942/

Regards,

-- 
Robert Nelson
https://rcn-ee.com/

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

* [U-Boot] [U-Boot, 1/2] board: ti: am57xx: Add dt support for BeagleBoard-X15 revC
  2017-08-23  6:09 ` [U-Boot] [PATCH 1/2] board: ti: am57xx: Add dt " Lokesh Vutla
  2017-08-25  1:04   ` Tom Rini
  2017-08-28 11:19   ` [U-Boot] [U-Boot, " Tom Rini
@ 2017-09-12 13:30   ` Tom Rini
  2 siblings, 0 replies; 10+ messages in thread
From: Tom Rini @ 2017-09-12 13:30 UTC (permalink / raw)
  To: u-boot

On Wed, Aug 23, 2017 at 11:39:06AM +0530, Lokesh Vutla wrote:

> Add support for selecting proper dtb for
> am57xx BeagleBoard X15 revC u-boot from FIT
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>

Applied to u-boot/master, thanks!

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

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

* [U-Boot] [U-Boot, 2/2] env: ti: boot: Select dtb name for X15 revC
  2017-08-23  6:09 ` [U-Boot] [PATCH 2/2] env: ti: boot: Select dtb name for X15 revC Lokesh Vutla
  2017-08-25  1:05   ` Tom Rini
@ 2017-09-12 13:31   ` Tom Rini
  1 sibling, 0 replies; 10+ messages in thread
From: Tom Rini @ 2017-09-12 13:31 UTC (permalink / raw)
  To: u-boot

On Wed, Aug 23, 2017 at 11:39:07AM +0530, Lokesh Vutla wrote:

> Select dtb name for am57xx BeagleBoard-X15 revC
> 
> Signed-off-by: Lokesh Vutla <lokeshvutla@ti.com>
> Reviewed-by: Tom Rini <trini@konsulko.com>

Applied to u-boot/master, thanks!

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

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

end of thread, other threads:[~2017-09-12 13:31 UTC | newest]

Thread overview: 10+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-08-23  6:09 [U-Boot] [PATCH 0/2] board: ti: am57xx: Add DT support for BeagleBoard-X15 revC Lokesh Vutla
2017-08-23  6:09 ` [U-Boot] [PATCH 1/2] board: ti: am57xx: Add dt " Lokesh Vutla
2017-08-25  1:04   ` Tom Rini
2017-08-28 11:19   ` [U-Boot] [U-Boot, " Tom Rini
2017-08-29  0:08     ` Robert Nelson
2017-09-12 13:30   ` Tom Rini
2017-08-23  6:09 ` [U-Boot] [PATCH 2/2] env: ti: boot: Select dtb name for X15 revC Lokesh Vutla
2017-08-25  1:05   ` Tom Rini
2017-09-12 13:31   ` [U-Boot] [U-Boot, " Tom Rini
2017-08-23  7:55 ` [U-Boot] [PATCH 0/2] board: ti: am57xx: Add DT support for BeagleBoard-X15 revC Łukasz Majewski

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.