All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] remoteproc updates for v4.17
@ 2018-04-09 22:25 Bjorn Andersson
  2018-04-10  8:50 ` Arnaud Pouliquen
  0 siblings, 1 reply; 3+ messages in thread
From: Bjorn Andersson @ 2018-04-09 22:25 UTC (permalink / raw)
  To: Linus Torvalds
  Cc: Ohad Ben-Cohen, linux-remoteproc, linux-kernel, Bjorn Andersson,
	Christophe JAILLET, Sarangdhar Joshi, Arnd Bergmann,
	Jitendra Sharma, Sibi Sankar

The following changes since commit 7928b2cbe55b2a410a0f5c1f154610059c57b1b2:

  Linux 4.16-rc1 (2018-02-11 15:04:29 -0800)

are available in the Git repository at:

  git://github.com/andersson/remoteproc tags/rproc-v4.17

for you to fetch changes up to 730b2ad8f72898029160a6832141ba954122a0c8:

  remoteproc: fix null pointer dereference on glink only platforms (2018-04-05 22:53:16 -0700)

----------------------------------------------------------------
remoteproc updates for v4.17

This adds support for generating coredumps for remoteprocs using
devcoredump, adds the Qualcomm sysmon driver for intra-remoteproc crash
handling and a number of fixes in Qualcomm and IMX drivers.

----------------------------------------------------------------
Arnd Bergmann (1):
      soc: qcom: qmi: add CONFIG_NET dependency

Bjorn Andersson (5):
      remoteproc: Rename "load_rsc_table" to "parse_fw"
      soc: qcom: mdt-loader: Return relocation base
      remoteproc: Pass type of shutdown to subdev remove
      remoteproc: qcom: Introduce sysmon
      samples: Introduce Qualcomm QMI sample client

Christophe JAILLET (3):
      remoteproc: imx_rproc: Fix an error handling path in 'imx_rproc_probe()'
      remoteproc: imx_rproc: Re-use existing error handling path in 'imx_rproc_probe()'
      remoteproc: imx_rproc: Slightly simplify code in 'imx_rproc_probe()'

Jitendra Sharma (1):
      remoteproc: Remove null character write of shared mem

Sarangdhar Joshi (2):
      remoteproc: Add remote processor coredump support
      remoteproc: qcom: Register segments for core dump

Sibi Sankar (1):
      remoteproc: fix null pointer dereference on glink only platforms

 drivers/gpu/drm/msm/adreno/a5xx_gpu.c        |   4 +-
 drivers/media/platform/qcom/venus/firmware.c |   2 +-
 drivers/remoteproc/Kconfig                   |  19 +
 drivers/remoteproc/Makefile                  |   1 +
 drivers/remoteproc/imx_rproc.c               |  23 +-
 drivers/remoteproc/qcom_adsp_pil.c           |  20 +-
 drivers/remoteproc/qcom_common.c             |  56 ++-
 drivers/remoteproc/qcom_common.h             |  23 +
 drivers/remoteproc/qcom_q6v5_pil.c           |   9 +-
 drivers/remoteproc/qcom_sysmon.c             | 579 +++++++++++++++++++++++++
 drivers/remoteproc/qcom_wcnss.c              |  11 +-
 drivers/remoteproc/remoteproc_core.c         | 152 ++++++-
 drivers/remoteproc/remoteproc_internal.h     |   7 +-
 drivers/soc/qcom/Kconfig                     |   2 +-
 drivers/soc/qcom/mdt_loader.c                |   7 +-
 include/linux/remoteproc.h                   |  27 +-
 include/linux/soc/qcom/mdt_loader.h          |   3 +-
 samples/Kconfig                              |  10 +
 samples/Makefile                             |   2 +-
 samples/qmi/Makefile                         |   1 +
 samples/qmi/qmi_sample_client.c              | 622 +++++++++++++++++++++++++++
 21 files changed, 1524 insertions(+), 56 deletions(-)
 create mode 100644 drivers/remoteproc/qcom_sysmon.c
 create mode 100644 samples/qmi/Makefile
 create mode 100644 samples/qmi/qmi_sample_client.c

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] remoteproc updates for v4.17
  2018-04-09 22:25 [GIT PULL] remoteproc updates for v4.17 Bjorn Andersson
@ 2018-04-10  8:50 ` Arnaud Pouliquen
  2018-04-10 17:58   ` Bjorn Andersson
  0 siblings, 1 reply; 3+ messages in thread
From: Arnaud Pouliquen @ 2018-04-10  8:50 UTC (permalink / raw)
  To: Bjorn Andersson, linux-remoteproc@vger.kernel.org; +Cc: "linux-kernel

Hi Bjorn,

On 04/10/2018 12:25 AM, Bjorn Andersson wrote:
> The following changes since commit 7928b2cbe55b2a410a0f5c1f154610059c57b1b2:
> 
>   Linux 4.16-rc1 (2018-02-11 15:04:29 -0800)
> 
> are available in the Git repository at:
> 
>   git://github.com/andersson/remoteproc tags/rproc-v4.17
> 
> for you to fetch changes up to 730b2ad8f72898029160a6832141ba954122a0c8:
> 
>   remoteproc: fix null pointer dereference on glink only platforms (2018-04-05 22:53:16 -0700)
> 
> ----------------------------------------------------------------
> remoteproc updates for v4.17
> 
> This adds support for generating coredumps for remoteprocs using
> devcoredump, adds the Qualcomm sysmon driver for intra-remoteproc crash
> handling and a number of fixes in Qualcomm and IMX drivers.
> 
> ----------------------------------------------------------------
> Arnd Bergmann (1):
>       soc: qcom: qmi: add CONFIG_NET dependency
> 
> Bjorn Andersson (5):
>       remoteproc: Rename "load_rsc_table" to "parse_fw"
>       soc: qcom: mdt-loader: Return relocation base
>       remoteproc: Pass type of shutdown to subdev remove

I haven't seen the V6 associated to this patch, did i miss it?

look like this patch is not good.
there is a parameter name error in remote_proc.h and logic seems
inversed in remote_proc.c

I will send a fix following this mail( FYI I'm not able to test the fix
on my side...)

Regards
Arnaud

>       remoteproc: qcom: Introduce sysmon
>       samples: Introduce Qualcomm QMI sample client
> 
> Christophe JAILLET (3):
>       remoteproc: imx_rproc: Fix an error handling path in 'imx_rproc_probe()'
>       remoteproc: imx_rproc: Re-use existing error handling path in 'imx_rproc_probe()'
>       remoteproc: imx_rproc: Slightly simplify code in 'imx_rproc_probe()'
> 
> Jitendra Sharma (1):
>       remoteproc: Remove null character write of shared mem
> 
> Sarangdhar Joshi (2):
>       remoteproc: Add remote processor coredump support
>       remoteproc: qcom: Register segments for core dump
> 
> Sibi Sankar (1):
>       remoteproc: fix null pointer dereference on glink only platforms
> 
>  drivers/gpu/drm/msm/adreno/a5xx_gpu.c        |   4 +-
>  drivers/media/platform/qcom/venus/firmware.c |   2 +-
>  drivers/remoteproc/Kconfig                   |  19 +
>  drivers/remoteproc/Makefile                  |   1 +
>  drivers/remoteproc/imx_rproc.c               |  23 +-
>  drivers/remoteproc/qcom_adsp_pil.c           |  20 +-
>  drivers/remoteproc/qcom_common.c             |  56 ++-
>  drivers/remoteproc/qcom_common.h             |  23 +
>  drivers/remoteproc/qcom_q6v5_pil.c           |   9 +-
>  drivers/remoteproc/qcom_sysmon.c             | 579 +++++++++++++++++++++++++
>  drivers/remoteproc/qcom_wcnss.c              |  11 +-
>  drivers/remoteproc/remoteproc_core.c         | 152 ++++++-
>  drivers/remoteproc/remoteproc_internal.h     |   7 +-
>  drivers/soc/qcom/Kconfig                     |   2 +-
>  drivers/soc/qcom/mdt_loader.c                |   7 +-
>  include/linux/remoteproc.h                   |  27 +-
>  include/linux/soc/qcom/mdt_loader.h          |   3 +-
>  samples/Kconfig                              |  10 +
>  samples/Makefile                             |   2 +-
>  samples/qmi/Makefile                         |   1 +
>  samples/qmi/qmi_sample_client.c              | 622 +++++++++++++++++++++++++++
>  21 files changed, 1524 insertions(+), 56 deletions(-)
>  create mode 100644 drivers/remoteproc/qcom_sysmon.c
>  create mode 100644 samples/qmi/Makefile
>  create mode 100644 samples/qmi/qmi_sample_client.c
> --
> To unsubscribe from this list: send the line "unsubscribe linux-remoteproc" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 

^ permalink raw reply	[flat|nested] 3+ messages in thread

* Re: [GIT PULL] remoteproc updates for v4.17
  2018-04-10  8:50 ` Arnaud Pouliquen
@ 2018-04-10 17:58   ` Bjorn Andersson
  0 siblings, 0 replies; 3+ messages in thread
From: Bjorn Andersson @ 2018-04-10 17:58 UTC (permalink / raw)
  To: Arnaud Pouliquen
  Cc: linux-remoteproc@vger.kernel.org, linux-kernel, linux-arm-msm

On Tue 10 Apr 01:50 PDT 2018, Arnaud Pouliquen wrote:

> Hi Bjorn,
> 
> On 04/10/2018 12:25 AM, Bjorn Andersson wrote:
> > The following changes since commit 7928b2cbe55b2a410a0f5c1f154610059c57b1b2:
> > 
> >   Linux 4.16-rc1 (2018-02-11 15:04:29 -0800)
> > 
> > are available in the Git repository at:
> > 
> >   git://github.com/andersson/remoteproc tags/rproc-v4.17
> > 
> > for you to fetch changes up to 730b2ad8f72898029160a6832141ba954122a0c8:
> > 
> >   remoteproc: fix null pointer dereference on glink only platforms (2018-04-05 22:53:16 -0700)
> > 
> > ----------------------------------------------------------------
> > remoteproc updates for v4.17
> > 
> > This adds support for generating coredumps for remoteprocs using
> > devcoredump, adds the Qualcomm sysmon driver for intra-remoteproc crash
> > handling and a number of fixes in Qualcomm and IMX drivers.
> > 
> > ----------------------------------------------------------------
> > Arnd Bergmann (1):
> >       soc: qcom: qmi: add CONFIG_NET dependency
> > 
> > Bjorn Andersson (5):
> >       remoteproc: Rename "load_rsc_table" to "parse_fw"
> >       soc: qcom: mdt-loader: Return relocation base
> >       remoteproc: Pass type of shutdown to subdev remove
> 
> I haven't seen the V6 associated to this patch, did i miss it?
> 
> look like this patch is not good.
> there is a parameter name error in remote_proc.h and logic seems
> inversed in remote_proc.c
> 

Thanks for spotting this.

> I will send a fix following this mail( FYI I'm not able to test the fix
> on my side...)
> 

Your patch looks good, I will do some tests and prepare a follow-up pull
request including your fix.

Regards,
Bjorn

> Regards
> Arnaud
> 
> >       remoteproc: qcom: Introduce sysmon
> >       samples: Introduce Qualcomm QMI sample client
> > 
> > Christophe JAILLET (3):
> >       remoteproc: imx_rproc: Fix an error handling path in 'imx_rproc_probe()'
> >       remoteproc: imx_rproc: Re-use existing error handling path in 'imx_rproc_probe()'
> >       remoteproc: imx_rproc: Slightly simplify code in 'imx_rproc_probe()'
> > 
> > Jitendra Sharma (1):
> >       remoteproc: Remove null character write of shared mem
> > 
> > Sarangdhar Joshi (2):
> >       remoteproc: Add remote processor coredump support
> >       remoteproc: qcom: Register segments for core dump
> > 
> > Sibi Sankar (1):
> >       remoteproc: fix null pointer dereference on glink only platforms
> > 
> >  drivers/gpu/drm/msm/adreno/a5xx_gpu.c        |   4 +-
> >  drivers/media/platform/qcom/venus/firmware.c |   2 +-
> >  drivers/remoteproc/Kconfig                   |  19 +
> >  drivers/remoteproc/Makefile                  |   1 +
> >  drivers/remoteproc/imx_rproc.c               |  23 +-
> >  drivers/remoteproc/qcom_adsp_pil.c           |  20 +-
> >  drivers/remoteproc/qcom_common.c             |  56 ++-
> >  drivers/remoteproc/qcom_common.h             |  23 +
> >  drivers/remoteproc/qcom_q6v5_pil.c           |   9 +-
> >  drivers/remoteproc/qcom_sysmon.c             | 579 +++++++++++++++++++++++++
> >  drivers/remoteproc/qcom_wcnss.c              |  11 +-
> >  drivers/remoteproc/remoteproc_core.c         | 152 ++++++-
> >  drivers/remoteproc/remoteproc_internal.h     |   7 +-
> >  drivers/soc/qcom/Kconfig                     |   2 +-
> >  drivers/soc/qcom/mdt_loader.c                |   7 +-
> >  include/linux/remoteproc.h                   |  27 +-
> >  include/linux/soc/qcom/mdt_loader.h          |   3 +-
> >  samples/Kconfig                              |  10 +
> >  samples/Makefile                             |   2 +-
> >  samples/qmi/Makefile                         |   1 +
> >  samples/qmi/qmi_sample_client.c              | 622 +++++++++++++++++++++++++++
> >  21 files changed, 1524 insertions(+), 56 deletions(-)
> >  create mode 100644 drivers/remoteproc/qcom_sysmon.c
> >  create mode 100644 samples/qmi/Makefile
> >  create mode 100644 samples/qmi/qmi_sample_client.c
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-remoteproc" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> > 

^ permalink raw reply	[flat|nested] 3+ messages in thread

end of thread, other threads:[~2018-04-10 17:58 UTC | newest]

Thread overview: 3+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-04-09 22:25 [GIT PULL] remoteproc updates for v4.17 Bjorn Andersson
2018-04-10  8:50 ` Arnaud Pouliquen
2018-04-10 17:58   ` Bjorn Andersson

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.