File tree Expand file tree Collapse file tree 1 file changed +11
-4
lines changed
Documentation/devicetree/bindings/i3c Expand file tree Collapse file tree 1 file changed +11
-4
lines changed Original file line number Diff line number Diff line change @@ -135,9 +135,10 @@ patternProperties:
135
135
minimum : 0x1
136
136
maximum : 0xff
137
137
description : |
138
- Dynamic address to be assigned to this device. This property is only
139
- valid if the I3C device has a static address (first cell of the reg
140
- property != 0).
138
+ Dynamic address to be assigned to this device. In case static address is
139
+ present (first cell of the reg property != 0), this address is assigned
140
+ through SETDASA. If static address is not present, this address is assigned
141
+ through SETNEWDA after assigning a temporary address via ENTDAA.
141
142
142
143
required :
143
144
- reg
@@ -163,12 +164,18 @@ examples:
163
164
pagesize = <0x8>;
164
165
};
165
166
166
- /* I3C device with a static I2C address. */
167
+ /* I3C device with a static I2C address and assigned address . */
167
168
thermal_sensor: sensor@68,39200144004 {
168
169
reg = <0x68 0x392 0x144004>;
169
170
assigned-address = <0xa>;
170
171
};
171
172
173
+ /* I3C device with only assigned address. */
174
+ pressure_sensor: sensor@0,39200124004 {
175
+ reg = <0x0 0x392 0x124000>;
176
+ assigned-address = <0xc>;
177
+ };
178
+
172
179
/*
173
180
* I3C device without a static I2C address but requiring
174
181
* resources described in the DT.
You can’t perform that action at this time.
0 commit comments