The Linux Kernel Mailing List
 help / color / mirror / Atom feed
* [PATCH v2 00/22] nvmem: patches for 6.3
@ 2023-02-06 13:43 Srinivas Kandagatla
  2023-02-06 13:43 ` [PATCH v2 01/22] nvmem: sunxi_sid: Drop the workaround on A64 Srinivas Kandagatla
                   ` (21 more replies)
  0 siblings, 22 replies; 24+ messages in thread
From: Srinivas Kandagatla @ 2023-02-06 13:43 UTC (permalink / raw)
  To: gregkh; +Cc: linux-kernel, Srinivas Kandagatla

Hi Greg,

Here are some nvmem patches bit more than usual for 6.3 which includes

- Add support to stm32 STM32MP15x OPTEE based nvmem provider
- Updated to qfprom bindings to include various Qualcomm SoCs.
- adding sl28vpd provider layout
- new helper eth_addr_add().
- few minor enhancements to core and providers drivers.

Can you please queue them up for 6.3.

changes since v1:
 - rebased top of char-misc-next as dependency on few fixes in rc7.
 - removed fixes tags as the commit ids are untracable.
 - dropped layout patches for now.

thanks for you help,
srini

AngeloGioacchino Del Regno (1):
  dt-bindings: nvmem: Fix qcom,qfprom compatibles enum ordering

Arnd Bergmann (1):
  nvmem: stm32: fix OPTEE dependency

Johan Hovold (1):
  nvmem: qcom-spmi-sdam: register at device init time

Konrad Dybcio (2):
  dt-bindings: nvmem: Add compatible for SM8150
  dt-bindings: nvmem: Add compatible for SM8250

Marijn Suijten (1):
  dt-bindings: nvmem: Add compatible for MSM8976

Michael Walle (9):
  net: add helper eth_addr_add()
  of: base: add of_parse_phandle_with_optional_args()
  of: property: make #.*-cells optional for simple props
  of: property: add #nvmem-cell-cells property
  nvmem: core: add an index parameter to the cell
  nvmem: core: move struct nvmem_cell_info to nvmem-provider.h
  nvmem: core: drop the removal of the cells in nvmem_add_cells()
  nvmem: core: add nvmem_add_one_cell()
  nvmem: core: use nvmem_add_one_cell() in nvmem_add_cells_from_of()

Patrick Delaunay (2):
  nvmem: stm32: add OP-TEE support for STM32MP13x
  nvmem: stm32: detect bsec pta presence for STM32MP15x

Randy Dunlap (1):
  nvmem: rave-sp-eeprm: fix kernel-doc bad line warning

Richard Acayan (1):
  dt-bindings: nvmem: qfprom: add sdm670 compatible

Robert Marko (1):
  dt-bindings: nvmem: qfprom: add IPQ8074 compatible

Russell King (Oracle) (1):
  nvmem: core: remove spurious white space

Samuel Holland (1):
  nvmem: sunxi_sid: Drop the workaround on A64

 .../bindings/nvmem/qcom,qfprom.yaml           |   7 +-
 drivers/nvmem/Kconfig                         |  10 +
 drivers/nvmem/Makefile                        |   1 +
 drivers/nvmem/core.c                          | 145 ++++-----
 drivers/nvmem/imx-ocotp.c                     |   4 +-
 drivers/nvmem/qcom-spmi-sdam.c                |  13 +-
 drivers/nvmem/rave-sp-eeprom.c                |   2 +-
 drivers/nvmem/stm32-bsec-optee-ta.c           | 298 ++++++++++++++++++
 drivers/nvmem/stm32-bsec-optee-ta.h           |  80 +++++
 drivers/nvmem/stm32-romem.c                   |  84 ++++-
 drivers/nvmem/sunxi_sid.c                     |   8 +-
 drivers/of/property.c                         |   6 +-
 include/linux/etherdevice.h                   |  14 +
 include/linux/nvmem-consumer.h                |  10 +-
 include/linux/nvmem-provider.h                |  31 +-
 include/linux/of.h                            |  25 ++
 16 files changed, 626 insertions(+), 112 deletions(-)
 create mode 100644 drivers/nvmem/stm32-bsec-optee-ta.c
 create mode 100644 drivers/nvmem/stm32-bsec-optee-ta.h

-- 
2.25.1


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

end of thread, other threads:[~2023-02-10 11:02 UTC | newest]

Thread overview: 24+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-02-06 13:43 [PATCH v2 00/22] nvmem: patches for 6.3 Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 01/22] nvmem: sunxi_sid: Drop the workaround on A64 Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 02/22] dt-bindings: nvmem: Fix qcom,qfprom compatibles enum ordering Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 03/22] dt-bindings: nvmem: Add compatible for MSM8976 Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 04/22] dt-bindings: nvmem: qfprom: add sdm670 compatible Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 05/22] dt-bindings: nvmem: Add compatible for SM8150 Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 06/22] dt-bindings: nvmem: Add compatible for SM8250 Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 07/22] nvmem: core: remove spurious white space Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 08/22] net: add helper eth_addr_add() Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 09/22] of: base: add of_parse_phandle_with_optional_args() Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 10/22] of: property: make #.*-cells optional for simple props Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 11/22] of: property: add #nvmem-cell-cells property Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 12/22] nvmem: core: add an index parameter to the cell Srinivas Kandagatla
2023-02-10 11:01   ` Alexander Stein
2023-02-06 13:43 ` [PATCH v2 13/22] nvmem: core: move struct nvmem_cell_info to nvmem-provider.h Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 14/22] nvmem: core: drop the removal of the cells in nvmem_add_cells() Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 15/22] nvmem: core: add nvmem_add_one_cell() Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 16/22] nvmem: core: use nvmem_add_one_cell() in nvmem_add_cells_from_of() Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 17/22] nvmem: stm32: add OP-TEE support for STM32MP13x Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 18/22] nvmem: stm32: detect bsec pta presence for STM32MP15x Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 19/22] nvmem: rave-sp-eeprm: fix kernel-doc bad line warning Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 20/22] nvmem: qcom-spmi-sdam: register at device init time Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 21/22] dt-bindings: nvmem: qfprom: add IPQ8074 compatible Srinivas Kandagatla
2023-02-06 13:43 ` [PATCH v2 22/22] nvmem: stm32: fix OPTEE dependency Srinivas Kandagatla

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox