From: Benjamin Herrenschmidt <benh@kernel.crashing.org>
To: Anton Blanchard <anton@samba.org>
Cc: linuxppc-dev@lists.ozlabs.org, paulus@samba.org
Subject: Re: [PATCH] powerpc/powernv: Correctly set hypervisor interrupt little endian bit on POWER8
Date: Tue, 13 May 2014 07:40:00 +1000 [thread overview]
Message-ID: <1399930800.17624.132.camel@pasglop> (raw)
In-Reply-To: <20140508223138.4d600b60@kryten>
On Thu, 2014-05-08 at 22:31 +1000, Anton Blanchard wrote:
> HID0 IBM bit 19 is the HILE bit on POWER8. Set it to 0 to take
> exceptions in big endian and to 1 to take them in little endian.
>
> Signed-off-by: Anton Blanchard <anton@samba.org>
> ---
Let's stick to the variant involving a FW call instead.
Cheers,
Ben.
>
> Index: b/arch/powerpc/include/asm/reg.h
> ===================================================================
> --- a/arch/powerpc/include/asm/reg.h
> +++ b/arch/powerpc/include/asm/reg.h
> @@ -397,6 +397,7 @@
> #define SPRN_HASH1 0x3D2 /* Primary Hash Address Register */
> #define SPRN_HASH2 0x3D3 /* Secondary Hash Address Resgister */
> #define SPRN_HID0 0x3F0 /* Hardware Implementation Register 0 */
> +#define HID0_HILE_SH (63 - 19) /* Hypervisor interrupt little endian */
> #define HID0_HDICE_SH (63 - 23) /* 970 HDEC interrupt enable */
> #define HID0_EMCP (1<<31) /* Enable Machine Check pin */
> #define HID0_EBA (1<<29) /* Enable Bus Address Parity */
> Index: b/arch/powerpc/kernel/cpu_setup_power.S
> ===================================================================
> --- a/arch/powerpc/kernel/cpu_setup_power.S
> +++ b/arch/powerpc/kernel/cpu_setup_power.S
> @@ -60,6 +60,7 @@ _GLOBAL(__setup_cpu_power8)
> bl __init_HFSCR
> bl __init_tlb_power8
> bl __init_PMU_HV
> + bl __init_HILE
> mtlr r11
> blr
>
> @@ -78,6 +79,7 @@ _GLOBAL(__restore_cpu_power8)
> bl __init_HFSCR
> bl __init_tlb_power8
> bl __init_PMU_HV
> + bl __init_HILE
> mtlr r11
> blr
>
> @@ -132,6 +134,26 @@ __init_HFSCR:
> mtspr SPRN_HFSCR,r3
> blr
>
> +__init_HILE:
> + mfspr r3,SPRN_HID0
> + li r4,1
> + sldi r4,r4,HID0_HILE_SH
> +#ifdef __LITTLE_ENDIAN__
> + or r3,r3,r4
> +#else
> + andc r3,r3,r4
> +#endif
> + sync
> + mtspr SPRN_HID0,r3
> + mfspr r3,SPRN_HID0
> + mfspr r3,SPRN_HID0
> + mfspr r3,SPRN_HID0
> + mfspr r3,SPRN_HID0
> + mfspr r3,SPRN_HID0
> + mfspr r3,SPRN_HID0
> + isync
> + blr
> +
> /*
> * Clear the TLB using the specified IS form of tlbiel instruction
> * (invalidate by congruence class). P7 has 128 CCs., P8 has 512.
prev parent reply other threads:[~2014-05-12 21:40 UTC|newest]
Thread overview: 2+ messages / expand[flat|nested] mbox.gz Atom feed top
2014-05-08 12:31 [PATCH] powerpc/powernv: Correctly set hypervisor interrupt little endian bit on POWER8 Anton Blanchard
2014-05-12 21:40 ` Benjamin Herrenschmidt [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=1399930800.17624.132.camel@pasglop \
--to=benh@kernel.crashing.org \
--cc=anton@samba.org \
--cc=linuxppc-dev@lists.ozlabs.org \
--cc=paulus@samba.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 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).