mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: Abd-Alrhman Masalkhi <abd.masalkhi@gmail.com>
To: linux-kernel@vger.kernel.org, devicetree@vger.kernel.org
Cc: robh@kernel.org, krzk+dt@kernel.org, conor+dt@kernel.org,
	arnd@arndb.de, gregkh@linuxfoundation.org,
	abd.masalkhi@gmail.com
Subject: [PATCH 1/3] dt-bindings: misc: Add binding for ST M24LR control interface
Date: Sat, 31 May 2025 08:11:57 +0000	[thread overview]
Message-ID: <20250531081159.2007319-2-abd.masalkhi@gmail.com> (raw)
In-Reply-To: <20250531081159.2007319-1-abd.masalkhi@gmail.com>

Add a Device Tree binding for the STMicroelectronics M24LR series
RFID/NFC EEPROM chips (e.g., M24LR04E-R), which support a separate
I2C interface for control and configuration.

This binding documents the control interface that is managed by
a dedicated driver exposing sysfs attributes. The EEPROM memory
interface is handled by the standard 'at24' driver and is
represented as a child node in the Device Tree.

Signed-off-by: Abd-Alrhman Masalkhi <abd.masalkhi@gmail.com>
---
 .../devicetree/bindings/misc/st,m24lr.yaml    | 70 +++++++++++++++++++
 1 file changed, 70 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/misc/st,m24lr.yaml

diff --git a/Documentation/devicetree/bindings/misc/st,m24lr.yaml b/Documentation/devicetree/bindings/misc/st,m24lr.yaml
new file mode 100644
index 000000000000..5a8f5aef13ec
--- /dev/null
+++ b/Documentation/devicetree/bindings/misc/st,m24lr.yaml
@@ -0,0 +1,70 @@
+# SPDX-License-Identifier: (GPL-2.0-only OR BSD-2-Clause)
+%YAML 1.2
+---
+$id: http://devicetree.org/schemas/misc/st,m24lr.yaml#
+$schema: http://devicetree.org/meta-schemas/core.yaml#
+
+title: STMicroelectronics M24LR Series NFC/RFID EEPROM Control Interface
+
+maintainers:
+  - name: Abd-Alrhman Masalkhi
+    email: abd.masalkhi@gmail.com
+
+description: |
+  This binding describes the control interface for STMicroelectronics
+  M24LR series RFID/NFC EEPROM chips (e.g., M24LR04E-R, M24LR16E-R).
+  This driver provides sysfs access to device-specific control registers
+  (authentication, UID, etc.) over the I2C interface. It act as a
+  I2C gate for the EEPROM. Therefore, The EEPROM is represented as a
+  child node under a port and is accessed through a separate driver
+  (the standard 'at24' driver). This implementation is possible because
+  the M24LR chips uses two I2C addresses: one for accessing the
+  system parameter sector and another for the EEPROM.
+
+allOf:
+  - $ref: "i2c-mux.yaml#"
+
+properties:
+  compatible:
+    enum:
+    - st,m24lr04e-r
+    - st,m24lr16e-r
+    - st,m24lr64e-r
+
+  reg:
+    maxItems: 1
+    description: I2C address of the device.
+
+  pagesize:
+    $ref: /schemas/types.yaml#/definitions/uint32
+    description: >
+      Maximum number of bytes that can be written in a single I2C
+      transaction. the default is 1.
+
+required:
+  - compatible
+  - reg
+
+additionalProperties: false
+
+examples:
+  - |
+    i2c {
+      m24lr@57 {
+        compatible = "st,m24lr04e-r";
+        reg = <0x57>;
+
+        i2c-gate {
+          #address-cells = <1>;
+          #size-cells = <0>;
+
+          m24lr_eeprom@53 {
+            compatible = "atmel,24c04";
+            reg = <0x53>;
+            address-width = <16>;
+            pagesize = <4>;
+          };
+        };
+      };
+    };
+...
\ No newline at end of file
-- 
2.43.0


  reply	other threads:[~2025-05-31  8:12 UTC|newest]

Thread overview: 12+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2025-05-31  8:11 [PATCH 0/3] Add control driver for ST M24LR RFID/NFC EEPROM chips Abd-Alrhman Masalkhi
2025-05-31  8:11 ` Abd-Alrhman Masalkhi [this message]
2025-05-31  9:25   ` [PATCH 1/3] dt-bindings: misc: Add binding for ST M24LR control interface Rob Herring (Arm)
2025-05-31 13:37   ` Krzysztof Kozlowski
2025-06-01  7:31     ` [PATCH v2 1/3] dt-bindings: Add Device Tree " Abd-Alrhman Masalkhi
2025-05-31  8:11 ` [PATCH 2/3] misc: add sysfs control driver for ST M24LR series RFID/NFC chips Abd-Alrhman Masalkhi
2025-05-31  8:24   ` Greg KH
2025-05-31  8:25   ` Greg KH
2025-06-01  2:19   ` kernel test robot
2025-06-01  3:21   ` kernel test robot
2025-05-31  8:11 ` [PATCH 3/3] MAINTAINERS: Add entry for ST M24LR control driver Abd-Alrhman Masalkhi
2025-05-31 13:37   ` Krzysztof Kozlowski

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20250531081159.2007319-2-abd.masalkhi@gmail.com \
    --to=abd.masalkhi@gmail.com \
    --cc=arnd@arndb.de \
    --cc=conor+dt@kernel.org \
    --cc=devicetree@vger.kernel.org \
    --cc=gregkh@linuxfoundation.org \
    --cc=krzk+dt@kernel.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=robh@kernel.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®