All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/6] nvmem: patches for v6.7
@ 2023-10-20 10:55 srinivas.kandagatla
  2023-10-20 10:55 ` [PATCH 1/6] nvmem: qfprom: Mark core clk as optional srinivas.kandagatla
                   ` (6 more replies)
  0 siblings, 7 replies; 12+ messages in thread
From: srinivas.kandagatla @ 2023-10-20 10:55 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, Srinivas Kandagatla

From: Srinivas Kandagatla <srinivas.kandagatla@linaro.org>

Hi Greg,

Here are some nvmem patches
- mostly around deprecating old style bindings.
- make qfprom clks optional.
- making use of device_get_match_data()

Can you please queue them up for 6.7

thanks,
Srini


Luca Weiss (1):
  nvmem: qfprom: Mark core clk as optional

Rafał Miłecki (3):
  nvmem: add explicit config option to read old syntax fixed OF cells
  dt-bindings: nvmem: move deprecated cells binding to its own file
  Revert "nvmem: add new config option"

Rob Herring (2):
  dt-bindings: nvmem: u-boot,env: Add missing additionalProperties on
    child node schemas
  nvmem: Use device_get_match_data()

 .../devicetree/bindings/mtd/mtd.yaml          |  7 ++++-
 .../bindings/mtd/partitions/nvmem-cells.yaml  |  1 +
 .../nvmem/amlogic,meson-gxbb-efuse.yaml       |  1 +
 .../bindings/nvmem/amlogic,meson6-efuse.yaml  |  1 +
 .../bindings/nvmem/apple,efuses.yaml          |  1 +
 .../devicetree/bindings/nvmem/imx-ocotp.yaml  |  1 +
 .../bindings/nvmem/mediatek,efuse.yaml        |  1 +
 .../nvmem/microchip,sama7g5-otpc.yaml         |  1 +
 .../devicetree/bindings/nvmem/mxs-ocotp.yaml  |  1 +
 .../nvmem/nvmem-deprecated-cells.yaml         | 28 +++++++++++++++++++
 .../devicetree/bindings/nvmem/nvmem.yaml      |  9 ------
 .../bindings/nvmem/qcom,qfprom.yaml           |  1 +
 .../bindings/nvmem/qcom,sec-qfprom.yaml       |  1 +
 .../bindings/nvmem/qcom,spmi-sdam.yaml        |  1 +
 .../bindings/nvmem/rockchip,otp.yaml          |  1 +
 .../bindings/nvmem/rockchip-efuse.yaml        |  1 +
 .../nvmem/socionext,uniphier-efuse.yaml       |  1 +
 .../bindings/nvmem/sunplus,sp7021-ocotp.yaml  |  1 +
 .../devicetree/bindings/nvmem/u-boot,env.yaml |  2 ++
 .../bindings/rtc/amlogic,meson6-rtc.yaml      |  1 +
 drivers/mtd/mtdcore.c                         |  3 +-
 drivers/nvmem/apple-efuses.c                  |  1 +
 drivers/nvmem/core.c                          | 10 ++++---
 drivers/nvmem/imx-ocotp-scu.c                 |  1 +
 drivers/nvmem/imx-ocotp.c                     |  1 +
 drivers/nvmem/meson-efuse.c                   |  1 +
 drivers/nvmem/meson-mx-efuse.c                |  1 +
 drivers/nvmem/microchip-otpc.c                |  1 +
 drivers/nvmem/mtk-efuse.c                     |  1 +
 drivers/nvmem/mxs-ocotp.c                     | 10 +++----
 drivers/nvmem/qcom-spmi-sdam.c                |  1 +
 drivers/nvmem/qfprom.c                        |  7 +++--
 drivers/nvmem/rave-sp-eeprom.c                |  1 +
 drivers/nvmem/rockchip-efuse.c                |  1 +
 drivers/nvmem/sc27xx-efuse.c                  |  1 +
 drivers/nvmem/sec-qfprom.c                    |  1 +
 drivers/nvmem/sprd-efuse.c                    |  1 +
 drivers/nvmem/stm32-romem.c                   |  8 ++++--
 drivers/nvmem/sunplus-ocotp.c                 |  1 +
 drivers/nvmem/sunxi_sid.c                     |  1 +
 drivers/nvmem/uniphier-efuse.c                |  1 +
 drivers/nvmem/zynqmp_nvmem.c                  |  1 +
 drivers/rtc/nvmem.c                           |  1 +
 drivers/w1/slaves/w1_ds250x.c                 |  1 +
 include/linux/nvmem-provider.h                |  4 +--
 45 files changed, 94 insertions(+), 29 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/nvmem/nvmem-deprecated-cells.yaml

-- 
2.25.1


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

end of thread, other threads:[~2023-10-21 23:30 UTC | newest]

Thread overview: 12+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-20 10:55 [PATCH 0/6] nvmem: patches for v6.7 srinivas.kandagatla
2023-10-20 10:55 ` [PATCH 1/6] nvmem: qfprom: Mark core clk as optional srinivas.kandagatla
2023-10-20 10:55 ` [PATCH 2/6] nvmem: add explicit config option to read old syntax fixed OF cells srinivas.kandagatla
2023-10-20 10:55 ` [PATCH 3/6] dt-bindings: nvmem: move deprecated cells binding to its own file srinivas.kandagatla
2023-10-20 10:55 ` [PATCH 4/6] Revert "nvmem: add new config option" srinivas.kandagatla
2023-10-21 17:18   ` Greg KH
2023-10-21 20:31     ` Rafał Miłecki
2023-10-21 20:51       ` Greg KH
2023-10-21 20:56         ` Rafał Miłecki
2023-10-20 10:55 ` [PATCH 5/6] dt-bindings: nvmem: u-boot,env: Add missing additionalProperties on child node schemas srinivas.kandagatla
2023-10-20 10:55 ` [PATCH 6/6] nvmem: Use device_get_match_data() srinivas.kandagatla
2023-10-21 17:20 ` [PATCH 0/6] nvmem: patches for v6.7 Greg KH

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.