Hello, Here is the addition of a driver for the Silvaco I3C master IP. Changes in v3: * Fix the MAINTAINERS file. * Fix the bindings (clocks description, size-cells, etc) * Add Rob's Ack on one patch. * Dropped unnecessary locks. * Used a hardware feature to automatically NACK IBI's during regular data transfers. * Stopped flushing FIFOs (not needed). * Entirely reworked the IBI handling logic. * Dropped the warning when a device does not advertise it's dynamic address during an IBI. * Moved the IBI logic into the master's workqueue instead of a threaded handler. * Added a svc_i3c_master_readb() helper. * Used consistent bit definitions (BIT() vs. FIELD_GET()). Changes in v2: * Change the manufacturer name from svc to silvaco. Miquel Raynal (4): dt-bindings: Add vendor prefix for Silvaco dt-bindings: i3c: Describe Silvaco master binding i3c: master: svc: Add Silvaco I3C master driver MAINTAINERS: Add Silvaco I3C master .../bindings/i3c/silvaco,i3c-master.yaml | 63 + .../devicetree/bindings/vendor-prefixes.yaml | 2 + MAINTAINERS | 8 + drivers/i3c/master/Kconfig | 8 + drivers/i3c/master/Makefile | 1 + drivers/i3c/master/svc-i3c-master.c | 1478 +++++++++++++++++ 6 files changed, 1560 insertions(+) create mode 100644 Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml create mode 100644 drivers/i3c/master/svc-i3c-master.c -- 2.20.1