* [PATCH] i3c: Fix typo "Provisional ID" to "Provisioned ID"
@ 2023-10-03 7:53 Matt Johnston
2023-10-03 8:23 ` Miquel Raynal
` (2 more replies)
0 siblings, 3 replies; 4+ messages in thread
From: Matt Johnston @ 2023-10-03 7:53 UTC (permalink / raw)
To: linux-i3c
Cc: Alexandre Belloni, Rob Herring, Krzysztof Kozlowski, Conor Dooley,
Jonathan Corbet, Miquel Raynal, Conor Culhane, open list,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
open list:DOCUMENTATION
The MIPI I3C spec refers to a Provisioned ID, since it is (sometimes)
provisioned at device manufacturing.
Signed-off-by: Matt Johnston <matt@codeconstruct.com.au>
---
Documentation/ABI/testing/sysfs-bus-i3c | 4 ++--
Documentation/devicetree/bindings/i3c/i3c.yaml | 4 ++--
Documentation/driver-api/i3c/protocol.rst | 4 ++--
drivers/i3c/master/svc-i3c-master.c | 2 +-
include/linux/i3c/device.h | 2 +-
include/linux/i3c/master.h | 2 +-
6 files changed, 9 insertions(+), 9 deletions(-)
diff --git a/Documentation/ABI/testing/sysfs-bus-i3c b/Documentation/ABI/testing/sysfs-bus-i3c
index 1f4a2662335b..e5248fd67a56 100644
--- a/Documentation/ABI/testing/sysfs-bus-i3c
+++ b/Documentation/ABI/testing/sysfs-bus-i3c
@@ -67,7 +67,7 @@ What: /sys/bus/i3c/devices/i3c-<bus-id>/pid
KernelVersion: 5.0
Contact: linux-i3c@vger.kernel.org
Description:
- PID stands for Provisional ID and is used to uniquely identify
+ PID stands for Provisioned ID and is used to uniquely identify
a device on a bus. This PID contains information about the
vendor, the part and an instance ID so that several devices of
the same type can be connected on the same bus.
@@ -123,7 +123,7 @@ What: /sys/bus/i3c/devices/i3c-<bus-id>/<bus-id>-<device-pid>/pid
KernelVersion: 5.0
Contact: linux-i3c@vger.kernel.org
Description:
- PID stands for Provisional ID and is used to uniquely identify
+ PID stands for Provisioned ID and is used to uniquely identify
a device on a bus. This PID contains information about the
vendor, the part and an instance ID so that several devices of
the same type can be connected on the same bus.
diff --git a/Documentation/devicetree/bindings/i3c/i3c.yaml b/Documentation/devicetree/bindings/i3c/i3c.yaml
index ab69f4115de4..f8ac7a3e3123 100644
--- a/Documentation/devicetree/bindings/i3c/i3c.yaml
+++ b/Documentation/devicetree/bindings/i3c/i3c.yaml
@@ -119,12 +119,12 @@ patternProperties:
minimum: 0
maximum: 0x7f
- description: |
- First half of the Provisional ID (following the PID
+ First half of the Provisioned ID (following the PID
definition provided by the I3C specification).
Contains the manufacturer ID left-shifted by 1.
- description: |
- Second half of the Provisional ID (following the PID
+ Second half of the Provisioned ID (following the PID
definition provided by the I3C specification).
Contains the ORing of the part ID left-shifted by 16,
diff --git a/Documentation/driver-api/i3c/protocol.rst b/Documentation/driver-api/i3c/protocol.rst
index 02653defa011..23a0b93c62b1 100644
--- a/Documentation/driver-api/i3c/protocol.rst
+++ b/Documentation/driver-api/i3c/protocol.rst
@@ -71,8 +71,8 @@ During DAA, each I3C device reports 3 important things:
related capabilities
* DCR: Device Characteristic Register. This 8-bit register describes the
functionalities provided by the device
-* Provisional ID: A 48-bit unique identifier. On a given bus there should be no
- Provisional ID collision, otherwise the discovery mechanism may fail.
+* Provisioned ID: A 48-bit unique identifier. On a given bus there should be no
+ Provisioned ID collision, otherwise the discovery mechanism may fail.
I3C slave events
================
diff --git a/drivers/i3c/master/svc-i3c-master.c b/drivers/i3c/master/svc-i3c-master.c
index 32eca2d6caf0..e23d7900c5a1 100644
--- a/drivers/i3c/master/svc-i3c-master.c
+++ b/drivers/i3c/master/svc-i3c-master.c
@@ -765,7 +765,7 @@ static int svc_i3c_master_do_daa_locked(struct svc_i3c_master *master,
u8 data[6];
/*
- * We only care about the 48-bit provisional ID yet to
+ * We only care about the 48-bit provisioned ID yet to
* be sure a device does not nack an address twice.
* Otherwise, we would just need to flush the RX FIFO.
*/
diff --git a/include/linux/i3c/device.h b/include/linux/i3c/device.h
index 90fa83464f00..84ed77c04940 100644
--- a/include/linux/i3c/device.h
+++ b/include/linux/i3c/device.h
@@ -96,7 +96,7 @@ enum i3c_dcr {
/**
* struct i3c_device_info - I3C device information
- * @pid: Provisional ID
+ * @pid: Provisioned ID
* @bcr: Bus Characteristic Register
* @dcr: Device Characteristic Register
* @static_addr: static/I2C address
diff --git a/include/linux/i3c/master.h b/include/linux/i3c/master.h
index 0b52da4f2346..4fd6a777150f 100644
--- a/include/linux/i3c/master.h
+++ b/include/linux/i3c/master.h
@@ -166,7 +166,7 @@ struct i3c_device_ibi_info {
* assigned a dynamic address by the master. Will be used during
* bus initialization to assign it a specific dynamic address
* before starting DAA (Dynamic Address Assignment)
- * @pid: I3C Provisional ID exposed by the device. This is a unique identifier
+ * @pid: I3C Provisioned ID exposed by the device. This is a unique identifier
* that may be used to attach boardinfo to i3c_dev_desc when the device
* does not have a static address
* @of_node: optional DT node in case the device has been described in the DT
--
2.39.2
^ permalink raw reply related [flat|nested] 4+ messages in thread
* Re: [PATCH] i3c: Fix typo "Provisional ID" to "Provisioned ID"
2023-10-03 7:53 [PATCH] i3c: Fix typo "Provisional ID" to "Provisioned ID" Matt Johnston
@ 2023-10-03 8:23 ` Miquel Raynal
2023-10-04 14:17 ` Rob Herring
2023-10-10 10:13 ` Alexandre Belloni
2 siblings, 0 replies; 4+ messages in thread
From: Miquel Raynal @ 2023-10-03 8:23 UTC (permalink / raw)
To: Matt Johnston
Cc: linux-i3c, Alexandre Belloni, Rob Herring, Krzysztof Kozlowski,
Conor Dooley, Jonathan Corbet, Conor Culhane, open list,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
open list:DOCUMENTATION
Hi Matt,
matt@codeconstruct.com.au wrote on Tue, 3 Oct 2023 15:53:39 +0800:
> The MIPI I3C spec refers to a Provisioned ID, since it is (sometimes)
> provisioned at device manufacturing.
>
> Signed-off-by: Matt Johnston <matt@codeconstruct.com.au>
Reviewed-by: Miquel Raynal <miquel.raynal@bootlin.com>
Thanks,
Miquèl
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] i3c: Fix typo "Provisional ID" to "Provisioned ID"
2023-10-03 7:53 [PATCH] i3c: Fix typo "Provisional ID" to "Provisioned ID" Matt Johnston
2023-10-03 8:23 ` Miquel Raynal
@ 2023-10-04 14:17 ` Rob Herring
2023-10-10 10:13 ` Alexandre Belloni
2 siblings, 0 replies; 4+ messages in thread
From: Rob Herring @ 2023-10-04 14:17 UTC (permalink / raw)
To: Matt Johnston
Cc: linux-i3c, Alexandre Belloni, Krzysztof Kozlowski, Conor Dooley,
Jonathan Corbet, Miquel Raynal, Conor Culhane, open list,
open list:OPEN FIRMWARE AND FLATTENED DEVICE TREE BINDINGS,
open list:DOCUMENTATION
On Tue, Oct 03, 2023 at 03:53:39PM +0800, Matt Johnston wrote:
> The MIPI I3C spec refers to a Provisioned ID, since it is (sometimes)
> provisioned at device manufacturing.
>
> Signed-off-by: Matt Johnston <matt@codeconstruct.com.au>
> ---
> Documentation/ABI/testing/sysfs-bus-i3c | 4 ++--
> Documentation/devicetree/bindings/i3c/i3c.yaml | 4 ++--
Acked-by: Rob Herring <robh@kernel.org>
> Documentation/driver-api/i3c/protocol.rst | 4 ++--
> drivers/i3c/master/svc-i3c-master.c | 2 +-
> include/linux/i3c/device.h | 2 +-
> include/linux/i3c/master.h | 2 +-
> 6 files changed, 9 insertions(+), 9 deletions(-)
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [PATCH] i3c: Fix typo "Provisional ID" to "Provisioned ID"
2023-10-03 7:53 [PATCH] i3c: Fix typo "Provisional ID" to "Provisioned ID" Matt Johnston
2023-10-03 8:23 ` Miquel Raynal
2023-10-04 14:17 ` Rob Herring
@ 2023-10-10 10:13 ` Alexandre Belloni
2 siblings, 0 replies; 4+ messages in thread
From: Alexandre Belloni @ 2023-10-10 10:13 UTC (permalink / raw)
To: linux-i3c, Matt Johnston
Cc: Rob Herring, Krzysztof Kozlowski, Conor Dooley, Jonathan Corbet,
Miquel Raynal, Conor Culhane, linux-kernel, devicetree, linux-doc
On Tue, 03 Oct 2023 15:53:39 +0800, Matt Johnston wrote:
> The MIPI I3C spec refers to a Provisioned ID, since it is (sometimes)
> provisioned at device manufacturing.
>
>
Applied, thanks!
[1/1] i3c: Fix typo "Provisional ID" to "Provisioned ID"
commit: 57ec42b9a1b7e4db4a1c2aa4fcc4eefe6d31bcb8
Best regards,
--
Alexandre Belloni, co-owner and COO, Bootlin
Embedded Linux and Kernel engineering
https://bootlin.com
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2023-10-10 10:13 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-10-03 7:53 [PATCH] i3c: Fix typo "Provisional ID" to "Provisioned ID" Matt Johnston
2023-10-03 8:23 ` Miquel Raynal
2023-10-04 14:17 ` Rob Herring
2023-10-10 10:13 ` Alexandre Belloni
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).