linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [RESEND PATCH 00/20] nvmem: patches(set 1) for 5.2
@ 2019-04-13 10:32 Srinivas Kandagatla
  2019-04-13 10:32 ` [RESEND PATCH 01/20] dt-bindings: imx-ocotp: Add i.MX8MQ compatible Srinivas Kandagatla
                   ` (19 more replies)
  0 siblings, 20 replies; 21+ messages in thread
From: Srinivas Kandagatla @ 2019-04-13 10:32 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, srinivas.kandagatla

Resending this with cc to linux-kernel@vger.kernel.org

Hi Greg,

Here are some nvmem patches for 5.2 which includes:
- adding support to new stm32, sunix and imx providers
- few general cleanups
- fix for in place buffer reads.

Can you please pick these for 5.2.

thanks,
srini

Anson Huang (3):
  nvmem: imx-ocotp: use devm_platform_ioremap_resource() to simplify
    code
  nvmem: mxs-ocotp: use devm_platform_ioremap_resource() to simplify
    code
  nvmem: imx-iim: use devm_platform_ioremap_resource() to simplify code

Chen-Yu Tsai (5):
  nvmem: sunxi_sid: Read out SID for randomness without looping
  nvmem: sunxi_sid: Optimize register read-out method
  nvmem: sunxi_sid: Dynamically allocate nvmem_config structure
  nvmem: sunxi_sid: Read out data in native format
  nvmem: sunxi_sid: Support SID on A83T and H5

Fabrice Gasnier (4):
  dt-bindings: nvmem: Add STM32 factory-programmed romem
  nvmem: Add driver for STM32 factory-programmed read only mem
  nvmem: stm32: add support for STM32MP15 BSEC to control OTP data
  nvmem: core: add nvmem_cell_read_u16

Jorge Ramirez-Ortiz (1):
  nvmem: core: fix read buffer in place

Lucas Stach (3):
  dt-bindings: imx-ocotp: Add i.MX8MQ compatible
  nvmem: imx-ocotp: add support for imx8mq
  nvmem: imx-ocotp: broaden Kconfig dependency

Yangtao Li (4):
  nvmem: sunxi-sid: fix wrong description in kernel doc
  nvmem: sunxi-sid: add binding for H6's SID controller
  nvmem: sunxi-sid: convert to SPDX license tags
  nvmem: sunxi_sid: Support SID on H6

 .../bindings/nvmem/allwinner,sunxi-sid.txt    |   3 +-
 .../devicetree/bindings/nvmem/imx-ocotp.txt   |   4 +-
 .../bindings/nvmem/st,stm32-romem.txt         |  31 +++
 drivers/nvmem/Kconfig                         |  14 +-
 drivers/nvmem/Makefile                        |   2 +
 drivers/nvmem/core.c                          |  52 ++++-
 drivers/nvmem/imx-iim.c                       |   4 +-
 drivers/nvmem/imx-ocotp.c                     |  11 +-
 drivers/nvmem/mxs-ocotp.c                     |   4 +-
 drivers/nvmem/stm32-romem.c                   | 202 ++++++++++++++++++
 drivers/nvmem/sunxi_sid.c                     | 115 ++++------
 include/linux/nvmem-consumer.h                |   7 +
 12 files changed, 362 insertions(+), 87 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/nvmem/st,stm32-romem.txt
 create mode 100644 drivers/nvmem/stm32-romem.c

-- 
2.21.0


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

end of thread, other threads:[~2019-04-13 10:34 UTC | newest]

Thread overview: 21+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2019-04-13 10:32 [RESEND PATCH 00/20] nvmem: patches(set 1) for 5.2 Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 01/20] dt-bindings: imx-ocotp: Add i.MX8MQ compatible Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 02/20] nvmem: imx-ocotp: add support for imx8mq Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 03/20] nvmem: imx-ocotp: broaden Kconfig dependency Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 04/20] nvmem: sunxi_sid: Read out SID for randomness without looping Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 05/20] nvmem: sunxi_sid: Optimize register read-out method Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 06/20] nvmem: sunxi_sid: Dynamically allocate nvmem_config structure Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 07/20] nvmem: sunxi_sid: Read out data in native format Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 08/20] nvmem: sunxi_sid: Support SID on A83T and H5 Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 09/20] dt-bindings: nvmem: Add STM32 factory-programmed romem Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 10/20] nvmem: Add driver for STM32 factory-programmed read only mem Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 11/20] nvmem: stm32: add support for STM32MP15 BSEC to control OTP data Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 12/20] nvmem: core: add nvmem_cell_read_u16 Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 13/20] nvmem: core: fix read buffer in place Srinivas Kandagatla
2019-04-13 10:32 ` [RESEND PATCH 14/20] nvmem: imx-ocotp: use devm_platform_ioremap_resource() to simplify code Srinivas Kandagatla
2019-04-13 10:33 ` [RESEND PATCH 15/20] nvmem: mxs-ocotp: " Srinivas Kandagatla
2019-04-13 10:33 ` [RESEND PATCH 16/20] nvmem: imx-iim: " Srinivas Kandagatla
2019-04-13 10:33 ` [RESEND PATCH 17/20] nvmem: sunxi-sid: fix wrong description in kernel doc Srinivas Kandagatla
2019-04-13 10:33 ` [RESEND PATCH 18/20] nvmem: sunxi-sid: add binding for H6's SID controller Srinivas Kandagatla
2019-04-13 10:33 ` [RESEND PATCH 19/20] nvmem: sunxi-sid: convert to SPDX license tags Srinivas Kandagatla
2019-04-13 10:33 ` [RESEND PATCH 20/20] nvmem: sunxi_sid: Support SID on H6 Srinivas Kandagatla

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