All of lore.kernel.org
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] rockchip: doc: Fix U-Boot proper location for falcon
@ 2017-11-10 11:48 Jagan Teki
  2017-11-10 11:48 ` [U-Boot] [PATCH 2/2] rockchip: configs: vyasa: Update falcon offsets Jagan Teki
                   ` (3 more replies)
  0 siblings, 4 replies; 8+ messages in thread
From: Jagan Teki @ 2017-11-10 11:48 UTC (permalink / raw)
  To: u-boot

This patch fixed U-Boot proper location has been
missed to update in bewlo commit
"rockchip: doc: update U-Boot location info"
(sha1: 73e6dbe855f357a8330cfd53ff3033303611c1ad)

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
---
Note: Fix for 2017.11

 doc/README.rockchip | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/doc/README.rockchip b/doc/README.rockchip
index 9d5af3d..dffa6d5 100644
--- a/doc/README.rockchip
+++ b/doc/README.rockchip
@@ -166,7 +166,7 @@ To write an image that boots from an SD card (assumed to be /dev/mmcblk0):
    ./tools/mkimage -n rk3288 -T rksd -d ./tpl/u-boot-tpl.bin out &&
     cat ./spl/u-boot-spl-dtb.bin >> out &&
     sudo dd if=out of=/dev/mmcblk0 seek=64 &&
-    sudo dd if=u-boot-dtb.img of=/dev/mmcblk0 seek=256
+    sudo dd if=u-boot-dtb.img of=/dev/mmcblk0 seek=16384
 
 Booting from an SD card on RK3188
 =================================
-- 
2.7.4

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

* [U-Boot] [PATCH 2/2] rockchip: configs: vyasa: Update falcon offsets
  2017-11-10 11:48 [U-Boot] [PATCH 1/2] rockchip: doc: Fix U-Boot proper location for falcon Jagan Teki
@ 2017-11-10 11:48 ` Jagan Teki
  2017-11-10 11:56   ` [U-Boot] [U-Boot, " Philipp Tomsich
                     ` (2 more replies)
  2017-11-10 11:56 ` [U-Boot] [U-Boot, 1/2] rockchip: doc: Fix U-Boot proper location for falcon Philipp Tomsich
                   ` (2 subsequent siblings)
  3 siblings, 3 replies; 8+ messages in thread
From: Jagan Teki @ 2017-11-10 11:48 UTC (permalink / raw)
  To: u-boot

Update the falcon offsets for args to 16MB and kernel to 17MB
Since the below commit updated U-Boot proper location along
with rockchip boot image offsets
"spl: set SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR to 0x4000 for rockchip"
(sha1: 8f4d62b403db45dfa8b1cadb9da9096c79b7df47)

Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
---
Note: Fix for 2017.11

 include/configs/vyasa-rk3288.h | 8 ++++----
 1 file changed, 4 insertions(+), 4 deletions(-)

diff --git a/include/configs/vyasa-rk3288.h b/include/configs/vyasa-rk3288.h
index 8774e42..c8c7fc7 100644
--- a/include/configs/vyasa-rk3288.h
+++ b/include/configs/vyasa-rk3288.h
@@ -31,10 +31,10 @@
 #define CONFIG_SYS_SPL_ARGS_ADDR	0x0ffe5000
 #define CONFIG_CMD_SPL_WRITE_SIZE      (128 * SZ_1K)
 
-/* Falcon Mode - MMC support: args at 1MB kernel at 2MB */
-#define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR  0x800   /* 1MB */
-#define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS (CONFIG_CMD_SPL_WRITE_SIZE / 512)
-#define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR        0x1000  /* 2MB */
+/* Falcon Mode - MMC support: args at 16MB kernel at 17MB */
+#define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTOR		0x8000	/* 16MB */
+#define CONFIG_SYS_MMCSD_RAW_MODE_ARGS_SECTORS		(CONFIG_CMD_SPL_WRITE_SIZE / 512)
+#define CONFIG_SYS_MMCSD_RAW_MODE_KERNEL_SECTOR		0x8800	/* 17MB */
 #endif
 
 #endif
-- 
2.7.4

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

* [U-Boot] [U-Boot, 1/2] rockchip: doc: Fix U-Boot proper location for falcon
  2017-11-10 11:48 [U-Boot] [PATCH 1/2] rockchip: doc: Fix U-Boot proper location for falcon Jagan Teki
  2017-11-10 11:48 ` [U-Boot] [PATCH 2/2] rockchip: configs: vyasa: Update falcon offsets Jagan Teki
@ 2017-11-10 11:56 ` Philipp Tomsich
  2017-11-10 11:56 ` Philipp Tomsich
  2017-11-10 13:10 ` Philipp Tomsich
  3 siblings, 0 replies; 8+ messages in thread
From: Philipp Tomsich @ 2017-11-10 11:56 UTC (permalink / raw)
  To: u-boot

> This patch fixed U-Boot proper location has been
> missed to update in bewlo commit
> "rockchip: doc: update U-Boot location info"
> (sha1: 73e6dbe855f357a8330cfd53ff3033303611c1ad)
> 
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> ---
> Note: Fix for 2017.11
> 
>  doc/README.rockchip | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

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

* [U-Boot] [U-Boot, 2/2] rockchip: configs: vyasa: Update falcon offsets
  2017-11-10 11:48 ` [U-Boot] [PATCH 2/2] rockchip: configs: vyasa: Update falcon offsets Jagan Teki
@ 2017-11-10 11:56   ` Philipp Tomsich
  2017-11-10 11:56   ` Philipp Tomsich
  2017-11-10 13:10   ` Philipp Tomsich
  2 siblings, 0 replies; 8+ messages in thread
From: Philipp Tomsich @ 2017-11-10 11:56 UTC (permalink / raw)
  To: u-boot

> Update the falcon offsets for args to 16MB and kernel to 17MB
> Since the below commit updated U-Boot proper location along
> with rockchip boot image offsets
> "spl: set SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR to 0x4000 for rockchip"
> (sha1: 8f4d62b403db45dfa8b1cadb9da9096c79b7df47)
> 
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> ---
> Note: Fix for 2017.11
> 
>  include/configs/vyasa-rk3288.h | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 

Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

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

* [U-Boot] [U-Boot, 1/2] rockchip: doc: Fix U-Boot proper location for falcon
  2017-11-10 11:48 [U-Boot] [PATCH 1/2] rockchip: doc: Fix U-Boot proper location for falcon Jagan Teki
  2017-11-10 11:48 ` [U-Boot] [PATCH 2/2] rockchip: configs: vyasa: Update falcon offsets Jagan Teki
  2017-11-10 11:56 ` [U-Boot] [U-Boot, 1/2] rockchip: doc: Fix U-Boot proper location for falcon Philipp Tomsich
@ 2017-11-10 11:56 ` Philipp Tomsich
  2017-11-10 13:10 ` Philipp Tomsich
  3 siblings, 0 replies; 8+ messages in thread
From: Philipp Tomsich @ 2017-11-10 11:56 UTC (permalink / raw)
  To: u-boot

> This patch fixed U-Boot proper location has been
> missed to update in bewlo commit
> "rockchip: doc: update U-Boot location info"
> (sha1: 73e6dbe855f357a8330cfd53ff3033303611c1ad)
> 
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> ---
> Note: Fix for 2017.11
> 
>  doc/README.rockchip | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

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

* [U-Boot] [U-Boot, 2/2] rockchip: configs: vyasa: Update falcon offsets
  2017-11-10 11:48 ` [U-Boot] [PATCH 2/2] rockchip: configs: vyasa: Update falcon offsets Jagan Teki
  2017-11-10 11:56   ` [U-Boot] [U-Boot, " Philipp Tomsich
@ 2017-11-10 11:56   ` Philipp Tomsich
  2017-11-10 13:10   ` Philipp Tomsich
  2 siblings, 0 replies; 8+ messages in thread
From: Philipp Tomsich @ 2017-11-10 11:56 UTC (permalink / raw)
  To: u-boot

> Update the falcon offsets for args to 16MB and kernel to 17MB
> Since the below commit updated U-Boot proper location along
> with rockchip boot image offsets
> "spl: set SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR to 0x4000 for rockchip"
> (sha1: 8f4d62b403db45dfa8b1cadb9da9096c79b7df47)
> 
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> ---
> Note: Fix for 2017.11
> 
>  include/configs/vyasa-rk3288.h | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 

Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>

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

* [U-Boot] [U-Boot, 1/2] rockchip: doc: Fix U-Boot proper location for falcon
  2017-11-10 11:48 [U-Boot] [PATCH 1/2] rockchip: doc: Fix U-Boot proper location for falcon Jagan Teki
                   ` (2 preceding siblings ...)
  2017-11-10 11:56 ` Philipp Tomsich
@ 2017-11-10 13:10 ` Philipp Tomsich
  3 siblings, 0 replies; 8+ messages in thread
From: Philipp Tomsich @ 2017-11-10 13:10 UTC (permalink / raw)
  To: u-boot

> This patch fixed U-Boot proper location has been
> missed to update in bewlo commit
> "rockchip: doc: update U-Boot location info"
> (sha1: 73e6dbe855f357a8330cfd53ff3033303611c1ad)
> 
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> ---
> Note: Fix for 2017.11
> 
>  doc/README.rockchip | 2 +-
>  1 file changed, 1 insertion(+), 1 deletion(-)
> 

Applied to u-boot-rockchip, thanks!

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

* [U-Boot] [U-Boot, 2/2] rockchip: configs: vyasa: Update falcon offsets
  2017-11-10 11:48 ` [U-Boot] [PATCH 2/2] rockchip: configs: vyasa: Update falcon offsets Jagan Teki
  2017-11-10 11:56   ` [U-Boot] [U-Boot, " Philipp Tomsich
  2017-11-10 11:56   ` Philipp Tomsich
@ 2017-11-10 13:10   ` Philipp Tomsich
  2 siblings, 0 replies; 8+ messages in thread
From: Philipp Tomsich @ 2017-11-10 13:10 UTC (permalink / raw)
  To: u-boot

> Update the falcon offsets for args to 16MB and kernel to 17MB
> Since the below commit updated U-Boot proper location along
> with rockchip boot image offsets
> "spl: set SYS_MMCSD_RAW_MODE_U_BOOT_SECTOR to 0x4000 for rockchip"
> (sha1: 8f4d62b403db45dfa8b1cadb9da9096c79b7df47)
> 
> Signed-off-by: Jagan Teki <jagan@amarulasolutions.com>
> Acked-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> Reviewed-by: Philipp Tomsich <philipp.tomsich@theobroma-systems.com>
> ---
> Note: Fix for 2017.11
> 
>  include/configs/vyasa-rk3288.h | 8 ++++----
>  1 file changed, 4 insertions(+), 4 deletions(-)
> 

Applied to u-boot-rockchip, thanks!

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

end of thread, other threads:[~2017-11-10 13:10 UTC | newest]

Thread overview: 8+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2017-11-10 11:48 [U-Boot] [PATCH 1/2] rockchip: doc: Fix U-Boot proper location for falcon Jagan Teki
2017-11-10 11:48 ` [U-Boot] [PATCH 2/2] rockchip: configs: vyasa: Update falcon offsets Jagan Teki
2017-11-10 11:56   ` [U-Boot] [U-Boot, " Philipp Tomsich
2017-11-10 11:56   ` Philipp Tomsich
2017-11-10 13:10   ` Philipp Tomsich
2017-11-10 11:56 ` [U-Boot] [U-Boot, 1/2] rockchip: doc: Fix U-Boot proper location for falcon Philipp Tomsich
2017-11-10 11:56 ` Philipp Tomsich
2017-11-10 13:10 ` Philipp Tomsich

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.