Linux-i3c Archive mirror
 help / color / mirror / Atom feed
From: Boris Brezillon <boris.brezillon@collabora.com>
To: Linus Torvalds <torvalds@linux-foundation.org>,
	linux-i3c <linux-i3c@lists.infradead.org>,
	"linux-kernel@vger.kernel.org" <linux-kernel@vger.kernel.org>
Cc: Alexandre Belloni <abelloni@kernel.org>
Subject: [GIT PULL] i3c: Changes for 5.11
Date: Sat, 19 Dec 2020 08:06:32 +0100	[thread overview]
Message-ID: <20201219080632.686b92bc@collabora.com> (raw)

Hello Linus,

Here the I3C PR for 5.11. This should be my last PR (I resigned from
my maintainer position). Alexandre Belloni (maintainer of the RTC
subsystem) kindly proposed to take over, so he should send the I3C PRs
from now on.

Regards,

Boris 

The following changes since commit 3650b228f83adda7e5ee532e2b90429c03f7b9ec:

  Linux 5.10-rc1 (2020-10-25 15:14:11 -0700)

are available in the Git repository at:

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

for you to fetch changes up to 95393f3e07ab53855b91881692a4a5b52dcdc03c:

  i3c/master/mipi-i3c-hci: quiet maybe-unused variable warning (2020-12-17 10:31:30 +0100)

----------------------------------------------------------------
* Add the HCI driver
* Add a missing destroy_workqueue() in an error path
* Flag Alexandre Belloni as the new maintainer

----------------------------------------------------------------
Boris Brezillon (1):
      i3c: Resign from my maintainer role

Colin Ian King (1):
      i3c/master: Fix uninitialized variable next_addr

Nicolas Pitre (3):
      dt-bindings: i3c: MIPI I3C Host Controller Interface
      i3c/master: introduce the mipi-i3c-hci driver
      i3c/master/mipi-i3c-hci: quiet maybe-unused variable warning

Qinglang Miao (1):
      i3c master: fix missing destroy_workqueue() on error in i3c_master_register

 Documentation/devicetree/bindings/i3c/mipi-i3c-hci.yaml |   47 +++
 MAINTAINERS                                             |    2 +-
 drivers/i3c/master.c                                    |    5 +-
 drivers/i3c/master/Kconfig                              |   13 +
 drivers/i3c/master/Makefile                             |    1 +
 drivers/i3c/master/mipi-i3c-hci/Makefile                |    6 +
 drivers/i3c/master/mipi-i3c-hci/cmd.h                   |   67 ++++
 drivers/i3c/master/mipi-i3c-hci/cmd_v1.c                |  378 +++++++++++++++++++
 drivers/i3c/master/mipi-i3c-hci/cmd_v2.c                |  316 ++++++++++++++++
 drivers/i3c/master/mipi-i3c-hci/core.c                  |  798 ++++++++++++++++++++++++++++++++++++++++
 drivers/i3c/master/mipi-i3c-hci/dat.h                   |   32 ++
 drivers/i3c/master/mipi-i3c-hci/dat_v1.c                |  184 ++++++++++
 drivers/i3c/master/mipi-i3c-hci/dct.h                   |   16 +
 drivers/i3c/master/mipi-i3c-hci/dct_v1.c                |   36 ++
 drivers/i3c/master/mipi-i3c-hci/dma.c                   |  784 +++++++++++++++++++++++++++++++++++++++
 drivers/i3c/master/mipi-i3c-hci/ext_caps.c              |  308 ++++++++++++++++
 drivers/i3c/master/mipi-i3c-hci/ext_caps.h              |   19 +
 drivers/i3c/master/mipi-i3c-hci/hci.h                   |  144 ++++++++
 drivers/i3c/master/mipi-i3c-hci/ibi.h                   |   42 +++
 drivers/i3c/master/mipi-i3c-hci/pio.c                   | 1041 ++++++++++++++++++++++++++++++++++++++++++++++++++++
 drivers/i3c/master/mipi-i3c-hci/xfer_mode_rate.h        |   79 ++++
 21 files changed, 4316 insertions(+), 2 deletions(-)
 create mode 100644 Documentation/devicetree/bindings/i3c/mipi-i3c-hci.yaml
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/Makefile
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/cmd.h
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/cmd_v1.c
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/cmd_v2.c
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/core.c
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/dat.h
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/dat_v1.c
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/dct.h
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/dct_v1.c
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/dma.c
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/ext_caps.c
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/ext_caps.h
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/hci.h
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/ibi.h
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/pio.c
 create mode 100644 drivers/i3c/master/mipi-i3c-hci/xfer_mode_rate.h

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

             reply	other threads:[~2020-12-19  7:06 UTC|newest]

Thread overview: 2+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2020-12-19  7:06 Boris Brezillon [this message]
2020-12-19 21:06 ` [GIT PULL] i3c: Changes for 5.11 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=20201219080632.686b92bc@collabora.com \
    --to=boris.brezillon@collabora.com \
    --cc=abelloni@kernel.org \
    --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 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 read-only IMAP folder(s) and NNTP newsgroup(s).