All of lore.kernel.org
 help / color / mirror / Atom feed
From: "Andreas Färber" <afaerber@suse.de>
To: "Andreas Färber" <afaerber@suse.de>,
	linux-arm-kernel@lists.infradead.org
Cc: "Thomas Liau" <thomas.liau@actions-semi.com>,
	张东风 <zhangdf@actions-semi.com>, 刘炜 <liuwei@actions-semi.com>,
	张天益 <tyzhang@actions-semi.com>, 梅利 <harrymei@actions-semi.com>,
	96boards@ucrobotics.com, support@lemaker.org,
	support@cubietech.com, lee@cubietech.com,
	"Ioan B" <ioan@allo.com>,
	"Florian Fainelli" <f.fainelli@gmail.com>,
	linux-kernel@vger.kernel.org,
	"Russell King" <linux@armlinux.org.uk>
Subject: [PATCH v2 1/2] ARM: owl: smp: Use __pa_symbol()
Date: Tue,  5 Sep 2017 23:19:59 +0200	[thread overview]
Message-ID: <20170905212000.7009-2-afaerber@suse.de> (raw)
In-Reply-To: <20170905212000.7009-1-afaerber@suse.de>

Replace an occurrence of virt_to_phys() with __pa_symbol() macro.

See 64fc2a947a9873700929ec0ef02b4654a04e0476 ("ARM: 8641/1: treewide:
Replace uses of virt_to_phys with __pa_symbol").

Fixes: 172067e0bc87 ("ARM: owl: Implement CPU enable-method for S500")
Reported-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Andreas Färber <afaerber@suse.de>
---
 v1 -> v2: New
 
 arch/arm/mach-actions/platsmp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-actions/platsmp.c b/arch/arm/mach-actions/platsmp.c
index 12a9e331b432..7238926ab015 100644
--- a/arch/arm/mach-actions/platsmp.c
+++ b/arch/arm/mach-actions/platsmp.c
@@ -71,7 +71,7 @@ static int s500_wakeup_secondary(unsigned int cpu)
 	/* wait for CPUx to run to WFE instruction */
 	udelay(200);
 
-	writel(virt_to_phys(owl_secondary_startup),
+	writel(__pa_symbol(owl_secondary_startup),
 	       timer_base_addr + OWL_CPU1_ADDR + (cpu - 1) * 4);
 	writel(OWL_CPUx_FLAG_BOOT,
 	       timer_base_addr + OWL_CPU1_FLAG + (cpu - 1) * 4);
-- 
2.13.5

WARNING: multiple messages have this Message-ID (diff)
From: afaerber@suse.de (Andreas Färber)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2 1/2] ARM: owl: smp: Use __pa_symbol()
Date: Tue,  5 Sep 2017 23:19:59 +0200	[thread overview]
Message-ID: <20170905212000.7009-2-afaerber@suse.de> (raw)
In-Reply-To: <20170905212000.7009-1-afaerber@suse.de>

Replace an occurrence of virt_to_phys() with __pa_symbol() macro.

See 64fc2a947a9873700929ec0ef02b4654a04e0476 ("ARM: 8641/1: treewide:
Replace uses of virt_to_phys with __pa_symbol").

Fixes: 172067e0bc87 ("ARM: owl: Implement CPU enable-method for S500")
Reported-by: Florian Fainelli <f.fainelli@gmail.com>
Signed-off-by: Andreas F?rber <afaerber@suse.de>
---
 v1 -> v2: New
 
 arch/arm/mach-actions/platsmp.c | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/arch/arm/mach-actions/platsmp.c b/arch/arm/mach-actions/platsmp.c
index 12a9e331b432..7238926ab015 100644
--- a/arch/arm/mach-actions/platsmp.c
+++ b/arch/arm/mach-actions/platsmp.c
@@ -71,7 +71,7 @@ static int s500_wakeup_secondary(unsigned int cpu)
 	/* wait for CPUx to run to WFE instruction */
 	udelay(200);
 
-	writel(virt_to_phys(owl_secondary_startup),
+	writel(__pa_symbol(owl_secondary_startup),
 	       timer_base_addr + OWL_CPU1_ADDR + (cpu - 1) * 4);
 	writel(OWL_CPUx_FLAG_BOOT,
 	       timer_base_addr + OWL_CPU1_FLAG + (cpu - 1) * 4);
-- 
2.13.5

  reply	other threads:[~2017-09-05 21:20 UTC|newest]

Thread overview: 8+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2017-09-05 21:19 [PATCH v2 0/2] ARM: Actions Semi S500 SMP cleanups Andreas Färber
2017-09-05 21:19 ` Andreas Färber
2017-09-05 21:19 ` Andreas Färber [this message]
2017-09-05 21:19   ` [PATCH v2 1/2] ARM: owl: smp: Use __pa_symbol() Andreas Färber
2017-09-05 21:20 ` [PATCH v2 2/2] ARM: owl: smp: Drop owl_secondary_boot() Andreas Färber
2017-09-05 21:20   ` Andreas Färber
2017-09-20 14:56 ` [PATCH v2 0/2] ARM: Actions Semi S500 SMP cleanups Andreas Färber
2017-09-20 14:56   ` Andreas Färber

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20170905212000.7009-2-afaerber@suse.de \
    --to=afaerber@suse.de \
    --cc=96boards@ucrobotics.com \
    --cc=f.fainelli@gmail.com \
    --cc=harrymei@actions-semi.com \
    --cc=ioan@allo.com \
    --cc=lee@cubietech.com \
    --cc=linux-arm-kernel@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux@armlinux.org.uk \
    --cc=liuwei@actions-semi.com \
    --cc=support@cubietech.com \
    --cc=support@lemaker.org \
    --cc=thomas.liau@actions-semi.com \
    --cc=tyzhang@actions-semi.com \
    --cc=zhangdf@actions-semi.com \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.