From: Bjorn Andersson <bjorn.andersson@linaro.org>
To: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
Cc: marc.zyngier@arm.com, sudeep.holla@arm.com, tglx@linutronix.de,
jason@lakedaemon.net, linux-kernel@vger.kernel.org,
linux-arm-msm@vger.kernel.org, rnayak@codeaurora.org,
sboyd@kernel.org, srini@kernel.org, nicolas.dechesne@linaro.org,
ctatlor97@gmail.com, vkoul@kernel.org
Subject: Re: [RFC PATCH v3 3/4] irqchip: gic-v3: Add quirk for msm8996 secured registers
Date: Wed, 28 Nov 2018 15:33:27 -0800 [thread overview]
Message-ID: <20181128233327.GE24969@minitux> (raw)
In-Reply-To: <20181112103340.24702-4-srinivas.kandagatla@linaro.org>
On Mon 12 Nov 02:33 PST 2018, Srinivas Kandagatla wrote:
> Access to GICR_WAKER is restricted on msm8996 SoC in Hypervisor.
> Its been more than 2+ years of wait for this to be fixed, which has
> no hopes to be fixed. This change was introduced for the "lead device"
> on msm8996 platform. It looks like all publicly available msm8996 and
> other qcom SoCs have this implementation.
>
> So add a quirk to not access this register on msm8996.
>
> With this quirk MSM8996 can at least boot out of mainline,
> which can help community to work with boards based on MSM8996 and other
> SoCs with have this restrictions. This Quirk is based on device tree
> compatible string.
>
> Without this patch Qualcomm DB820c board reboots when GICR_WAKER
> is accessed.
>
Hi Srinivas,
Given that the change request introducing this restriction looks quite
generic and that we've heard reports of other shipping platforms having
the same restriction, could we make this slightly more generic?
I.e. dropping the MSM8996 from the flag name and perhaps use a bool
property in devicetree to toggle the flag, instead of adding compatibles
as we figure out which Qualcomm platforms has this restriction.
Regards,
Bjorn
> Signed-off-by: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>
> ---
> drivers/irqchip/irq-gic-v3.c | 26 ++++++++++++++++++++++++++
> 1 file changed, 26 insertions(+)
>
> diff --git a/drivers/irqchip/irq-gic-v3.c b/drivers/irqchip/irq-gic-v3.c
> index 8f87f40c9460..4bd3bbe1b7ce 100644
> --- a/drivers/irqchip/irq-gic-v3.c
> +++ b/drivers/irqchip/irq-gic-v3.c
> @@ -41,6 +41,8 @@
>
> #include "irq-gic-common.h"
>
> +#define FLAGS_WORKAROUND_GICR_WAKER_MSM8996 (1ULL << 0)
> +
> struct redist_region {
> void __iomem *redist_base;
> phys_addr_t phys_base;
> @@ -55,6 +57,7 @@ struct gic_chip_data {
> struct irq_domain *domain;
> u64 redist_stride;
> u32 nr_redist_regions;
> + u64 flags;
> bool has_rss;
> unsigned int irq_nr;
> struct partition_desc *ppi_descs[16];
> @@ -139,6 +142,9 @@ static void gic_enable_redist(bool enable)
> u32 count = 1000000; /* 1s! */
> u32 val;
>
> + if (gic_data.flags & FLAGS_WORKAROUND_GICR_WAKER_MSM8996)
> + return;
> +
> rbase = gic_data_rdist_rd_base();
>
> val = readl_relaxed(rbase + GICR_WAKER);
> @@ -1067,6 +1073,23 @@ static const struct irq_domain_ops partition_domain_ops = {
> .select = gic_irq_domain_select,
> };
>
> +static bool __maybe_unused gic_enable_quirk_msm8996(void *data)
> +{
> + struct gic_chip_data *d = data;
> +
> + d->flags |= FLAGS_WORKAROUND_GICR_WAKER_MSM8996;
> +
> + return true;
> +}
> +
> +static const struct gic_quirk gic_quirks[] = {
> + {
> + .desc = "GICv3: Qualcomm MSM8996 skip GICR_WAKER Read/Write",
> + .compatible = "qcom,msm8996-gic-v3", /* MSM8996 */
> + .init = gic_enable_quirk_msm8996,
> + },
> +};
> +
> static int __init gic_init_bases(void __iomem *dist_base,
> struct redist_region *rdist_regs,
> u32 nr_redist_regions,
> @@ -1126,6 +1149,9 @@ static int __init gic_init_bases(void __iomem *dist_base,
>
> gic_update_vlpi_properties();
>
> + if (is_of_node(handle))
> + gic_enable_of_quirks(to_of_node(handle), gic_quirks, &gic_data);
> +
> gic_smp_init();
> gic_dist_init();
> gic_cpu_init();
> --
> 2.19.1
>
next prev parent reply other threads:[~2018-11-28 23:33 UTC|newest]
Thread overview: 10+ messages / expand[flat|nested] mbox.gz Atom feed top
2018-11-12 10:33 [RFC PATCH v3 0/4] irqchip/gic-v3: Add support to DT based quirk for msm8996 Srinivas Kandagatla
2018-11-12 10:33 ` [RFC PATCH v3 1/4] dt-bindings/gic-v3: Add msm8996 compatible string Srinivas Kandagatla
2018-11-12 10:33 ` [RFC PATCH v3 2/4] irqchip/gic: common: add support to device tree based quirks Srinivas Kandagatla
2018-11-12 10:33 ` [RFC PATCH v3 3/4] irqchip: gic-v3: Add quirk for msm8996 secured registers Srinivas Kandagatla
2018-11-28 23:33 ` Bjorn Andersson [this message]
2018-11-29 7:14 ` Marc Zyngier
2018-11-29 14:10 ` Srinivas Kandagatla
2018-12-07 18:30 ` Marc Zyngier
2018-11-12 10:33 ` [RFC PATCH v3 4/4] arm64: dts: add msm8996 compatible to gicv3 Srinivas Kandagatla
2018-12-07 18:21 ` Marc Zyngier
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=20181128233327.GE24969@minitux \
--to=bjorn.andersson@linaro.org \
--cc=ctatlor97@gmail.com \
--cc=jason@lakedaemon.net \
--cc=linux-arm-msm@vger.kernel.org \
--cc=linux-kernel@vger.kernel.org \
--cc=marc.zyngier@arm.com \
--cc=nicolas.dechesne@linaro.org \
--cc=rnayak@codeaurora.org \
--cc=sboyd@kernel.org \
--cc=srini@kernel.org \
--cc=srinivas.kandagatla@linaro.org \
--cc=sudeep.holla@arm.com \
--cc=tglx@linutronix.de \
--cc=vkoul@kernel.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