aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/of
diff options
context:
space:
mode:
authorSantosh Shilimkar <santosh.shilimkar@ti.com>2013-07-01 14:20:35 -0400
committerGrant Likely <grant.likely@linaro.org>2013-07-24 06:10:01 -0400
commit374d5c9964c10373ba39bbe934f4262eb87d7114 (patch)
tree3ddcb05c32181506d7619d6bffedaa53aee2fc95 /drivers/of
parentdcde863297256a9cade5422a2d469ba828f60beb (diff)
of: Specify initrd location using 64-bit
On some PAE architectures, the entire range of physical memory could reside outside the 32-bit limit. These systems need the ability to specify the initrd location using 64-bit numbers. This patch globally modifies the early_init_dt_setup_initrd_arch() function to use 64-bit numbers instead of the current unsigned long. There has been quite a bit of debate about whether to use u64 or phys_addr_t. It was concluded to stick to u64 to be consistent with rest of the device tree code. As summarized by Geert, "The address to load the initrd is decided by the bootloader/user and set at that point later in time. The dtb should not be tied to the kernel you are booting" More details on the discussion can be found here: https://lkml.org/lkml/2013/6/20/690 https://lkml.org/lkml/2012/9/13/544 Signed-off-by: Santosh Shilimkar <santosh.shilimkar@ti.com> Acked-by: Rob Herring <rob.herring@calxeda.com> Acked-by: Vineet Gupta <vgupta@synopsys.com> Acked-by: Jean-Christophe PLAGNIOL-VILLARD <plagnioj@jcrosoft.com> Signed-off-by: Grant Likely <grant.likely@linaro.org>
Diffstat (limited to 'drivers/of')
-rw-r--r--drivers/of/fdt.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/of/fdt.c b/drivers/of/fdt.c
index 6bb7cf2de556..3f473d158d79 100644
--- a/drivers/of/fdt.c
+++ b/drivers/of/fdt.c
@@ -550,7 +550,8 @@ int __init of_flat_dt_match(unsigned long node, const char *const *compat)
550 */ 550 */
551void __init early_init_dt_check_for_initrd(unsigned long node) 551void __init early_init_dt_check_for_initrd(unsigned long node)
552{ 552{
553 unsigned long start, end, len; 553 u64 start, end;
554 unsigned long len;
554 __be32 *prop; 555 __be32 *prop;
555 556
556 pr_debug("Looking for initrd properties... "); 557 pr_debug("Looking for initrd properties... ");
@@ -558,15 +559,16 @@ void __init early_init_dt_check_for_initrd(unsigned long node)
558 prop = of_get_flat_dt_prop(node, "linux,initrd-start", &len); 559 prop = of_get_flat_dt_prop(node, "linux,initrd-start", &len);
559 if (!prop) 560 if (!prop)
560 return; 561 return;
561 start = of_read_ulong(prop, len/4); 562 start = of_read_number(prop, len/4);
562 563
563 prop = of_get_flat_dt_prop(node, "linux,initrd-end", &len); 564 prop = of_get_flat_dt_prop(node, "linux,initrd-end", &len);
564 if (!prop) 565 if (!prop)
565 return; 566 return;
566 end = of_read_ulong(prop, len/4); 567 end = of_read_number(prop, len/4);
567 568
568 early_init_dt_setup_initrd_arch(start, end); 569 early_init_dt_setup_initrd_arch(start, end);
569 pr_debug("initrd_start=0x%lx initrd_end=0x%lx\n", start, end); 570 pr_debug("initrd_start=0x%llx initrd_end=0x%llx\n",
571 (unsigned long long)start, (unsigned long long)end);
570} 572}
571#else 573#else
572inline void early_init_dt_check_for_initrd(unsigned long node) 574inline void early_init_dt_check_for_initrd(unsigned long node)