linux-arm-kernel.lists.infradead.org archive mirror
 help / color / mirror / Atom feed
* [GIT PULL 1/2] drivers: soc: TI SOC changes for 5.11
@ 2020-12-01 19:36 Santosh Shilimkar
  2020-12-08 23:31 ` Arnd Bergmann
  0 siblings, 1 reply; 2+ messages in thread
From: Santosh Shilimkar @ 2020-12-01 19:36 UTC (permalink / raw)
  To: arnd, olof, soc; +Cc: arm, linux-kernel, linux-arm-kernel, santosh.shilimkar

The following changes since commit 3650b228f83adda7e5ee532e2b90429c03f7b9ec:

  Linux 5.10-rc1 (2020-10-25 15:14:11 -0700)

are available in the git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git tags/drivers_soc_for_5.11

for you to fetch changes up to 4cba398f37f868f515ff12868418dc28574853a1:

  drivers: soc: ti: knav_qmss_queue: Fix error return code in knav_queue_probe (2020-11-21 19:22:38 -0800)

----------------------------------------------------------------
drivers: soc: TI SOC changes for 5.11

- ti_sci changes towards DMSS support
- Static warning fixes
- Kconfig update for Keystone ARM64 socs
- AM64X SOC family support

----------------------------------------------------------------
Grzegorz Jaszczyk (1):
      soc: ti: pruss: Remove wrong check against *get_match_data return value

Lee Jones (6):
      soc: ti: knav_qmss_queue: Remove set but unchecked variable 'ret'
      soc: ti: knav_qmss_queue: Fix a whole host of function documentation issues
      soc: ti: knav_dma: Fix a kernel function doc formatting issue
      soc: ti: pm33xx: Remove set but unused variable 'ret'
      soc: ti: wkup_m3_ipc: Document 'm3_ipc' parameter throughout
      soc: ti: k3-ringacc: Provide documentation for 'k3_ring's 'state'

Nishanth Menon (1):
      soc: ti: Kconfig: Drop ARM64 SoC specific configs

Peter Ujfalusi (11):
      firmware: ti_sci: rm: Add support for tx_tdtype parameter for tx channel
      firmware: ti_sci: Use struct ti_sci_resource_desc in get_range ops
      firmware: ti_sci: rm: Add support for second resource range
      soc: ti: ti_sci_inta_msi: Add support for second range in resource ranges
      firmware: ti_sci: rm: Add support for extended_ch_type for tx channel
      firmware: ti_sci: rm: Remove ring_get_config support
      firmware: ti_sci: rm: Add new ops for ring configuration
      soc: ti: k3-ringacc: Use the ti_sci set_cfg callback for ring configuration
      firmware: ti_sci: rm: Remove unused config() from ti_sci_rm_ringacc_ops
      soc: ti: k3-ringacc: Use correct device for allocation in RING mode
      soc: ti: k3-socinfo: Add entry for AM64X SoC family

Tony Lindgren (1):
      soc: ti: omap-prm: Do not check rstst bit on deassert if already deasserted

Zhang Qilong (2):
      soc: ti: knav_qmss: fix reference leak in knav_queue_probe
      soc: ti: Fix reference imbalance in knav_dma_probe

Zhihao Cheng (1):
      drivers: soc: ti: knav_qmss_queue: Fix error return code in knav_queue_probe

 drivers/firmware/ti_sci.c              | 213 +++++++++++----------------------
 drivers/firmware/ti_sci.h              |  72 ++++-------
 drivers/soc/ti/Kconfig                 |  18 ---
 drivers/soc/ti/k3-ringacc.c            |  98 +++++++--------
 drivers/soc/ti/k3-socinfo.c            |   1 +
 drivers/soc/ti/knav_dma.c              |  15 ++-
 drivers/soc/ti/knav_qmss_queue.c       |  66 +++++-----
 drivers/soc/ti/omap_prm.c              |   4 +
 drivers/soc/ti/pm33xx.c                |   4 +-
 drivers/soc/ti/pruss.c                 |   6 -
 drivers/soc/ti/ti_sci_inta_msi.c       |  12 ++
 drivers/soc/ti/wkup_m3_ipc.c           |   8 +-
 include/linux/soc/ti/k3-ringacc.h      |   5 +
 include/linux/soc/ti/ti_sci_protocol.h |  85 ++++++++-----
 14 files changed, 272 insertions(+), 335 deletions(-)

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

* Re: [GIT PULL 1/2] drivers: soc: TI SOC changes for 5.11
  2020-12-01 19:36 [GIT PULL 1/2] drivers: soc: TI SOC changes for 5.11 Santosh Shilimkar
@ 2020-12-08 23:31 ` Arnd Bergmann
  0 siblings, 0 replies; 2+ messages in thread
From: Arnd Bergmann @ 2020-12-08 23:31 UTC (permalink / raw)
  To: soc, olof, Santosh Shilimkar
  Cc: linux-arm-kernel, arm, linux-kernel, Arnd Bergmann

From: Arnd Bergmann <arnd@arndb.de>

On Tue, 1 Dec 2020 11:36:45 -0800, Santosh Shilimkar wrote:
> The following changes since commit 3650b228f83adda7e5ee532e2b90429c03f7b9ec:
> 
>   Linux 5.10-rc1 (2020-10-25 15:14:11 -0700)
> 
> are available in the git repository at:
> 
>   git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git tags/drivers_soc_for_5.11
> 
> [...]

Merged into arm/drivers, thanks!

merge commit: 92bdbe647abdec49862ac1439c1a286f48218376

       Arnd

_______________________________________________
linux-arm-kernel mailing list
linux-arm-kernel@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-arm-kernel

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

end of thread, other threads:[~2020-12-08 23:33 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2020-12-01 19:36 [GIT PULL 1/2] drivers: soc: TI SOC changes for 5.11 Santosh Shilimkar
2020-12-08 23:31 ` Arnd Bergmann

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).