* [PATCH] EDAC/qcom: Make irq configuration optional
@ 2024-09-03 6:01 Rajendra Nayak
2024-09-03 8:16 ` Manivannan Sadhasivam
2024-09-03 8:21 ` Abel Vesa
0 siblings, 2 replies; 5+ messages in thread
From: Rajendra Nayak @ 2024-09-03 6:01 UTC (permalink / raw)
To: manivannan.sadhasivam, bp, tony.luck, mchehab, rric, andersson,
konradybcio, quic_sibis, abel.vesa
Cc: linux-arm-msm, linux-edac, linux-kernel, Rajendra Nayak
On most modern qualcomm SoCs, the configuration necessary to enable the
Tag/Data RAM realted irqs being propagated to the SoC irq controller is
already done in firmware (in DSF or 'DDR System Firmware')
On some like the x1e80100, these registers aren't even accesible to the
kernel causing a crash when edac device is probed.
Hence, make the irq configuration optional in the driver and mark x1e80100
as the SoC on which this should be avoided.
Fixes: af16b00578a7 ("arm64: dts: qcom: Add base X1E80100 dtsi and the QCP dts")
Reported-by: Bjorn Andersson <andersson@kernel.org>
Signed-off-by: Rajendra Nayak <quic_rjendra@quicinc.com>
---
drivers/edac/qcom_edac.c | 8 +++++---
drivers/soc/qcom/llcc-qcom.c | 3 +++
include/linux/soc/qcom/llcc-qcom.h | 2 ++
3 files changed, 10 insertions(+), 3 deletions(-)
diff --git a/drivers/edac/qcom_edac.c b/drivers/edac/qcom_edac.c
index d3cd4cc54ace..96611ca09ac5 100644
--- a/drivers/edac/qcom_edac.c
+++ b/drivers/edac/qcom_edac.c
@@ -342,9 +342,11 @@ static int qcom_llcc_edac_probe(struct platform_device *pdev)
int ecc_irq;
int rc;
- rc = qcom_llcc_core_setup(llcc_driv_data, llcc_driv_data->bcast_regmap);
- if (rc)
- return rc;
+ if (!llcc_driv_data->ecc_irq_configured) {
+ rc = qcom_llcc_core_setup(llcc_driv_data, llcc_driv_data->bcast_regmap);
+ if (rc)
+ return rc;
+ }
/* Allocate edac control info */
edev_ctl = edac_device_alloc_ctl_info(0, "qcom-llcc", 1, "bank",
diff --git a/drivers/soc/qcom/llcc-qcom.c b/drivers/soc/qcom/llcc-qcom.c
index 8fa4ffd3a9b5..b1c0ae9991d6 100644
--- a/drivers/soc/qcom/llcc-qcom.c
+++ b/drivers/soc/qcom/llcc-qcom.c
@@ -139,6 +139,7 @@ struct qcom_llcc_config {
int size;
bool need_llcc_cfg;
bool no_edac;
+ bool irq_configured;
};
struct qcom_sct_config {
@@ -718,6 +719,7 @@ static const struct qcom_llcc_config x1e80100_cfg[] = {
.need_llcc_cfg = true,
.reg_offset = llcc_v2_1_reg_offset,
.edac_reg_offset = &llcc_v2_1_edac_reg_offset,
+ .irq_configured = true,
},
};
@@ -1345,6 +1347,7 @@ static int qcom_llcc_probe(struct platform_device *pdev)
drv_data->cfg = llcc_cfg;
drv_data->cfg_size = sz;
drv_data->edac_reg_offset = cfg->edac_reg_offset;
+ drv_data->ecc_irq_configured = cfg->irq_configured;
mutex_init(&drv_data->lock);
platform_set_drvdata(pdev, drv_data);
diff --git a/include/linux/soc/qcom/llcc-qcom.h b/include/linux/soc/qcom/llcc-qcom.h
index 9e9f528b1370..acad1f4cf854 100644
--- a/include/linux/soc/qcom/llcc-qcom.h
+++ b/include/linux/soc/qcom/llcc-qcom.h
@@ -125,6 +125,7 @@ struct llcc_edac_reg_offset {
* @num_banks: Number of llcc banks
* @bitmap: Bit map to track the active slice ids
* @ecc_irq: interrupt for llcc cache error detection and reporting
+ * @ecc_irq_configured: 'True' if firmware has already configured the irq propagation
* @version: Indicates the LLCC version
*/
struct llcc_drv_data {
@@ -139,6 +140,7 @@ struct llcc_drv_data {
u32 num_banks;
unsigned long *bitmap;
int ecc_irq;
+ bool ecc_irq_configured;
u32 version;
};
--
2.34.1
^ permalink raw reply related [flat|nested] 5+ messages in thread
* Re: [PATCH] EDAC/qcom: Make irq configuration optional
2024-09-03 6:01 [PATCH] EDAC/qcom: Make irq configuration optional Rajendra Nayak
@ 2024-09-03 8:16 ` Manivannan Sadhasivam
2024-09-03 8:21 ` Abel Vesa
1 sibling, 0 replies; 5+ messages in thread
From: Manivannan Sadhasivam @ 2024-09-03 8:16 UTC (permalink / raw)
To: Rajendra Nayak
Cc: bp, tony.luck, mchehab, rric, andersson, konradybcio, quic_sibis,
abel.vesa, linux-arm-msm, linux-edac, linux-kernel
On Tue, Sep 03, 2024 at 11:31:38AM +0530, Rajendra Nayak wrote:
> On most modern qualcomm SoCs, the configuration necessary to enable the
> Tag/Data RAM realted irqs being propagated to the SoC irq controller is
> already done in firmware (in DSF or 'DDR System Firmware')
>
> On some like the x1e80100, these registers aren't even accesible to the
> kernel causing a crash when edac device is probed.
>
> Hence, make the irq configuration optional in the driver and mark x1e80100
> as the SoC on which this should be avoided.
>
> Fixes: af16b00578a7 ("arm64: dts: qcom: Add base X1E80100 dtsi and the QCP dts")
> Reported-by: Bjorn Andersson <andersson@kernel.org>
> Signed-off-by: Rajendra Nayak <quic_rjendra@quicinc.com>
Reviewed-by: Manivannan Sadhasivam <manivannan.sadhasivam@linaro.org>
- Mani
> ---
> drivers/edac/qcom_edac.c | 8 +++++---
> drivers/soc/qcom/llcc-qcom.c | 3 +++
> include/linux/soc/qcom/llcc-qcom.h | 2 ++
> 3 files changed, 10 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/edac/qcom_edac.c b/drivers/edac/qcom_edac.c
> index d3cd4cc54ace..96611ca09ac5 100644
> --- a/drivers/edac/qcom_edac.c
> +++ b/drivers/edac/qcom_edac.c
> @@ -342,9 +342,11 @@ static int qcom_llcc_edac_probe(struct platform_device *pdev)
> int ecc_irq;
> int rc;
>
> - rc = qcom_llcc_core_setup(llcc_driv_data, llcc_driv_data->bcast_regmap);
> - if (rc)
> - return rc;
> + if (!llcc_driv_data->ecc_irq_configured) {
> + rc = qcom_llcc_core_setup(llcc_driv_data, llcc_driv_data->bcast_regmap);
> + if (rc)
> + return rc;
> + }
>
> /* Allocate edac control info */
> edev_ctl = edac_device_alloc_ctl_info(0, "qcom-llcc", 1, "bank",
> diff --git a/drivers/soc/qcom/llcc-qcom.c b/drivers/soc/qcom/llcc-qcom.c
> index 8fa4ffd3a9b5..b1c0ae9991d6 100644
> --- a/drivers/soc/qcom/llcc-qcom.c
> +++ b/drivers/soc/qcom/llcc-qcom.c
> @@ -139,6 +139,7 @@ struct qcom_llcc_config {
> int size;
> bool need_llcc_cfg;
> bool no_edac;
> + bool irq_configured;
> };
>
> struct qcom_sct_config {
> @@ -718,6 +719,7 @@ static const struct qcom_llcc_config x1e80100_cfg[] = {
> .need_llcc_cfg = true,
> .reg_offset = llcc_v2_1_reg_offset,
> .edac_reg_offset = &llcc_v2_1_edac_reg_offset,
> + .irq_configured = true,
> },
> };
>
> @@ -1345,6 +1347,7 @@ static int qcom_llcc_probe(struct platform_device *pdev)
> drv_data->cfg = llcc_cfg;
> drv_data->cfg_size = sz;
> drv_data->edac_reg_offset = cfg->edac_reg_offset;
> + drv_data->ecc_irq_configured = cfg->irq_configured;
> mutex_init(&drv_data->lock);
> platform_set_drvdata(pdev, drv_data);
>
> diff --git a/include/linux/soc/qcom/llcc-qcom.h b/include/linux/soc/qcom/llcc-qcom.h
> index 9e9f528b1370..acad1f4cf854 100644
> --- a/include/linux/soc/qcom/llcc-qcom.h
> +++ b/include/linux/soc/qcom/llcc-qcom.h
> @@ -125,6 +125,7 @@ struct llcc_edac_reg_offset {
> * @num_banks: Number of llcc banks
> * @bitmap: Bit map to track the active slice ids
> * @ecc_irq: interrupt for llcc cache error detection and reporting
> + * @ecc_irq_configured: 'True' if firmware has already configured the irq propagation
> * @version: Indicates the LLCC version
> */
> struct llcc_drv_data {
> @@ -139,6 +140,7 @@ struct llcc_drv_data {
> u32 num_banks;
> unsigned long *bitmap;
> int ecc_irq;
> + bool ecc_irq_configured;
> u32 version;
> };
>
> --
> 2.34.1
>
--
மணிவண்ணன் சதாசிவம்
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] EDAC/qcom: Make irq configuration optional
2024-09-03 6:01 [PATCH] EDAC/qcom: Make irq configuration optional Rajendra Nayak
2024-09-03 8:16 ` Manivannan Sadhasivam
@ 2024-09-03 8:21 ` Abel Vesa
2024-09-03 8:27 ` Manivannan Sadhasivam
1 sibling, 1 reply; 5+ messages in thread
From: Abel Vesa @ 2024-09-03 8:21 UTC (permalink / raw)
To: Rajendra Nayak
Cc: manivannan.sadhasivam, bp, tony.luck, mchehab, rric, andersson,
konradybcio, quic_sibis, linux-arm-msm, linux-edac, linux-kernel
On 24-09-03 11:31:38, Rajendra Nayak wrote:
> On most modern qualcomm SoCs, the configuration necessary to enable the
> Tag/Data RAM realted irqs being propagated to the SoC irq controller is
Nitpick: s/realted/related/
> already done in firmware (in DSF or 'DDR System Firmware')
>
> On some like the x1e80100, these registers aren't even accesible to the
> kernel causing a crash when edac device is probed.
>
> Hence, make the irq configuration optional in the driver and mark x1e80100
> as the SoC on which this should be avoided.
>
> Fixes: af16b00578a7 ("arm64: dts: qcom: Add base X1E80100 dtsi and the QCP dts")
Not sure about this fixes tag though.
> Reported-by: Bjorn Andersson <andersson@kernel.org>
> Signed-off-by: Rajendra Nayak <quic_rjendra@quicinc.com>
> ---
> drivers/edac/qcom_edac.c | 8 +++++---
> drivers/soc/qcom/llcc-qcom.c | 3 +++
> include/linux/soc/qcom/llcc-qcom.h | 2 ++
> 3 files changed, 10 insertions(+), 3 deletions(-)
>
> diff --git a/drivers/edac/qcom_edac.c b/drivers/edac/qcom_edac.c
> index d3cd4cc54ace..96611ca09ac5 100644
> --- a/drivers/edac/qcom_edac.c
> +++ b/drivers/edac/qcom_edac.c
> @@ -342,9 +342,11 @@ static int qcom_llcc_edac_probe(struct platform_device *pdev)
> int ecc_irq;
> int rc;
>
> - rc = qcom_llcc_core_setup(llcc_driv_data, llcc_driv_data->bcast_regmap);
> - if (rc)
> - return rc;
> + if (!llcc_driv_data->ecc_irq_configured) {
> + rc = qcom_llcc_core_setup(llcc_driv_data, llcc_driv_data->bcast_regmap);
> + if (rc)
> + return rc;
> + }
>
> /* Allocate edac control info */
> edev_ctl = edac_device_alloc_ctl_info(0, "qcom-llcc", 1, "bank",
> diff --git a/drivers/soc/qcom/llcc-qcom.c b/drivers/soc/qcom/llcc-qcom.c
> index 8fa4ffd3a9b5..b1c0ae9991d6 100644
> --- a/drivers/soc/qcom/llcc-qcom.c
> +++ b/drivers/soc/qcom/llcc-qcom.c
> @@ -139,6 +139,7 @@ struct qcom_llcc_config {
> int size;
> bool need_llcc_cfg;
> bool no_edac;
> + bool irq_configured;
> };
>
> struct qcom_sct_config {
> @@ -718,6 +719,7 @@ static const struct qcom_llcc_config x1e80100_cfg[] = {
> .need_llcc_cfg = true,
> .reg_offset = llcc_v2_1_reg_offset,
> .edac_reg_offset = &llcc_v2_1_edac_reg_offset,
> + .irq_configured = true,
> },
> };
>
> @@ -1345,6 +1347,7 @@ static int qcom_llcc_probe(struct platform_device *pdev)
> drv_data->cfg = llcc_cfg;
> drv_data->cfg_size = sz;
> drv_data->edac_reg_offset = cfg->edac_reg_offset;
> + drv_data->ecc_irq_configured = cfg->irq_configured;
> mutex_init(&drv_data->lock);
> platform_set_drvdata(pdev, drv_data);
>
> diff --git a/include/linux/soc/qcom/llcc-qcom.h b/include/linux/soc/qcom/llcc-qcom.h
> index 9e9f528b1370..acad1f4cf854 100644
> --- a/include/linux/soc/qcom/llcc-qcom.h
> +++ b/include/linux/soc/qcom/llcc-qcom.h
> @@ -125,6 +125,7 @@ struct llcc_edac_reg_offset {
> * @num_banks: Number of llcc banks
> * @bitmap: Bit map to track the active slice ids
> * @ecc_irq: interrupt for llcc cache error detection and reporting
> + * @ecc_irq_configured: 'True' if firmware has already configured the irq propagation
> * @version: Indicates the LLCC version
> */
> struct llcc_drv_data {
> @@ -139,6 +140,7 @@ struct llcc_drv_data {
> u32 num_banks;
> unsigned long *bitmap;
> int ecc_irq;
> + bool ecc_irq_configured;
> u32 version;
> };
>
> --
> 2.34.1
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] EDAC/qcom: Make irq configuration optional
2024-09-03 8:21 ` Abel Vesa
@ 2024-09-03 8:27 ` Manivannan Sadhasivam
2024-09-03 10:08 ` Abel Vesa
0 siblings, 1 reply; 5+ messages in thread
From: Manivannan Sadhasivam @ 2024-09-03 8:27 UTC (permalink / raw)
To: Abel Vesa
Cc: Rajendra Nayak, bp, tony.luck, mchehab, rric, andersson,
konradybcio, quic_sibis, linux-arm-msm, linux-edac, linux-kernel
On Tue, Sep 03, 2024 at 11:21:10AM +0300, Abel Vesa wrote:
> On 24-09-03 11:31:38, Rajendra Nayak wrote:
> > On most modern qualcomm SoCs, the configuration necessary to enable the
> > Tag/Data RAM realted irqs being propagated to the SoC irq controller is
>
> Nitpick: s/realted/related/
>
> > already done in firmware (in DSF or 'DDR System Firmware')
> >
> > On some like the x1e80100, these registers aren't even accesible to the
> > kernel causing a crash when edac device is probed.
> >
> > Hence, make the irq configuration optional in the driver and mark x1e80100
> > as the SoC on which this should be avoided.
> >
> > Fixes: af16b00578a7 ("arm64: dts: qcom: Add base X1E80100 dtsi and the QCP dts")
>
> Not sure about this fixes tag though.
>
Because, this commit introduced LLCC node which triggers the probe of the EDAC
driver leading to the crash.
- Mani
> > Reported-by: Bjorn Andersson <andersson@kernel.org>
> > Signed-off-by: Rajendra Nayak <quic_rjendra@quicinc.com>
> > ---
> > drivers/edac/qcom_edac.c | 8 +++++---
> > drivers/soc/qcom/llcc-qcom.c | 3 +++
> > include/linux/soc/qcom/llcc-qcom.h | 2 ++
> > 3 files changed, 10 insertions(+), 3 deletions(-)
> >
> > diff --git a/drivers/edac/qcom_edac.c b/drivers/edac/qcom_edac.c
> > index d3cd4cc54ace..96611ca09ac5 100644
> > --- a/drivers/edac/qcom_edac.c
> > +++ b/drivers/edac/qcom_edac.c
> > @@ -342,9 +342,11 @@ static int qcom_llcc_edac_probe(struct platform_device *pdev)
> > int ecc_irq;
> > int rc;
> >
> > - rc = qcom_llcc_core_setup(llcc_driv_data, llcc_driv_data->bcast_regmap);
> > - if (rc)
> > - return rc;
> > + if (!llcc_driv_data->ecc_irq_configured) {
> > + rc = qcom_llcc_core_setup(llcc_driv_data, llcc_driv_data->bcast_regmap);
> > + if (rc)
> > + return rc;
> > + }
> >
> > /* Allocate edac control info */
> > edev_ctl = edac_device_alloc_ctl_info(0, "qcom-llcc", 1, "bank",
> > diff --git a/drivers/soc/qcom/llcc-qcom.c b/drivers/soc/qcom/llcc-qcom.c
> > index 8fa4ffd3a9b5..b1c0ae9991d6 100644
> > --- a/drivers/soc/qcom/llcc-qcom.c
> > +++ b/drivers/soc/qcom/llcc-qcom.c
> > @@ -139,6 +139,7 @@ struct qcom_llcc_config {
> > int size;
> > bool need_llcc_cfg;
> > bool no_edac;
> > + bool irq_configured;
> > };
> >
> > struct qcom_sct_config {
> > @@ -718,6 +719,7 @@ static const struct qcom_llcc_config x1e80100_cfg[] = {
> > .need_llcc_cfg = true,
> > .reg_offset = llcc_v2_1_reg_offset,
> > .edac_reg_offset = &llcc_v2_1_edac_reg_offset,
> > + .irq_configured = true,
> > },
> > };
> >
> > @@ -1345,6 +1347,7 @@ static int qcom_llcc_probe(struct platform_device *pdev)
> > drv_data->cfg = llcc_cfg;
> > drv_data->cfg_size = sz;
> > drv_data->edac_reg_offset = cfg->edac_reg_offset;
> > + drv_data->ecc_irq_configured = cfg->irq_configured;
> > mutex_init(&drv_data->lock);
> > platform_set_drvdata(pdev, drv_data);
> >
> > diff --git a/include/linux/soc/qcom/llcc-qcom.h b/include/linux/soc/qcom/llcc-qcom.h
> > index 9e9f528b1370..acad1f4cf854 100644
> > --- a/include/linux/soc/qcom/llcc-qcom.h
> > +++ b/include/linux/soc/qcom/llcc-qcom.h
> > @@ -125,6 +125,7 @@ struct llcc_edac_reg_offset {
> > * @num_banks: Number of llcc banks
> > * @bitmap: Bit map to track the active slice ids
> > * @ecc_irq: interrupt for llcc cache error detection and reporting
> > + * @ecc_irq_configured: 'True' if firmware has already configured the irq propagation
> > * @version: Indicates the LLCC version
> > */
> > struct llcc_drv_data {
> > @@ -139,6 +140,7 @@ struct llcc_drv_data {
> > u32 num_banks;
> > unsigned long *bitmap;
> > int ecc_irq;
> > + bool ecc_irq_configured;
> > u32 version;
> > };
> >
> > --
> > 2.34.1
> >
--
மணிவண்ணன் சதாசிவம்
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [PATCH] EDAC/qcom: Make irq configuration optional
2024-09-03 8:27 ` Manivannan Sadhasivam
@ 2024-09-03 10:08 ` Abel Vesa
0 siblings, 0 replies; 5+ messages in thread
From: Abel Vesa @ 2024-09-03 10:08 UTC (permalink / raw)
To: Manivannan Sadhasivam
Cc: Rajendra Nayak, bp, tony.luck, mchehab, rric, andersson,
konradybcio, quic_sibis, linux-arm-msm, linux-edac, linux-kernel
On 24-09-03 13:57:20, Manivannan Sadhasivam wrote:
> On Tue, Sep 03, 2024 at 11:21:10AM +0300, Abel Vesa wrote:
> > On 24-09-03 11:31:38, Rajendra Nayak wrote:
> > > On most modern qualcomm SoCs, the configuration necessary to enable the
> > > Tag/Data RAM realted irqs being propagated to the SoC irq controller is
> >
> > Nitpick: s/realted/related/
> >
> > > already done in firmware (in DSF or 'DDR System Firmware')
> > >
> > > On some like the x1e80100, these registers aren't even accesible to the
> > > kernel causing a crash when edac device is probed.
> > >
> > > Hence, make the irq configuration optional in the driver and mark x1e80100
> > > as the SoC on which this should be avoided.
> > >
> > > Fixes: af16b00578a7 ("arm64: dts: qcom: Add base X1E80100 dtsi and the QCP dts")
> >
> > Not sure about this fixes tag though.
> >
>
> Because, this commit introduced LLCC node which triggers the probe of the EDAC
> driver leading to the crash.
>
Fair enough.
> - Mani
>
> > > Reported-by: Bjorn Andersson <andersson@kernel.org>
> > > Signed-off-by: Rajendra Nayak <quic_rjendra@quicinc.com>
> > > ---
> > > drivers/edac/qcom_edac.c | 8 +++++---
> > > drivers/soc/qcom/llcc-qcom.c | 3 +++
> > > include/linux/soc/qcom/llcc-qcom.h | 2 ++
> > > 3 files changed, 10 insertions(+), 3 deletions(-)
> > >
> > > diff --git a/drivers/edac/qcom_edac.c b/drivers/edac/qcom_edac.c
> > > index d3cd4cc54ace..96611ca09ac5 100644
> > > --- a/drivers/edac/qcom_edac.c
> > > +++ b/drivers/edac/qcom_edac.c
> > > @@ -342,9 +342,11 @@ static int qcom_llcc_edac_probe(struct platform_device *pdev)
> > > int ecc_irq;
> > > int rc;
> > >
> > > - rc = qcom_llcc_core_setup(llcc_driv_data, llcc_driv_data->bcast_regmap);
> > > - if (rc)
> > > - return rc;
> > > + if (!llcc_driv_data->ecc_irq_configured) {
> > > + rc = qcom_llcc_core_setup(llcc_driv_data, llcc_driv_data->bcast_regmap);
> > > + if (rc)
> > > + return rc;
> > > + }
> > >
> > > /* Allocate edac control info */
> > > edev_ctl = edac_device_alloc_ctl_info(0, "qcom-llcc", 1, "bank",
> > > diff --git a/drivers/soc/qcom/llcc-qcom.c b/drivers/soc/qcom/llcc-qcom.c
> > > index 8fa4ffd3a9b5..b1c0ae9991d6 100644
> > > --- a/drivers/soc/qcom/llcc-qcom.c
> > > +++ b/drivers/soc/qcom/llcc-qcom.c
> > > @@ -139,6 +139,7 @@ struct qcom_llcc_config {
> > > int size;
> > > bool need_llcc_cfg;
> > > bool no_edac;
> > > + bool irq_configured;
> > > };
> > >
> > > struct qcom_sct_config {
> > > @@ -718,6 +719,7 @@ static const struct qcom_llcc_config x1e80100_cfg[] = {
> > > .need_llcc_cfg = true,
> > > .reg_offset = llcc_v2_1_reg_offset,
> > > .edac_reg_offset = &llcc_v2_1_edac_reg_offset,
> > > + .irq_configured = true,
> > > },
> > > };
> > >
> > > @@ -1345,6 +1347,7 @@ static int qcom_llcc_probe(struct platform_device *pdev)
> > > drv_data->cfg = llcc_cfg;
> > > drv_data->cfg_size = sz;
> > > drv_data->edac_reg_offset = cfg->edac_reg_offset;
> > > + drv_data->ecc_irq_configured = cfg->irq_configured;
> > > mutex_init(&drv_data->lock);
> > > platform_set_drvdata(pdev, drv_data);
> > >
> > > diff --git a/include/linux/soc/qcom/llcc-qcom.h b/include/linux/soc/qcom/llcc-qcom.h
> > > index 9e9f528b1370..acad1f4cf854 100644
> > > --- a/include/linux/soc/qcom/llcc-qcom.h
> > > +++ b/include/linux/soc/qcom/llcc-qcom.h
> > > @@ -125,6 +125,7 @@ struct llcc_edac_reg_offset {
> > > * @num_banks: Number of llcc banks
> > > * @bitmap: Bit map to track the active slice ids
> > > * @ecc_irq: interrupt for llcc cache error detection and reporting
> > > + * @ecc_irq_configured: 'True' if firmware has already configured the irq propagation
> > > * @version: Indicates the LLCC version
> > > */
> > > struct llcc_drv_data {
> > > @@ -139,6 +140,7 @@ struct llcc_drv_data {
> > > u32 num_banks;
> > > unsigned long *bitmap;
> > > int ecc_irq;
> > > + bool ecc_irq_configured;
> > > u32 version;
> > > };
> > >
> > > --
> > > 2.34.1
> > >
>
> --
> மணிவண்ணன் சதாசிவம்
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2024-09-03 10:08 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2024-09-03 6:01 [PATCH] EDAC/qcom: Make irq configuration optional Rajendra Nayak
2024-09-03 8:16 ` Manivannan Sadhasivam
2024-09-03 8:21 ` Abel Vesa
2024-09-03 8:27 ` Manivannan Sadhasivam
2024-09-03 10:08 ` Abel Vesa
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.