linux-kernel.vger.kernel.org archive mirror
 help / color / mirror / Atom feed
* [PATCH 0/3] Add driver for Synopsys DesignWare I3C master IP
@ 2018-07-20 20:57 Vitor soares
  2018-07-20 20:57 ` [PATCH 1/3] i3c: master: Add driver for Synopsys DesignWare IP Vitor soares
                   ` (3 more replies)
  0 siblings, 4 replies; 18+ messages in thread
From: Vitor soares @ 2018-07-20 20:57 UTC (permalink / raw)
  To: boris.brezillon, wsa, linux-i2c, corbet, linux-doc, gregkh, arnd
  Cc: psroka, agolec, adouglas, bfolta, dkos, alicja, cwronka, sureshp,
	rafalc, thomas.petazzoni, nm, robh+dt, pawel.moll, mark.rutland,
	ijc+devicetree, galak, devicetree, linux-kernel, geert,
	linus.walleij, Xiang.Lin, linux-gpio, nsekhar, pgaj, peda,
	Joao.Pinto, Vitor.Soares

This patch series is a proposal for the I3C master driver for Synopsys IP.
This patch is to be applied on top of I3C subsystem RFC V6 submitted
by Boris Brezillon.

Supported features:
  Regular CCC commands.
  I3C private transfers.
  I2C transfers.

Missing functionalities:
  Hot-join.
  IBI.

Vitor soares (3):
  i3c: master: Add driver for Synopsys DesignWare IP
  dt-bindings: i3c: Document Synopsys DesignWare I3C master bindings
  MAINTAINERS: Add myself as the dw-i3c-master module maintainer

 .../devicetree/bindings/i3c/snps,dw-i3c-master.txt |   43 +
 MAINTAINERS                                        |    6 +
 drivers/i3c/master/Kconfig                         |   10 +
 drivers/i3c/master/Makefile                        |    1 +
 drivers/i3c/master/dw-i3c-master.c                 | 1255 ++++++++++++++++++++
 5 files changed, 1315 insertions(+)
 create mode 100644 Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
 create mode 100644 drivers/i3c/master/dw-i3c-master.c

-- 
2.7.4



^ permalink raw reply	[flat|nested] 18+ messages in thread
* [PATCH 0/3] Add driver for Synopsys DesignWare I3C master IP
@ 2018-10-29 10:06 Vitor soares
  2018-10-29 11:56 ` Wolfram Sang
  0 siblings, 1 reply; 18+ messages in thread
From: Vitor soares @ 2018-10-29 10:06 UTC (permalink / raw)
  To: boris.brezillon, wsa, linux-i2c, corbet, linux-doc, gregkh, arnd
  Cc: psroka, agolec, adouglas, bfolta, dkos, alicja, cwronka, sureshp,
	rafalc, thomas.petazzoni, nm, robh+dt, pawel.moll, mark.rutland,
	ijc+devicetree, galak, devicetree, linux-kernel, vitor.soares,
	geert, linus.walleij, Xiang.Lin, linux-gpio, nsekhar, pgaj, peda,
	mshettel, swboyd, joao.pinto, luis.oliveira, manuel.abreu,
	gustavo.pimentel

This patch series is a proposal for the I3C master driver for Synopsys IP.
This patch is to be applied on top of I3C subsystem RFC V10 submitted bu Boris Brezillon.

The change made on bufs passed to i3c_master_send_ccc_cmd_locked() be dynamically allocated allow the use of writesl/readsl() function on I3C transfers.
For I2C transfers still have memory misalignment on bufs and if the client try to read more than 4bytes the system stops. This will fixed next version.

Supported features:
  Regular CCC commands.
  I3C private transfers.
  I2C transfers.

Missing functionalities:
  Support for I3C_BUS_MODE_MIXED_SLOW.
  Hot-join.
  IBI.

Main change between v1 and v2:
  Add controller version on dt-binding
  The driver now calls writesl/readsl() instead readl/writel
  Rename some variables in the driver
   

Vitor soares (3):
  i3c: master: Add driver for Synopsys DesignWare IP
  dt-bindings: i3c: Document Synopsys DesignWare I3C master bindings
  MAINTAINERS: Add myself as the dw-i3c-master module maintainer

 .../devicetree/bindings/i3c/snps,dw-i3c-master.txt |   42 +
 MAINTAINERS                                        |    6 +
 drivers/i3c/master/Kconfig                         |   13 +
 drivers/i3c/master/Makefile                        |    1 +
 drivers/i3c/master/dw-i3c-master.c                 | 1217 ++++++++++++++++++++
 5 files changed, 1279 insertions(+)
 create mode 100755 Documentation/devicetree/bindings/i3c/snps,dw-i3c-master.txt
 create mode 100755 drivers/i3c/master/dw-i3c-master.c

-- 
2.7.4



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

end of thread, other threads:[~2018-10-29 13:21 UTC | newest]

Thread overview: 18+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2018-07-20 20:57 [PATCH 0/3] Add driver for Synopsys DesignWare I3C master IP Vitor soares
2018-07-20 20:57 ` [PATCH 1/3] i3c: master: Add driver for Synopsys DesignWare IP Vitor soares
2018-07-21 15:35   ` Andy Shevchenko
     [not found]     ` <9fdfaf4e-5a20-af81-82ef-0d9e327f9133@synopsys.com>
2018-07-25 16:56       ` Andy Shevchenko
2018-08-08 17:01         ` vitor
2018-07-27 13:38   ` Boris Brezillon
2018-08-08 17:28     ` vitor
2018-07-20 20:57 ` [PATCH 2/3] dt-bindings: i3c: Document Synopsys DesignWare I3C master bindings Vitor soares
2018-07-25 19:57   ` Rob Herring
2018-08-08 16:59     ` vitor
2018-08-13 14:15       ` Rob Herring
2018-07-20 20:57 ` [PATCH 3/3] MAINTAINERS: Add myself as the dw-i3c-master module maintainer Vitor soares
2018-07-20 21:58 ` [PATCH 0/3] Add driver for Synopsys DesignWare I3C master IP Wolfram Sang
2018-07-21 17:15   ` Boris Brezillon
2018-07-21 22:59     ` Wolfram Sang
2018-10-29 10:06 Vitor soares
2018-10-29 11:56 ` Wolfram Sang
2018-10-29 13:21   ` Boris Brezillon

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).