[PATCH 0/6] nvmem: patches for v6.7

srinivas.kandagatla@linaro.org posted 6 patches 2 years, 1 month ago
.../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
[PATCH 0/6] nvmem: patches for v6.7
Posted by srinivas.kandagatla@linaro.org 2 years, 1 month ago
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

Re: [PATCH 0/6] nvmem: patches for v6.7
Posted by Greg KH 2 years, 1 month ago
On Fri, Oct 20, 2023 at 11:55:39AM +0100, srinivas.kandagatla@linaro.org wrote:
> 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

I took all but patch 4 for now.

thanks,

greg k-h