* [PATCH v2 0/2] Modularize RPMH driver @ 2020-08-25 11:21 Maulik Shah 2020-08-25 11:21 ` [PATCH v2 1/2] Revert "drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh" Maulik Shah 2020-08-25 11:21 ` [PATCH v2 2/2] soc: qcom: rpmh: Allow RPMH driver to be loaded as a module Maulik Shah 0 siblings, 2 replies; 8+ messages in thread From: Maulik Shah @ 2020-08-25 11:21 UTC (permalink / raw) To: bjorn.andersson, andy.gross Cc: linux-kernel, linux-arm-msm, ulf.hansson, swboyd, dianders, rnayak, ilina, lsrao, Maulik Shah Changes in v2: - Update commit message in patch 1 - send [4] again instead of revert's revert in patch 2. This series is to modularize RPMH driver The tracepoint in RPMH driver was changed to _rcuidle variant based on the test results of unmerged series [1] where .power_off callback from genpd reported RCU warnings. The series which finally got merged [2] uses CPU PM notifications and genpd .power_off callback is not implemented in RPMH driver to invoke rpmh_flush(). The CPU PM notifications are done with RCU non idle in kernel (see cpu_pm_notify() uses rcu_irq_enter_irqson() before notifications) However using _rcuidle variant prevented RPMH driver to compile as module since these _rcuidle are not exported symbols for tracepoints. This seris reverts the change [3] to remove _rcuidle variant for tracepoint as its no more valid test case (genpd .power_off is not implemented) and bring backs the change [4] that was reverted due to _rcuidle preventing to become modular. [1] https://patchwork.kernel.org/project/linux-arm-msm/list/?series=243931 [2] https://patchwork.kernel.org/project/linux-arm-msm/list/?series=269733 [3] https://lore.kernel.org/r/20200115013751.249588-1-swboyd@chromium.org [4] https://lore.kernel.org/r/20200326224459.105170-3-john.stultz@linaro.org John Stultz (1): soc: qcom: rpmh: Allow RPMH driver to be loaded as a module Maulik Shah (1): Revert "drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh" drivers/soc/qcom/Kconfig | 2 +- drivers/soc/qcom/rpmh-rsc.c | 7 ++++++- 2 files changed, 7 insertions(+), 2 deletions(-) -- QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 1/2] Revert "drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh" 2020-08-25 11:21 [PATCH v2 0/2] Modularize RPMH driver Maulik Shah @ 2020-08-25 11:21 ` Maulik Shah 2020-08-27 1:53 ` Bjorn Andersson 2020-09-28 20:47 ` John Stultz 2020-08-25 11:21 ` [PATCH v2 2/2] soc: qcom: rpmh: Allow RPMH driver to be loaded as a module Maulik Shah 1 sibling, 2 replies; 8+ messages in thread From: Maulik Shah @ 2020-08-25 11:21 UTC (permalink / raw) To: bjorn.andersson, andy.gross Cc: linux-kernel, linux-arm-msm, ulf.hansson, swboyd, dianders, rnayak, ilina, lsrao, Maulik Shah, Sai Prakash Ranjan, John Stultz, Stephen Rothwell Commit efde2659b0fe ("drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh") was written to fix a bug seen in an unmerged series that implemented a struct generic_pm_domain::power_off() callback calling rpmh_flush(). See stack trace below. Call trace: dump_backtrace+0x0/0x174 show_stack+0x20/0x2c dump_stack+0xc8/0x124 lockdep_rcu_suspicious+0xe4/0x104 __tcs_buffer_write+0x230/0x2d0 rpmh_rsc_write_ctrl_data+0x210/0x270 rpmh_flush+0x84/0x24c rpmh_domain_power_off+0x78/0x98 _genpd_power_off+0x40/0xc0 genpd_power_off+0x168/0x208 Later the final merged solution is to use CPU PM notification to invoke rpmh_flush() and power_off() callback of genpd is not implemented in the driver. CPU PM notifiers are run with RCU enabled/watching (see cpu_pm_notify() and how it calls rcu_irq_enter_irqson() before calling the notifiers). Remove this change since RCU will not be idle during CPU PM notifications hence not required to use _rcuidle tracepoint. Using _rcuidle tracepoint prevented rpmh driver to be loadable module as these are not exported symbols. This reverts commit efde2659b0fe835732047357b2902cca14f054d9. Cc: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> Cc: John Stultz <john.stultz@linaro.org> Cc: Stephen Rothwell <sfr@canb.auug.org.au> Reviewed-by: Stephen Boyd <swboyd@chromium.org> Reviewed-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org> Signed-off-by: Maulik Shah <mkshah@codeaurora.org> --- drivers/soc/qcom/rpmh-rsc.c | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/drivers/soc/qcom/rpmh-rsc.c b/drivers/soc/qcom/rpmh-rsc.c index ae66757..fabe390d 100644 --- a/drivers/soc/qcom/rpmh-rsc.c +++ b/drivers/soc/qcom/rpmh-rsc.c @@ -495,7 +495,7 @@ static void __tcs_buffer_write(struct rsc_drv *drv, int tcs_id, int cmd_id, write_tcs_cmd(drv, RSC_DRV_CMD_MSGID, tcs_id, j, msgid); write_tcs_cmd(drv, RSC_DRV_CMD_ADDR, tcs_id, j, cmd->addr); write_tcs_cmd(drv, RSC_DRV_CMD_DATA, tcs_id, j, cmd->data); - trace_rpmh_send_msg_rcuidle(drv, tcs_id, j, msgid, cmd); + trace_rpmh_send_msg(drv, tcs_id, j, msgid, cmd); } write_tcs_reg(drv, RSC_DRV_CMD_WAIT_FOR_CMPL, tcs_id, cmd_complete); -- QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 1/2] Revert "drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh" 2020-08-25 11:21 ` [PATCH v2 1/2] Revert "drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh" Maulik Shah @ 2020-08-27 1:53 ` Bjorn Andersson 2020-09-28 20:47 ` John Stultz 1 sibling, 0 replies; 8+ messages in thread From: Bjorn Andersson @ 2020-08-27 1:53 UTC (permalink / raw) To: Maulik Shah Cc: andy.gross, linux-kernel, linux-arm-msm, ulf.hansson, swboyd, dianders, rnayak, ilina, lsrao, Sai Prakash Ranjan, John Stultz, Stephen Rothwell On Tue 25 Aug 06:21 CDT 2020, Maulik Shah wrote: > Commit efde2659b0fe ("drivers: qcom: rpmh-rsc: Use rcuidle tracepoints > for rpmh") was written to fix a bug seen in an unmerged series that > implemented a struct generic_pm_domain::power_off() callback calling > rpmh_flush(). See stack trace below. > > Call trace: > dump_backtrace+0x0/0x174 > show_stack+0x20/0x2c > dump_stack+0xc8/0x124 > lockdep_rcu_suspicious+0xe4/0x104 > __tcs_buffer_write+0x230/0x2d0 > rpmh_rsc_write_ctrl_data+0x210/0x270 > rpmh_flush+0x84/0x24c > rpmh_domain_power_off+0x78/0x98 > _genpd_power_off+0x40/0xc0 > genpd_power_off+0x168/0x208 > > Later the final merged solution is to use CPU PM notification to invoke > rpmh_flush() and power_off() callback of genpd is not implemented in the > driver. > > CPU PM notifiers are run with RCU enabled/watching (see cpu_pm_notify() > and how it calls rcu_irq_enter_irqson() before calling the notifiers). > > Remove this change since RCU will not be idle during CPU PM notifications > hence not required to use _rcuidle tracepoint. Using _rcuidle tracepoint > prevented rpmh driver to be loadable module as these are not exported > symbols. > > This reverts commit efde2659b0fe835732047357b2902cca14f054d9. > > Cc: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> > Cc: John Stultz <john.stultz@linaro.org> > Cc: Stephen Rothwell <sfr@canb.auug.org.au> > Reviewed-by: Stephen Boyd <swboyd@chromium.org> > Reviewed-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> > Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org> Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org> Regards, Bjorn > Signed-off-by: Maulik Shah <mkshah@codeaurora.org> > --- > drivers/soc/qcom/rpmh-rsc.c | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/drivers/soc/qcom/rpmh-rsc.c b/drivers/soc/qcom/rpmh-rsc.c > index ae66757..fabe390d 100644 > --- a/drivers/soc/qcom/rpmh-rsc.c > +++ b/drivers/soc/qcom/rpmh-rsc.c > @@ -495,7 +495,7 @@ static void __tcs_buffer_write(struct rsc_drv *drv, int tcs_id, int cmd_id, > write_tcs_cmd(drv, RSC_DRV_CMD_MSGID, tcs_id, j, msgid); > write_tcs_cmd(drv, RSC_DRV_CMD_ADDR, tcs_id, j, cmd->addr); > write_tcs_cmd(drv, RSC_DRV_CMD_DATA, tcs_id, j, cmd->data); > - trace_rpmh_send_msg_rcuidle(drv, tcs_id, j, msgid, cmd); > + trace_rpmh_send_msg(drv, tcs_id, j, msgid, cmd); > } > > write_tcs_reg(drv, RSC_DRV_CMD_WAIT_FOR_CMPL, tcs_id, cmd_complete); > -- > QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member > of Code Aurora Forum, hosted by The Linux Foundation > ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 1/2] Revert "drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh" 2020-08-25 11:21 ` [PATCH v2 1/2] Revert "drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh" Maulik Shah 2020-08-27 1:53 ` Bjorn Andersson @ 2020-09-28 20:47 ` John Stultz 2020-09-29 8:53 ` Maulik Shah 1 sibling, 1 reply; 8+ messages in thread From: John Stultz @ 2020-09-28 20:47 UTC (permalink / raw) To: Maulik Shah Cc: Bjorn Andersson, Andy Gross, lkml, linux-arm-msm, Ulf Hansson, Stephen Boyd, Doug Anderson, Rajendra Nayak, Lina Iyer, lsrao, Sai Prakash Ranjan, Stephen Rothwell On Tue, Aug 25, 2020 at 4:22 AM Maulik Shah <mkshah@codeaurora.org> wrote: > > Commit efde2659b0fe ("drivers: qcom: rpmh-rsc: Use rcuidle tracepoints > for rpmh") was written to fix a bug seen in an unmerged series that > implemented a struct generic_pm_domain::power_off() callback calling > rpmh_flush(). See stack trace below. > > Call trace: > dump_backtrace+0x0/0x174 > show_stack+0x20/0x2c > dump_stack+0xc8/0x124 > lockdep_rcu_suspicious+0xe4/0x104 > __tcs_buffer_write+0x230/0x2d0 > rpmh_rsc_write_ctrl_data+0x210/0x270 > rpmh_flush+0x84/0x24c > rpmh_domain_power_off+0x78/0x98 > _genpd_power_off+0x40/0xc0 > genpd_power_off+0x168/0x208 > > Later the final merged solution is to use CPU PM notification to invoke > rpmh_flush() and power_off() callback of genpd is not implemented in the > driver. > > CPU PM notifiers are run with RCU enabled/watching (see cpu_pm_notify() > and how it calls rcu_irq_enter_irqson() before calling the notifiers). > > Remove this change since RCU will not be idle during CPU PM notifications > hence not required to use _rcuidle tracepoint. Using _rcuidle tracepoint > prevented rpmh driver to be loadable module as these are not exported > symbols. > > This reverts commit efde2659b0fe835732047357b2902cca14f054d9. > > Cc: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> > Cc: John Stultz <john.stultz@linaro.org> > Cc: Stephen Rothwell <sfr@canb.auug.org.au> > Reviewed-by: Stephen Boyd <swboyd@chromium.org> > Reviewed-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> > Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org> > Signed-off-by: Maulik Shah <mkshah@codeaurora.org> Hey Maulik! Thanks so much for sending out this series! I noticed this hasn't made it to -next yet, so would it be good to resubmit it? thanks -john ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 1/2] Revert "drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh" 2020-09-28 20:47 ` John Stultz @ 2020-09-29 8:53 ` Maulik Shah 0 siblings, 0 replies; 8+ messages in thread From: Maulik Shah @ 2020-09-29 8:53 UTC (permalink / raw) To: John Stultz Cc: Bjorn Andersson, Andy Gross, lkml, linux-arm-msm, Ulf Hansson, Stephen Boyd, Doug Anderson, Rajendra Nayak, Lina Iyer, lsrao, Sai Prakash Ranjan, Stephen Rothwell Hi, On 9/29/2020 2:17 AM, John Stultz wrote: > On Tue, Aug 25, 2020 at 4:22 AM Maulik Shah <mkshah@codeaurora.org> wrote: >> Commit efde2659b0fe ("drivers: qcom: rpmh-rsc: Use rcuidle tracepoints >> for rpmh") was written to fix a bug seen in an unmerged series that >> implemented a struct generic_pm_domain::power_off() callback calling >> rpmh_flush(). See stack trace below. >> >> Call trace: >> dump_backtrace+0x0/0x174 >> show_stack+0x20/0x2c >> dump_stack+0xc8/0x124 >> lockdep_rcu_suspicious+0xe4/0x104 >> __tcs_buffer_write+0x230/0x2d0 >> rpmh_rsc_write_ctrl_data+0x210/0x270 >> rpmh_flush+0x84/0x24c >> rpmh_domain_power_off+0x78/0x98 >> _genpd_power_off+0x40/0xc0 >> genpd_power_off+0x168/0x208 >> >> Later the final merged solution is to use CPU PM notification to invoke >> rpmh_flush() and power_off() callback of genpd is not implemented in the >> driver. >> >> CPU PM notifiers are run with RCU enabled/watching (see cpu_pm_notify() >> and how it calls rcu_irq_enter_irqson() before calling the notifiers). >> >> Remove this change since RCU will not be idle during CPU PM notifications >> hence not required to use _rcuidle tracepoint. Using _rcuidle tracepoint >> prevented rpmh driver to be loadable module as these are not exported >> symbols. >> >> This reverts commit efde2659b0fe835732047357b2902cca14f054d9. >> >> Cc: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> >> Cc: John Stultz <john.stultz@linaro.org> >> Cc: Stephen Rothwell <sfr@canb.auug.org.au> >> Reviewed-by: Stephen Boyd <swboyd@chromium.org> >> Reviewed-by: Sai Prakash Ranjan <saiprakash.ranjan@codeaurora.org> >> Reviewed-by: Ulf Hansson <ulf.hansson@linaro.org> >> Signed-off-by: Maulik Shah <mkshah@codeaurora.org> > Hey Maulik! > Thanks so much for sending out this series! I noticed this hasn't > made it to -next yet, so would it be good to resubmit it? > > thanks > -john Sure i will resend the series. Thanks, Maulik -- QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation ^ permalink raw reply [flat|nested] 8+ messages in thread
* [PATCH v2 2/2] soc: qcom: rpmh: Allow RPMH driver to be loaded as a module 2020-08-25 11:21 [PATCH v2 0/2] Modularize RPMH driver Maulik Shah 2020-08-25 11:21 ` [PATCH v2 1/2] Revert "drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh" Maulik Shah @ 2020-08-25 11:21 ` Maulik Shah 2020-08-26 22:36 ` Stephen Boyd 2020-08-27 1:58 ` Bjorn Andersson 1 sibling, 2 replies; 8+ messages in thread From: Maulik Shah @ 2020-08-25 11:21 UTC (permalink / raw) To: bjorn.andersson, andy.gross Cc: linux-kernel, linux-arm-msm, ulf.hansson, swboyd, dianders, rnayak, ilina, lsrao, John Stultz, Todd Kjos, Saravana Kannan, Andy Gross, Maulik Shah From: John Stultz <john.stultz@linaro.org> This patch allow the rpmh driver to be loaded as a permenent module. Meaning it can be loaded from a module, but then cannot be unloaded. Ideally, it would include a remove hook and related logic, but the rpmh driver is fairly core to the system, so once its loaded with almost anything else to get the system to go, the dependencies are not likely to ever also be removed. So making it a permanent module at least improves things slightly over requiring it to be a built in driver. Cc: Todd Kjos <tkjos@google.com> Cc: Saravana Kannan <saravanak@google.com> Cc: Andy Gross <agross@kernel.org> Cc: Bjorn Andersson <bjorn.andersson@linaro.org> Cc: Rajendra Nayak <rnayak@codeaurora.org> Cc: linux-arm-msm@vger.kernel.org Signed-off-by: John Stultz <john.stultz@linaro.org> Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> [mkshah: Fix typos in commit message, send after removing _rcuidle trace] Signed-off-by: Maulik Shah <mkshah@codeaurora.org> --- drivers/soc/qcom/Kconfig | 2 +- drivers/soc/qcom/rpmh-rsc.c | 5 +++++ 2 files changed, 6 insertions(+), 1 deletion(-) diff --git a/drivers/soc/qcom/Kconfig b/drivers/soc/qcom/Kconfig index 3dc3e3d..892bdc7 100644 --- a/drivers/soc/qcom/Kconfig +++ b/drivers/soc/qcom/Kconfig @@ -92,7 +92,7 @@ config QCOM_RMTFS_MEM Say y here if you intend to boot the modem remoteproc. config QCOM_RPMH - bool "Qualcomm RPM-Hardened (RPMH) Communication" + tristate "Qualcomm RPM-Hardened (RPMH) Communication" depends on ARCH_QCOM || COMPILE_TEST help Support for communication with the hardened-RPM blocks in diff --git a/drivers/soc/qcom/rpmh-rsc.c b/drivers/soc/qcom/rpmh-rsc.c index fabe390d..5fce87c 100644 --- a/drivers/soc/qcom/rpmh-rsc.c +++ b/drivers/soc/qcom/rpmh-rsc.c @@ -13,6 +13,7 @@ #include <linux/iopoll.h> #include <linux/kernel.h> #include <linux/list.h> +#include <linux/module.h> #include <linux/of.h> #include <linux/of_irq.h> #include <linux/of_platform.h> @@ -1025,6 +1026,7 @@ static const struct of_device_id rpmh_drv_match[] = { { .compatible = "qcom,rpmh-rsc", }, { } }; +MODULE_DEVICE_TABLE(of, rpmh_drv_match); static struct platform_driver rpmh_driver = { .probe = rpmh_rsc_probe, @@ -1040,3 +1042,6 @@ static int __init rpmh_driver_init(void) return platform_driver_register(&rpmh_driver); } arch_initcall(rpmh_driver_init); + +MODULE_DESCRIPTION("Qualcomm Technologies, Inc. RPMh Driver"); +MODULE_LICENSE("GPL v2"); -- QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member of Code Aurora Forum, hosted by The Linux Foundation ^ permalink raw reply related [flat|nested] 8+ messages in thread
* Re: [PATCH v2 2/2] soc: qcom: rpmh: Allow RPMH driver to be loaded as a module 2020-08-25 11:21 ` [PATCH v2 2/2] soc: qcom: rpmh: Allow RPMH driver to be loaded as a module Maulik Shah @ 2020-08-26 22:36 ` Stephen Boyd 2020-08-27 1:58 ` Bjorn Andersson 1 sibling, 0 replies; 8+ messages in thread From: Stephen Boyd @ 2020-08-26 22:36 UTC (permalink / raw) To: Maulik Shah, andy.gross, bjorn.andersson Cc: linux-kernel, linux-arm-msm, ulf.hansson, dianders, rnayak, ilina, lsrao, John Stultz, Todd Kjos, Saravana Kannan, Andy Gross, Maulik Shah Quoting Maulik Shah (2020-08-25 04:21:22) > From: John Stultz <john.stultz@linaro.org> > > This patch allow the rpmh driver to be loaded as a permenent > module. Meaning it can be loaded from a module, but then cannot > be unloaded. > > Ideally, it would include a remove hook and related logic, but > the rpmh driver is fairly core to the system, so once its loaded > with almost anything else to get the system to go, the dependencies > are not likely to ever also be removed. > > So making it a permanent module at least improves things slightly > over requiring it to be a built in driver. > > Cc: Todd Kjos <tkjos@google.com> > Cc: Saravana Kannan <saravanak@google.com> > Cc: Andy Gross <agross@kernel.org> > Cc: Bjorn Andersson <bjorn.andersson@linaro.org> > Cc: Rajendra Nayak <rnayak@codeaurora.org> > Cc: linux-arm-msm@vger.kernel.org > Signed-off-by: John Stultz <john.stultz@linaro.org> > Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> > [mkshah: Fix typos in commit message, send after removing _rcuidle trace] > Signed-off-by: Maulik Shah <mkshah@codeaurora.org> > --- Reviewed-by: Stephen Boyd <swboyd@chromium.org> ^ permalink raw reply [flat|nested] 8+ messages in thread
* Re: [PATCH v2 2/2] soc: qcom: rpmh: Allow RPMH driver to be loaded as a module 2020-08-25 11:21 ` [PATCH v2 2/2] soc: qcom: rpmh: Allow RPMH driver to be loaded as a module Maulik Shah 2020-08-26 22:36 ` Stephen Boyd @ 2020-08-27 1:58 ` Bjorn Andersson 1 sibling, 0 replies; 8+ messages in thread From: Bjorn Andersson @ 2020-08-27 1:58 UTC (permalink / raw) To: Maulik Shah Cc: andy.gross, linux-kernel, linux-arm-msm, ulf.hansson, swboyd, dianders, rnayak, ilina, lsrao, John Stultz, Todd Kjos, Saravana Kannan, Andy Gross On Tue 25 Aug 06:21 CDT 2020, Maulik Shah wrote: > From: John Stultz <john.stultz@linaro.org> > > This patch allow the rpmh driver to be loaded as a permenent > module. Meaning it can be loaded from a module, but then cannot > be unloaded. > > Ideally, it would include a remove hook and related logic, but > the rpmh driver is fairly core to the system, so once its loaded > with almost anything else to get the system to go, the dependencies > are not likely to ever also be removed. > > So making it a permanent module at least improves things slightly > over requiring it to be a built in driver. > > Cc: Todd Kjos <tkjos@google.com> > Cc: Saravana Kannan <saravanak@google.com> > Cc: Andy Gross <agross@kernel.org> > Cc: Bjorn Andersson <bjorn.andersson@linaro.org> > Cc: Rajendra Nayak <rnayak@codeaurora.org> > Cc: linux-arm-msm@vger.kernel.org > Signed-off-by: John Stultz <john.stultz@linaro.org> > Signed-off-by: Bjorn Andersson <bjorn.andersson@linaro.org> > [mkshah: Fix typos in commit message, send after removing _rcuidle trace] > Signed-off-by: Maulik Shah <mkshah@codeaurora.org> Reviewed-by: Bjorn Andersson <bjorn.andersson@linaro.org> Regards, Bjorn > --- > drivers/soc/qcom/Kconfig | 2 +- > drivers/soc/qcom/rpmh-rsc.c | 5 +++++ > 2 files changed, 6 insertions(+), 1 deletion(-) > > diff --git a/drivers/soc/qcom/Kconfig b/drivers/soc/qcom/Kconfig > index 3dc3e3d..892bdc7 100644 > --- a/drivers/soc/qcom/Kconfig > +++ b/drivers/soc/qcom/Kconfig > @@ -92,7 +92,7 @@ config QCOM_RMTFS_MEM > Say y here if you intend to boot the modem remoteproc. > > config QCOM_RPMH > - bool "Qualcomm RPM-Hardened (RPMH) Communication" > + tristate "Qualcomm RPM-Hardened (RPMH) Communication" > depends on ARCH_QCOM || COMPILE_TEST > help > Support for communication with the hardened-RPM blocks in > diff --git a/drivers/soc/qcom/rpmh-rsc.c b/drivers/soc/qcom/rpmh-rsc.c > index fabe390d..5fce87c 100644 > --- a/drivers/soc/qcom/rpmh-rsc.c > +++ b/drivers/soc/qcom/rpmh-rsc.c > @@ -13,6 +13,7 @@ > #include <linux/iopoll.h> > #include <linux/kernel.h> > #include <linux/list.h> > +#include <linux/module.h> > #include <linux/of.h> > #include <linux/of_irq.h> > #include <linux/of_platform.h> > @@ -1025,6 +1026,7 @@ static const struct of_device_id rpmh_drv_match[] = { > { .compatible = "qcom,rpmh-rsc", }, > { } > }; > +MODULE_DEVICE_TABLE(of, rpmh_drv_match); > > static struct platform_driver rpmh_driver = { > .probe = rpmh_rsc_probe, > @@ -1040,3 +1042,6 @@ static int __init rpmh_driver_init(void) > return platform_driver_register(&rpmh_driver); > } > arch_initcall(rpmh_driver_init); > + > +MODULE_DESCRIPTION("Qualcomm Technologies, Inc. RPMh Driver"); > +MODULE_LICENSE("GPL v2"); > -- > QUALCOMM INDIA, on behalf of Qualcomm Innovation Center, Inc. is a member > of Code Aurora Forum, hosted by The Linux Foundation > ^ permalink raw reply [flat|nested] 8+ messages in thread
end of thread, other threads:[~2020-09-29 8:54 UTC | newest] Thread overview: 8+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2020-08-25 11:21 [PATCH v2 0/2] Modularize RPMH driver Maulik Shah 2020-08-25 11:21 ` [PATCH v2 1/2] Revert "drivers: qcom: rpmh-rsc: Use rcuidle tracepoints for rpmh" Maulik Shah 2020-08-27 1:53 ` Bjorn Andersson 2020-09-28 20:47 ` John Stultz 2020-09-29 8:53 ` Maulik Shah 2020-08-25 11:21 ` [PATCH v2 2/2] soc: qcom: rpmh: Allow RPMH driver to be loaded as a module Maulik Shah 2020-08-26 22:36 ` Stephen Boyd 2020-08-27 1:58 ` Bjorn Andersson
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox