aboutsummaryrefslogtreecommitdiffstats
path: root/arch/sparc
diff options
context:
space:
mode:
authorbob picco <bpicco@meloft.net>2013-06-11 14:54:51 -0400
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-07-28 16:18:32 -0700
commitb37c61632db280b4e831dc2431a73ca045bc7e42 (patch)
tree4f53e7810b7cf5e033752624775e2fc8b9409902 /arch/sparc
parent00c218981b362e8dbfd624ebf0c874bb1bc9df04 (diff)
downloadkernel_samsung_smdk4412-b37c61632db280b4e831dc2431a73ca045bc7e42.zip
kernel_samsung_smdk4412-b37c61632db280b4e831dc2431a73ca045bc7e42.tar.gz
kernel_samsung_smdk4412-b37c61632db280b4e831dc2431a73ca045bc7e42.tar.bz2
sparc64 address-congruence property
Upstream commit 771a37ff4d80b80db3b0df3e7696f14b298c67b7 The Machine Description (MD) property "address-congruence-offset" is optional. According to the MD specification the value is assumed 0UL when not present. This caused early boot failure on T5. Signed-off-by: Bob Picco <bob.picco@oracle.com> CC: sparclinux@vger.kernel.org Signed-off-by: David S. Miller <davem@davemloft.net> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'arch/sparc')
-rw-r--r--arch/sparc/mm/init_64.c9
1 files changed, 8 insertions, 1 deletions
diff --git a/arch/sparc/mm/init_64.c b/arch/sparc/mm/init_64.c
index 6ff4d78..b4989f9 100644
--- a/arch/sparc/mm/init_64.c
+++ b/arch/sparc/mm/init_64.c
@@ -1071,7 +1071,14 @@ static int __init grab_mblocks(struct mdesc_handle *md)
m->size = *val;
val = mdesc_get_property(md, node,
"address-congruence-offset", NULL);
- m->offset = *val;
+
+ /* The address-congruence-offset property is optional.
+ * Explicity zero it be identifty this.
+ */
+ if (val)
+ m->offset = *val;
+ else
+ m->offset = 0UL;
numadbg("MBLOCK[%d]: base[%llx] size[%llx] offset[%llx]\n",
count - 1, m->base, m->size, m->offset);