All of lore.kernel.org
 help / color / mirror / Atom feed
From: Alexandre Belloni <alexandre.belloni@bootlin.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-i3c@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: [GIT PULL] I3C changes for 6.8
Date: Mon, 15 Jan 2024 00:28:54 +0100	[thread overview]
Message-ID: <2024011423285495e8345d@mail.local> (raw)


Hello Linus,

Here is the i3c subsytem pull request for 6.8. We are continuing to see
more fixes as hardware is available and code is actually getting tested.

The following changes since commit b85ea95d086471afb4ad062012a4d73cd328fa86:

  Linux 6.7-rc1 (2023-11-12 16:19:07 -0800)

are available in the Git repository at:

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

for you to fetch changes up to 4fa0888f6f3e6a67cac5afafb23e33f8222cfdd0:

  i3c: document hotjoin sysfs entry (2024-01-15 00:21:14 +0100)

----------------------------------------------------------------
I3C for 6.7

Core:
 - Add a sysfs control for hotjoin
 - Add fallback method for GETMXDS CCC

Drivers:
 - cdns: fix prescale for i2c clock
 - mipi-i3c-hci: more fixes now that the driver is used
 - svc: hotjoin enabling/disabling support

----------------------------------------------------------------
Alexandre Belloni (1):
      i3c: document hotjoin sysfs entry

Frank Li (6):
      i3c: master: add enable(disable) hot join in sys entry
      i3c: master: svc: add hot join support
      i3c: add actual_len in i3c_priv_xfer
      i3c: master: svc: rename read_len as actual_len
      i3c: master: svc: return actual transfer data len
      i3c: master: fix kernel-doc check warning

Harshit Shah (1):
      i3c: master: cdns: Update maximum prescaler value for i2c clock

Jarkko Nikula (5):
      i3c: mipi-i3c-hci: Report NACK response from CCC command to core
      i3c: mipi-i3c-hci: Do not overallocate transfers in hci_cmd_v1_daa()
      i3c: mipi-i3c-hci: Handle I3C address header error in hci_cmd_v1_daa()
      i3c: mipi-i3c-hci: Add DMA bounce buffer for private transfers
      i3c: master: Fix build error

Joshua Yeong (1):
      i3c: Add fallback method for GETMXDS CCC

Randy Dunlap (1):
      i3c: master: fix Excess kernel-doc description warning

 Documentation/ABI/testing/sysfs-bus-i3c  | 15 +++++
 drivers/i3c/master.c                     | 95 +++++++++++++++++++++++++++++++-
 drivers/i3c/master/i3c-master-cdns.c     |  7 ++-
 drivers/i3c/master/mipi-i3c-hci/cmd_v1.c |  7 ++-
 drivers/i3c/master/mipi-i3c-hci/core.c   | 49 +++++++++++++++-
 drivers/i3c/master/mipi-i3c-hci/dma.c    |  4 +-
 drivers/i3c/master/mipi-i3c-hci/hci.h    |  1 +
 drivers/i3c/master/svc-i3c-master.c      | 95 ++++++++++++++++++++++++++------
 include/linux/i3c/device.h               |  2 +
 include/linux/i3c/master.h               |  9 ++-
 10 files changed, 256 insertions(+), 28 deletions(-)

-- 
Alexandre Belloni, co-owner and COO, 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

WARNING: multiple messages have this Message-ID (diff)
From: Alexandre Belloni <alexandre.belloni@bootlin.com>
To: Linus Torvalds <torvalds@linux-foundation.org>
Cc: linux-i3c@lists.infradead.org, linux-kernel@vger.kernel.org
Subject: [GIT PULL] I3C changes for 6.8
Date: Mon, 15 Jan 2024 00:28:54 +0100	[thread overview]
Message-ID: <2024011423285495e8345d@mail.local> (raw)


Hello Linus,

Here is the i3c subsytem pull request for 6.8. We are continuing to see
more fixes as hardware is available and code is actually getting tested.

The following changes since commit b85ea95d086471afb4ad062012a4d73cd328fa86:

  Linux 6.7-rc1 (2023-11-12 16:19:07 -0800)

are available in the Git repository at:

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

for you to fetch changes up to 4fa0888f6f3e6a67cac5afafb23e33f8222cfdd0:

  i3c: document hotjoin sysfs entry (2024-01-15 00:21:14 +0100)

----------------------------------------------------------------
I3C for 6.7

Core:
 - Add a sysfs control for hotjoin
 - Add fallback method for GETMXDS CCC

Drivers:
 - cdns: fix prescale for i2c clock
 - mipi-i3c-hci: more fixes now that the driver is used
 - svc: hotjoin enabling/disabling support

----------------------------------------------------------------
Alexandre Belloni (1):
      i3c: document hotjoin sysfs entry

Frank Li (6):
      i3c: master: add enable(disable) hot join in sys entry
      i3c: master: svc: add hot join support
      i3c: add actual_len in i3c_priv_xfer
      i3c: master: svc: rename read_len as actual_len
      i3c: master: svc: return actual transfer data len
      i3c: master: fix kernel-doc check warning

Harshit Shah (1):
      i3c: master: cdns: Update maximum prescaler value for i2c clock

Jarkko Nikula (5):
      i3c: mipi-i3c-hci: Report NACK response from CCC command to core
      i3c: mipi-i3c-hci: Do not overallocate transfers in hci_cmd_v1_daa()
      i3c: mipi-i3c-hci: Handle I3C address header error in hci_cmd_v1_daa()
      i3c: mipi-i3c-hci: Add DMA bounce buffer for private transfers
      i3c: master: Fix build error

Joshua Yeong (1):
      i3c: Add fallback method for GETMXDS CCC

Randy Dunlap (1):
      i3c: master: fix Excess kernel-doc description warning

 Documentation/ABI/testing/sysfs-bus-i3c  | 15 +++++
 drivers/i3c/master.c                     | 95 +++++++++++++++++++++++++++++++-
 drivers/i3c/master/i3c-master-cdns.c     |  7 ++-
 drivers/i3c/master/mipi-i3c-hci/cmd_v1.c |  7 ++-
 drivers/i3c/master/mipi-i3c-hci/core.c   | 49 +++++++++++++++-
 drivers/i3c/master/mipi-i3c-hci/dma.c    |  4 +-
 drivers/i3c/master/mipi-i3c-hci/hci.h    |  1 +
 drivers/i3c/master/svc-i3c-master.c      | 95 ++++++++++++++++++++++++++------
 include/linux/i3c/device.h               |  2 +
 include/linux/i3c/master.h               |  9 ++-
 10 files changed, 256 insertions(+), 28 deletions(-)

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

             reply	other threads:[~2024-01-14 23:29 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2024-01-14 23:28 Alexandre Belloni [this message]
2024-01-14 23:28 ` [GIT PULL] I3C changes for 6.8 Alexandre Belloni
2024-01-18  0:12 ` pr-tracker-bot
2024-01-18  0:12   ` pr-tracker-bot

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=2024011423285495e8345d@mail.local \
    --to=alexandre.belloni@bootlin.com \
    --cc=linux-i3c@lists.infradead.org \
    --cc=linux-kernel@vger.kernel.org \
    --cc=torvalds@linux-foundation.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 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.