Commit 8d622085d61265c0cf35999634757b04862d464a

Authored by Mugunthan V N
Committed by Greg Kroah-Hartman
1 parent 7a66eeb23e

ARM: dts: dra7-evm: fix qspi device tree partition size

commit 69d2626f97b7f017ee4416b7dc071e9499c2c944 upstream.

64KiB is allocated for qspi dtb partition which is not
sufficient, so updating the partition table size to 512KiB
for device tree partition.

This also aligns the QSPI partition definitions between
kernel and U-Boot.

Fixes: dc2dd5b8 ("ARM: dts: dra7: Add qspi device")

Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
Signed-off-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>

Showing 1 changed file with 5 additions and 5 deletions Side-by-side Diff

arch/arm/boot/dts/dra7-evm.dts
... ... @@ -399,23 +399,23 @@
399 399 };
400 400 partition@5 {
401 401 label = "QSPI.u-boot-spl-os";
402   - reg = <0x00140000 0x00010000>;
  402 + reg = <0x00140000 0x00080000>;
403 403 };
404 404 partition@6 {
405 405 label = "QSPI.u-boot-env";
406   - reg = <0x00150000 0x00010000>;
  406 + reg = <0x001c0000 0x00010000>;
407 407 };
408 408 partition@7 {
409 409 label = "QSPI.u-boot-env.backup1";
410   - reg = <0x00160000 0x0010000>;
  410 + reg = <0x001d0000 0x0010000>;
411 411 };
412 412 partition@8 {
413 413 label = "QSPI.kernel";
414   - reg = <0x00170000 0x0800000>;
  414 + reg = <0x001e0000 0x0800000>;
415 415 };
416 416 partition@9 {
417 417 label = "QSPI.file-system";
418   - reg = <0x00970000 0x01690000>;
  418 + reg = <0x009e0000 0x01620000>;
419 419 };
420 420 };
421 421 };