From: ben.dooks@codethink.co.uk (Ben Dooks)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH v2] ARM: cci driver need big endian fixes in asm code
Date: Wed, 16 Oct 2013 15:35:52 +0100 [thread overview]
Message-ID: <525EA448.7040503@codethink.co.uk> (raw)
In-Reply-To: <1381899034-420-2-git-send-email-victor.kamensky@linaro.org>
On 16/10/13 05:50, Victor Kamensky wrote:
> cci_enable_port_for_self written in asm and it works with h/w
> registers that are in little endian format. When run in big
> endian mode it needs byteswaped constants before/after it
> writes/reads to/from such registers
>
> Signed-off-by: Victor Kamensky<victor.kamensky@linaro.org>
> Signed-off-by: Ben Dooks<ben.dooks@codethink.co.uk>
> ---
> drivers/bus/arm-cci.c | 6 ++++--
> 1 file changed, 4 insertions(+), 2 deletions(-)
>
> diff --git a/drivers/bus/arm-cci.c b/drivers/bus/arm-cci.c
> index 57b0bc6..4328c25 100644
> --- a/drivers/bus/arm-cci.c
> +++ b/drivers/bus/arm-cci.c
> @@ -872,7 +872,7 @@ asmlinkage void __naked cci_enable_port_for_self(void)
>
> /* Enable the CCI port */
> " ldr r0, [r0, %[offsetof_port_phys]] \n"
> -" mov r3, #"__stringify(CCI_ENABLE_REQ)" \n"
> +" mov r3, %[cci_enable_req]\n"
> " str r3, [r0, #"__stringify(CCI_PORT_CTRL)"] \n"
>
> /* poll the status reg for completion */
> @@ -880,7 +880,7 @@ asmlinkage void __naked cci_enable_port_for_self(void)
> " ldr r0, [r1] \n"
> " ldr r0, [r0, r1] @ cci_ctrl_base \n"
> "4: ldr r1, [r0, #"__stringify(CCI_CTRL_STATUS)"] \n"
> -" tst r1, #1 \n"
> +" tst r1, %[cci_control_status_bits] \n"
> " bne 4b \n"
>
> " mov r0, #0 \n"
> @@ -893,6 +893,8 @@ asmlinkage void __naked cci_enable_port_for_self(void)
> "7: .word cci_ctrl_phys - . \n"
> : :
> [sizeof_cpu_port] "i" (sizeof(cpu_port)),
> + [cci_enable_req] "i" cpu_to_le32(CCI_ENABLE_REQ),
> + [cci_control_status_bits] "i" cpu_to_le32(1),
> #ifndef __ARMEB__
> [offsetof_cpu_port_mpidr_lsb] "i" (offsetof(struct cpu_port, mpidr)),
> #else
Thanks
--
Ben Dooks http://www.codethink.co.uk/
Senior Engineer Codethink - Providing Genius
prev parent reply other threads:[~2013-10-16 14:35 UTC|newest]
Thread overview: 4+ messages / expand[flat|nested] mbox.gz Atom feed top
2013-10-16 4:50 [PATCH v2] ARM: cci driver need big endian fixes in asm code Victor Kamensky
2013-10-16 4:50 ` Victor Kamensky
2013-10-16 14:15 ` Nicolas Pitre
2013-10-16 14:35 ` Ben Dooks [this message]
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=525EA448.7040503@codethink.co.uk \
--to=ben.dooks@codethink.co.uk \
--cc=linux-arm-kernel@lists.infradead.org \
/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.