Skip to content

Commit 9628d97

Browse files
XenuIsWatchingkartben
authored andcommitted
drivers: i3c: remove group addr definition
The i3c group address support is rather very incomplete here. Remove references to it. This could all easily come back when/if group support comes in. Signed-off-by: Ryan McClelland <[email protected]>
1 parent ca8ad7a commit 9628d97

File tree

4 files changed

+0
-34
lines changed

4 files changed

+0
-34
lines changed

doc/hardware/peripherals/i3c.rst

-1
Original file line numberDiff line numberDiff line change
@@ -347,7 +347,6 @@ Configuration Options
347347
Related configuration options:
348348

349349
* :kconfig:option:`CONFIG_I3C`
350-
* :kconfig:option:`CONFIG_I3C_USE_GROUP_ADDR`
351350
* :kconfig:option:`CONFIG_I3C_USE_IBI`
352351
* :kconfig:option:`CONFIG_I3C_IBI_MAX_PAYLOAD_SIZE`
353352
* :kconfig:option:`CONFIG_I3C_CONTROLLER_INIT_PRIORITY`

drivers/i3c/Kconfig

-9
Original file line numberDiff line numberDiff line change
@@ -24,15 +24,6 @@ config I3C_SHELL
2424
The I3C shell supports info, bus recovery, CCC, I3C read and
2525
write operations.
2626

27-
config I3C_USE_GROUP_ADDR
28-
bool "Use Group Addresses"
29-
default y
30-
help
31-
Enable this to use group addresses if supported
32-
by the controllers and target devices.
33-
34-
Says Y if unsure.
35-
3627
config I3C_TARGET_BUFFER_MODE
3728
bool "I3C target driver for buffer mode"
3829
help

drivers/i3c/i3c_shell.c

-12
Original file line numberDiff line numberDiff line change
@@ -200,9 +200,6 @@ static int cmd_i3c_info(const struct shell *sh, size_t argc, char **argv)
200200
"\tpid: 0x%012llx\n"
201201
"\tstatic_addr: 0x%02x\n"
202202
"\tdynamic_addr: 0x%02x\n"
203-
#if defined(CONFIG_I3C_USE_GROUP_ADDR)
204-
"\tgroup_addr: 0x%02x\n"
205-
#endif
206203
"\tbcr: 0x%02x\n"
207204
"\tdcr: 0x%02x\n"
208205
"\tmaxrd: 0x%02x\n"
@@ -216,9 +213,6 @@ static int cmd_i3c_info(const struct shell *sh, size_t argc, char **argv)
216213
"\tcrcaps: 0x%02x; 0x%02x",
217214
desc->dev->name, (uint64_t)desc->pid,
218215
desc->static_addr, desc->dynamic_addr,
219-
#if defined(CONFIG_I3C_USE_GROUP_ADDR)
220-
desc->group_addr,
221-
#endif
222216
desc->bcr, desc->dcr, desc->data_speed.maxrd,
223217
desc->data_speed.maxwr,
224218
desc->data_speed.max_read_turnaround,
@@ -249,9 +243,6 @@ static int cmd_i3c_info(const struct shell *sh, size_t argc, char **argv)
249243
"\tpid: 0x%012llx\n"
250244
"\tstatic_addr: 0x%02x\n"
251245
"\tdynamic_addr: 0x%02x\n"
252-
#if defined(CONFIG_I3C_USE_GROUP_ADDR)
253-
"\tgroup_addr: 0x%02x\n"
254-
#endif
255246
"\tbcr: 0x%02x\n"
256247
"\tdcr: 0x%02x\n"
257248
"\tmaxrd: 0x%02x\n"
@@ -265,9 +256,6 @@ static int cmd_i3c_info(const struct shell *sh, size_t argc, char **argv)
265256
"\tcrcaps: 0x%02x; 0x%02x",
266257
desc->dev->name, (uint64_t)desc->pid, desc->static_addr,
267258
desc->dynamic_addr,
268-
#if defined(CONFIG_I3C_USE_GROUP_ADDR)
269-
desc->group_addr,
270-
#endif
271259
desc->bcr, desc->dcr, desc->data_speed.maxrd,
272260
desc->data_speed.maxwr,
273261
desc->data_speed.max_read_turnaround,

include/zephyr/drivers/i3c.h

-12
Original file line numberDiff line numberDiff line change
@@ -946,18 +946,6 @@ struct i3c_device_desc {
946946
*/
947947
uint8_t dynamic_addr;
948948

949-
#if defined(CONFIG_I3C_USE_GROUP_ADDR) || defined(__DOXYGEN__)
950-
/**
951-
* Group address for this target device. Set during:
952-
* - Reset Group Address(es) (RSTGRPA)
953-
* - Set Group Address (SETGRPA)
954-
*
955-
* 0 if group address has not been assigned.
956-
* Only available if @kconfig{CONFIG_I3C_USE_GROUP_ADDR} is set.
957-
*/
958-
uint8_t group_addr;
959-
#endif /* CONFIG_I3C_USE_GROUP_ADDR */
960-
961949
/**
962950
* Bus Characteristic Register (BCR)
963951
* @see @ref I3C_BCR

0 commit comments

Comments
 (0)