linuxppc-dev.lists.ozlabs.org archive mirror
 help / color / mirror / Atom feed
* [PATCH v3 1/2] powerpc32/booke: consistently return phys_addr_t in __pa()
@ 2020-01-06  4:29 yingjie_bai
  2020-01-06  4:29 ` [PATCH v3 2/2] powerpc/mpc85xx: also write addr_h to spin table for 64bit boot entry yingjie_bai
  2020-01-29  5:17 ` [PATCH v3 1/2] powerpc32/booke: consistently return phys_addr_t in __pa() Michael Ellerman
  0 siblings, 2 replies; 4+ messages in thread
From: yingjie_bai @ 2020-01-06  4:29 UTC (permalink / raw)
  To: Scott Wood, Kumar Gala
  Cc: Jason Yan, Aneesh Kumar K.V, Greg Kroah-Hartman, Nicholas Piggin,
	linux-kernel, Paul Mackerras, Allison Randal, Bai Yingjie,
	Thomas Gleixner, linuxppc-dev, Nicolas Saenz Julienne

From: Bai Yingjie <byj.tea@gmail.com>

When CONFIG_RELOCATABLE=y is set, VIRT_PHYS_OFFSET is a 64bit variable,
thus __pa() returns as 64bit value.
But when CONFIG_RELOCATABLE=n, __pa() returns 32bit value.

When CONFIG_PHYS_64BIT is set, __pa() should consistently return as
64bit value irrelevant to CONFIG_RELOCATABLE.
So we'd make __pa() consistently return phys_addr_t, which is 64bit
when CONFIG_PHYS_64BIT is set.

Signed-off-by: Bai Yingjie <byj.tea@gmail.com>
---
 arch/powerpc/include/asm/page.h | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/powerpc/include/asm/page.h b/arch/powerpc/include/asm/page.h
index 7f1fd41e3065..86332080399a 100644
--- a/arch/powerpc/include/asm/page.h
+++ b/arch/powerpc/include/asm/page.h
@@ -209,7 +209,7 @@ static inline bool pfn_valid(unsigned long pfn)
  */
 #if defined(CONFIG_PPC32) && defined(CONFIG_BOOKE)
 #define __va(x) ((void *)(unsigned long)((phys_addr_t)(x) + VIRT_PHYS_OFFSET))
-#define __pa(x) ((unsigned long)(x) - VIRT_PHYS_OFFSET)
+#define __pa(x) ((phys_addr_t)(unsigned long)(x) - VIRT_PHYS_OFFSET)
 #else
 #ifdef CONFIG_PPC64
 /*
-- 
2.17.1


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

end of thread, other threads:[~2020-01-29  6:01 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-01-06  4:29 [PATCH v3 1/2] powerpc32/booke: consistently return phys_addr_t in __pa() yingjie_bai
2020-01-06  4:29 ` [PATCH v3 2/2] powerpc/mpc85xx: also write addr_h to spin table for 64bit boot entry yingjie_bai
2020-01-06 18:05   ` Scott Wood
2020-01-29  5:17 ` [PATCH v3 1/2] powerpc32/booke: consistently return phys_addr_t in __pa() Michael Ellerman

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).