mbox series

[v5,0/3] Add nxp bbnsm module support

Message ID 20230215024117.3357341-1-ping.bai@nxp.com
Headers show
Series Add nxp bbnsm module support | expand

Message

Jacky Bai Feb. 15, 2023, 2:41 a.m. UTC
NXP BBNSM (Battery-Backed Non-Secure Module) serves as non-volatile
logic and storage for the system. it provides some similar functions
like RTC and ON/OFF support as previous SNVS module found on legacy
i.MX SoCs. The BBNSM is replacement of previous SNVS module, and more
likely it will be used on all the future i.MX SoC or other SoCs from
NXP.

This patchset add the basic support for BBNSM that found on i.MX93.

Jacky Bai (3):
  input: bbnsm_pwrkey: Add bbnsm power key support
  rtc: bbnsm: Add the bbnsm rtc support
  arm64: dts: imx93: Add the bbnsm dts node

 arch/arm64/boot/dts/freescale/imx93.dtsi |  16 ++
 drivers/input/misc/Kconfig               |  11 ++
 drivers/input/misc/Makefile              |   1 +
 drivers/input/misc/nxp-bbnsm-pwrkey.c    | 192 +++++++++++++++++++
 drivers/rtc/Kconfig                      |  12 ++
 drivers/rtc/Makefile                     |   1 +
 drivers/rtc/rtc-nxp-bbnsm.c              | 226 +++++++++++++++++++++++
 7 files changed, 459 insertions(+)
 create mode 100644 drivers/input/misc/nxp-bbnsm-pwrkey.c
 create mode 100644 drivers/rtc/rtc-nxp-bbnsm.c