]> git.dujemihanovic.xyz Git - u-boot.git/commitdiff
lib: fdtdec: Rename routine fdtdec_setup_memory_size()
authorSiva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Mon, 16 Jul 2018 10:26:11 +0000 (15:56 +0530)
committerMichal Simek <michal.simek@xilinx.com>
Thu, 19 Jul 2018 08:49:56 +0000 (10:49 +0200)
This patch renames the routine fdtdec_setup_memory_size()
to fdtdec_setup_mem_size_base() as it now fills the
mem base as well along with size.

Signed-off-by: Siva Durga Prasad Paladugu <siva.durga.paladugu@xilinx.com>
Signed-off-by: Michal Simek <michal.simek@xilinx.com>
Reviewed-by: Tom Rini <trini@konsulko.com>
31 files changed:
arch/arm/mach-mvebu/arm64-common.c
arch/arm/mach-socfpga/misc.c
board/broadcom/bcmstb/bcmstb.c
board/emulation/qemu-arm/qemu-arm.c
board/renesas/alt/alt.c
board/renesas/blanche/blanche.c
board/renesas/draak/draak.c
board/renesas/eagle/eagle.c
board/renesas/ebisu/ebisu.c
board/renesas/gose/gose.c
board/renesas/koelsch/koelsch.c
board/renesas/lager/lager.c
board/renesas/porter/porter.c
board/renesas/salvator-x/salvator-x.c
board/renesas/silk/silk.c
board/renesas/stout/stout.c
board/renesas/ulcb/ulcb.c
board/st/stm32f429-discovery/stm32f429-discovery.c
board/st/stm32f429-evaluation/stm32f429-evaluation.c
board/st/stm32f469-discovery/stm32f469-discovery.c
board/st/stm32h743-disco/stm32h743-disco.c
board/st/stm32h743-eval/stm32h743-eval.c
board/xilinx/zynq/board.c
board/xilinx/zynqmp/zynqmp.c
board/xilinx/zynqmp_r5/board.c
include/fdtdec.h
lib/fdtdec.c
tools/patman/func_test.py
tools/patman/test/0000-cover-letter.patch
tools/patman/test/0002-fdt-Correct-cast-for-sandbox-in-fdtdec_setup_memory_.patch
tools/patman/test/test01.txt

index d3ea9e67e07fe35c73ada2532281f1be642c5590..f47273fde9c6a6648e4880b1f4f21cd12d49bca3 100644 (file)
@@ -54,7 +54,7 @@ int dram_init_banksize(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 77628e11818d6b74aa2a2f502187d91e2a9f3a31..a4f6d5c1ac9967cfb384356d375571223d364c48 100644 (file)
@@ -40,7 +40,7 @@ struct bsel bsel_str[] = {
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 25cd3549983ac90f1f011a422720714858120837..56328463aecb705ed499046ac7dc5a8a5a41b7b6 100644 (file)
@@ -48,7 +48,7 @@ int print_cpuinfo(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 085cbbef994e4225b322d0aa02aa8b6ee0fd6c0a..1f5a33d520bd159e9368ffccd196ed1b2373904e 100644 (file)
@@ -47,7 +47,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 86e9d2446dccde6d159a9ad381bd93bf9800099b..b18ab7ce88723affa43b6460990f9df474f098cc 100644 (file)
@@ -78,7 +78,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 7d48d0faf957153293ef0527b66e5f673c0938f1..f5ada6e288e97bf449e30694d5720c4258daf645 100644 (file)
@@ -339,7 +339,7 @@ int board_eth_init(bd_t *bis)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index f804fae6eebf2130624b5c97bd4a83386f79742f..852fdda843c77aacc3a9be12b1c455179c0bcd1a 100644 (file)
@@ -96,7 +96,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 7b89c10cc742dde3ea3b13b6e38dd273474b3cf1..931741007196745a4f9e35b43df0901f4d0004ba 100644 (file)
@@ -74,7 +74,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index fdff2a82861cc59c0201f3fe0fff28c000861705..248223b444bb5a75eb3a5d00988c7de553cd9a5e 100644 (file)
@@ -50,7 +50,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 96ac29d9ab03fd7ea345fb66aaa8f5e9849bcf06..282381ede56f9538ce22dfa7c37058e1cf2eae61 100644 (file)
@@ -83,7 +83,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index b6688a2cc0827d8f798e82e9d97e0acf37e6234e..52f37c970e78568f751504d45f5abaaf4b982be9 100644 (file)
@@ -85,7 +85,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 6bfb0d140489919f4712ed6df5cca188ac33a31f..062e88c19832359e8b8f1e82987fcef7a3d58a3e 100644 (file)
@@ -94,7 +94,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index cadff2cd0230e32f58a3676a91d9e89dbfe0dd0c..663b8001ef6b2c9a8d97e5e7f6c42109baf7bbea 100644 (file)
@@ -83,7 +83,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 651877cac2538aae1f3c4967cf36e9b768665a6e..00256bc1a3431b444632c75e69da5af52d4f4bdd 100644 (file)
@@ -108,7 +108,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 5fa472ce81b861f7cf5f5013c38157d5d9a6affc..966c0717b2495c9fa04ca3446795fdfa8727bc65 100644 (file)
@@ -78,7 +78,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 778593b9ba5d5f2cb1e31145f8842d59ca16b784..85e30db635f634dfe60cfb050d08689c0743f6b3 100644 (file)
@@ -97,7 +97,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 9e15e45a3047a43bee979baf3bc7f2cbd4d67987..213e869ebe66827931a5aa60408dd7b4257e1923 100644 (file)
@@ -96,7 +96,7 @@ int board_init(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index b7638c0f6a91d6cb956dce2c6a2ee28211cc99ab..e800d70f763b537c05c7e6f9fd20507f3751883a 100644 (file)
@@ -29,7 +29,7 @@ int dram_init(void)
                return rv;
        }
 
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                rv = -EINVAL;
 
        return rv;
index 2e638c605990cbd8a9e89716a85dba6b6e7b934f..fd2109b27c0f801d79d95da98c92b2fc87754394 100644 (file)
@@ -23,7 +23,7 @@ int dram_init(void)
                return rv;
        }
 
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                rv = -EINVAL;
 
        return rv;
index 90d7045e9ab7abff78e35271ae19fef35099bd62..a457f9095276e97d81fa70955f4e9ecde76a9edc 100644 (file)
@@ -23,7 +23,7 @@ int dram_init(void)
                return rv;
        }
 
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                rv = -EINVAL;
 
        return rv;
index fa007c79864d39095880bb0cca2aa23ddf834ae4..3ab95188048d5d9d7449135ba1699c7635a7f281 100644 (file)
@@ -20,7 +20,7 @@ int dram_init(void)
                return ret;
        }
 
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                ret = -EINVAL;
 
        return ret;
index fa007c79864d39095880bb0cca2aa23ddf834ae4..3ab95188048d5d9d7449135ba1699c7635a7f281 100644 (file)
@@ -20,7 +20,7 @@ int dram_init(void)
                return ret;
        }
 
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                ret = -EINVAL;
 
        return ret;
index 9c005e40e895906a1338d381d775ba905a304a08..614d93c082a6867eab005bbf5dde8f1d28c23bc5 100644 (file)
@@ -98,7 +98,7 @@ int dram_init_banksize(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        zynq_ddrc_init();
index 06cdcbdba6b9fa029d28306a19961ff12bda9741..89fac6bb67ca69bf8f7a5f1c5f192379e8800f52 100644 (file)
@@ -423,7 +423,7 @@ int dram_init_banksize(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 70fb20235498e0f177a49a6a0b542bbe3a135365..1c45ee7196f78b886d6444ef21a117d84eb535e5 100644 (file)
@@ -18,7 +18,7 @@ int dram_init_banksize(void)
 
 int dram_init(void)
 {
-       if (fdtdec_setup_memory_size() != 0)
+       if (fdtdec_setup_mem_size_base() != 0)
                return -EINVAL;
 
        return 0;
index 58d5b721aa6011eee76e472bca6a91ce95719c3a..83be06403d8bfb70bf788083a21103768d602a69 100644 (file)
@@ -957,20 +957,22 @@ int fdtdec_decode_display_timing(const void *blob, int node, int index,
                                 struct display_timing *config);
 
 /**
- * fdtdec_setup_memory_size() - decode and setup gd->ram_size
+ * fdtdec_setup_mem_size_base() - decode and setup gd->ram_size and
+ * gd->ram_start
  *
- * Decode the /memory 'reg' property to determine the size of the first memory
- * bank, populate the global data with the size of the first bank of memory.
+ * Decode the /memory 'reg' property to determine the size and start of the
+ * first memory bank, populate the global data with the size and start of the
+ * first bank of memory.
  *
  * This function should be called from a boards dram_init(). This helper
- * function allows for boards to query the device tree for DRAM size instead of
- * hard coding the value in the case where the memory size cannot be detected
- * automatically.
+ * function allows for boards to query the device tree for DRAM size and start
+ * address instead of hard coding the value in the case where the memory size
+ * and start address cannot be detected automatically.
  *
  * @return 0 if OK, -EINVAL if the /memory node or reg property is missing or
  * invalid
  */
-int fdtdec_setup_memory_size(void);
+int fdtdec_setup_mem_size_base(void);
 
 /**
  * fdtdec_setup_memory_banksize() - decode and populate gd->bd->bi_dram
index 66dff0f906b71bd79ca9df7f28a95e73120ed8d1..c373ddee358d9624ebe7437154e9e50c5dfae1bd 100644 (file)
@@ -1155,7 +1155,7 @@ int fdtdec_decode_display_timing(const void *blob, int parent, int index,
        return ret;
 }
 
-int fdtdec_setup_memory_size(void)
+int fdtdec_setup_mem_size_base(void)
 {
        int ret, mem;
        struct fdt_resource res;
index 3f7e03214470e23d0a5adb54a209d5b572903083..d79e716074b6a2274e81932b7d012b47d12919d9 100644 (file)
@@ -210,7 +210,7 @@ Changes in v4:
 
 Simon Glass (2):
   pci: Correct cast for sandbox
-  fdt: Correct cast for sandbox in fdtdec_setup_memory_size()
+  fdt: Correct cast for sandbox in fdtdec_setup_mem_size_base()
 
  cmd/pci.c                   | 3 ++-
  fs/fat/fat.c                | 1 +
index 29062015bc2146337e17100989aa4a3c86bd01af..c99e635623f3a5001662c88eaee4de5e40e42215 100644 (file)
@@ -10,7 +10,7 @@ Content-Transfer-Encoding: 8bit
 
 Simon Glass (2):
   pci: Correct cast for sandbox
-  fdt: Correct cast for sandbox in fdtdec_setup_memory_size()
+  fdt: Correct cast for sandbox in fdtdec_setup_mem_size_base()
 
  cmd/pci.c                   | 3 ++-
  fs/fat/fat.c                | 1 +
index e3284973a0d3706f002eadcf7b1d4ac393e502c5..702c0306ffe120420afe8eee8daa5a63889062b3 100644 (file)
@@ -1,7 +1,7 @@
 From 5ab48490f03051875ab13d288a4bf32b507d76fd Mon Sep 17 00:00:00 2001
 From: Simon Glass <sjg@chromium.org>
 Date: Sat, 15 Apr 2017 15:39:08 -0600
-Subject: [RFC 2/2] fdt: Correct cast for sandbox in fdtdec_setup_memory_size()
+Subject: [RFC 2/2] fdt: Correct cast for sandbox in fdtdec_setup_mem_size_base()
 MIME-Version: 1.0
 Content-Type: text/plain; charset=UTF-8
 Content-Transfer-Encoding: 8bit
@@ -58,7 +58,7 @@ diff --git a/lib/fdtdec.c b/lib/fdtdec.c
 index c072e54..942244f 100644
 --- a/lib/fdtdec.c
 +++ b/lib/fdtdec.c
-@@ -1200,7 +1200,8 @@ int fdtdec_setup_memory_size(void)
+@@ -1200,7 +1200,8 @@ int fdtdec_setup_mem_size_base(void)
        }
  
        gd->ram_size = (phys_size_t)(res.end - res.start + 1);
index 8ad9587aef534c135980a6ad0f315dd736009514..478ea93674d0082275e3d68848d65fedda1fa3d0 100644 (file)
@@ -28,7 +28,7 @@ commit 5ab48490f03051875ab13d288a4bf32b507d76fd
 Author: Simon Glass <sjg@chromium.org>
 Date:   Sat Apr 15 15:39:08 2017 -0600
 
-    fdt: Correct cast for sandbox in fdtdec_setup_memory_size()
+    fdt: Correct cast for sandbox in fdtdec_setup_mem_size_base()
     
     This gives a warning with some native compilers: