All of lore.kernel.org
 help / color / mirror / Atom feed
* [GIT PULL] I3C changes for 5.12
@ 2021-02-22  0:41 ` Alexandre Belloni
  0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Belloni @ 2021-02-22  0:41 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-i3c, linux-kernel

Hello Linus,

Here is the I3C pull request for v5.12 with a few improvements for the
core and a new driver.

The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:

  Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git tags/i3c/for-5.12

for you to fetch changes up to 5c34b8e7e8bb605925b33e1aa7dc17966811219a:

  i3c: master: dw: Drop redundant disec call (2021-02-06 00:44:15 +0100)

----------------------------------------------------------------
I3C for 5.12

Subsystem:
 - Handle drivers without probe or remove callback
 - Remove callback now returns void
 - DT documentation is now in yaml

New driver:
 - Silvaco I3C master

----------------------------------------------------------------
David Gow (1):
      i3c/master/mipi-i3c-hci: Specify HAS_IOMEM dependency

Miquel Raynal (7):
      dt-bindings: i3c: Convert the bus description to yaml
      dt-bindings: i3c: mipi-hci: Include the bus binding
      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
      i3c: master: dw: Drop redundant disec call

Uwe Kleine-König (2):
      i3c: Handle drivers without probe or remove callback
      i3c: Make remove callback return void

 Documentation/devicetree/bindings/i3c/i3c.txt      |  140 --
 Documentation/devicetree/bindings/i3c/i3c.yaml     |  179 +++
 .../devicetree/bindings/i3c/mipi-i3c-hci.yaml      |    9 +-
 .../bindings/i3c/silvaco,i3c-master.yaml           |   60 +
 .../devicetree/bindings/vendor-prefixes.yaml       |    2 +
 MAINTAINERS                                        |    8 +
 drivers/i3c/device.c                               |    5 +
 drivers/i3c/master.c                               |    8 +-
 drivers/i3c/master/Kconfig                         |    9 +
 drivers/i3c/master/Makefile                        |    1 +
 drivers/i3c/master/dw-i3c-master.c                 |    5 -
 drivers/i3c/master/svc-i3c-master.c                | 1478 ++++++++++++++++++++
 include/linux/i3c/device.h                         |    2 +-
 13 files changed, 1753 insertions(+), 153 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/i3c/i3c.txt
 create mode 100644 Documentation/devicetree/bindings/i3c/i3c.yaml
 create mode 100644 Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
 create mode 100644 drivers/i3c/master/svc-i3c-master.c

-- 
Alexandre Belloni, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

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

* [GIT PULL] I3C changes for 5.12
@ 2021-02-22  0:41 ` Alexandre Belloni
  0 siblings, 0 replies; 4+ messages in thread
From: Alexandre Belloni @ 2021-02-22  0:41 UTC (permalink / raw)
  To: Linus Torvalds; +Cc: linux-i3c, linux-kernel

Hello Linus,

Here is the I3C pull request for v5.12 with a few improvements for the
core and a new driver.

The following changes since commit 5c8fe583cce542aa0b84adc939ce85293de36e5e:

  Linux 5.11-rc1 (2020-12-27 15:30:22 -0800)

are available in the Git repository at:

  git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git tags/i3c/for-5.12

for you to fetch changes up to 5c34b8e7e8bb605925b33e1aa7dc17966811219a:

  i3c: master: dw: Drop redundant disec call (2021-02-06 00:44:15 +0100)

----------------------------------------------------------------
I3C for 5.12

Subsystem:
 - Handle drivers without probe or remove callback
 - Remove callback now returns void
 - DT documentation is now in yaml

New driver:
 - Silvaco I3C master

----------------------------------------------------------------
David Gow (1):
      i3c/master/mipi-i3c-hci: Specify HAS_IOMEM dependency

Miquel Raynal (7):
      dt-bindings: i3c: Convert the bus description to yaml
      dt-bindings: i3c: mipi-hci: Include the bus binding
      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
      i3c: master: dw: Drop redundant disec call

Uwe Kleine-König (2):
      i3c: Handle drivers without probe or remove callback
      i3c: Make remove callback return void

 Documentation/devicetree/bindings/i3c/i3c.txt      |  140 --
 Documentation/devicetree/bindings/i3c/i3c.yaml     |  179 +++
 .../devicetree/bindings/i3c/mipi-i3c-hci.yaml      |    9 +-
 .../bindings/i3c/silvaco,i3c-master.yaml           |   60 +
 .../devicetree/bindings/vendor-prefixes.yaml       |    2 +
 MAINTAINERS                                        |    8 +
 drivers/i3c/device.c                               |    5 +
 drivers/i3c/master.c                               |    8 +-
 drivers/i3c/master/Kconfig                         |    9 +
 drivers/i3c/master/Makefile                        |    1 +
 drivers/i3c/master/dw-i3c-master.c                 |    5 -
 drivers/i3c/master/svc-i3c-master.c                | 1478 ++++++++++++++++++++
 include/linux/i3c/device.h                         |    2 +-
 13 files changed, 1753 insertions(+), 153 deletions(-)
 delete mode 100644 Documentation/devicetree/bindings/i3c/i3c.txt
 create mode 100644 Documentation/devicetree/bindings/i3c/i3c.yaml
 create mode 100644 Documentation/devicetree/bindings/i3c/silvaco,i3c-master.yaml
 create mode 100644 drivers/i3c/master/svc-i3c-master.c

-- 
Alexandre Belloni, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com

-- 
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c

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

* Re: [GIT PULL] I3C changes for 5.12
  2021-02-22  0:41 ` Alexandre Belloni
@ 2021-02-22 18:12   ` pr-tracker-bot
  -1 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2021-02-22 18:12 UTC (permalink / raw)
  To: Alexandre Belloni; +Cc: Linus Torvalds, linux-i3c, linux-kernel

The pull request you sent on Mon, 22 Feb 2021 01:41:22 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git tags/i3c/for-5.12

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/36c1b20d15703662aa0f14a32a8bd19ab3a33076

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

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

* Re: [GIT PULL] I3C changes for 5.12
@ 2021-02-22 18:12   ` pr-tracker-bot
  0 siblings, 0 replies; 4+ messages in thread
From: pr-tracker-bot @ 2021-02-22 18:12 UTC (permalink / raw)
  To: Alexandre Belloni; +Cc: linux-i3c, Linus Torvalds, linux-kernel

The pull request you sent on Mon, 22 Feb 2021 01:41:22 +0100:

> git://git.kernel.org/pub/scm/linux/kernel/git/i3c/linux.git tags/i3c/for-5.12

has been merged into torvalds/linux.git:
https://git.kernel.org/torvalds/c/36c1b20d15703662aa0f14a32a8bd19ab3a33076

Thank you!

-- 
Deet-doot-dot, I am a bot.
https://korg.docs.kernel.org/prtracker.html

-- 
linux-i3c mailing list
linux-i3c@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/linux-i3c

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

end of thread, other threads:[~2021-02-22 18:14 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-02-22  0:41 [GIT PULL] I3C changes for 5.12 Alexandre Belloni
2021-02-22  0:41 ` Alexandre Belloni
2021-02-22 18:12 ` pr-tracker-bot
2021-02-22 18:12   ` pr-tracker-bot

This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.