1 // SPDX-License-Identifier: GPL-2.0
3 * Copyright (C) 2018 Cadence Design Systems Inc.
5 * Author: Boris Brezillon <boris.brezillon@bootlin.com>
8 #include <linux/atomic.h>
10 #include <linux/device.h>
11 #include <linux/err.h>
12 #include <linux/export.h>
13 #include <linux/kernel.h>
14 #include <linux/list.h>
16 #include <linux/slab.h>
17 #include <linux/spinlock.h>
18 #include <linux/workqueue.h>
20 #include "internals.h"
22 static DEFINE_IDR(i3c_bus_idr
);
23 static DEFINE_MUTEX(i3c_core_lock
);
26 * i3c_bus_maintenance_lock - Lock the bus for a maintenance operation
27 * @bus: I3C bus to take the lock on
29 * This function takes the bus lock so that no other operations can occur on
30 * the bus. This is needed for all kind of bus maintenance operation, like
31 * - enabling/disabling slave events
33 * - changing the dynamic address of a device
34 * - relinquishing mastership
37 * The reason for this kind of locking is that we don't want drivers and core
38 * logic to rely on I3C device information that could be changed behind their
41 static void i3c_bus_maintenance_lock(struct i3c_bus
*bus
)
43 down_write(&bus
->lock
);
47 * i3c_bus_maintenance_unlock - Release the bus lock after a maintenance
49 * @bus: I3C bus to release the lock on
51 * Should be called when the bus maintenance operation is done. See
52 * i3c_bus_maintenance_lock() for more details on what these maintenance
55 static void i3c_bus_maintenance_unlock(struct i3c_bus
*bus
)
61 * i3c_bus_normaluse_lock - Lock the bus for a normal operation
62 * @bus: I3C bus to take the lock on
64 * This function takes the bus lock for any operation that is not a maintenance
65 * operation (see i3c_bus_maintenance_lock() for a non-exhaustive list of
66 * maintenance operations). Basically all communications with I3C devices are
67 * normal operations (HDR, SDR transfers or CCC commands that do not change bus
68 * state or I3C dynamic address).
70 * Note that this lock is not guaranteeing serialization of normal operations.
71 * In other words, transfer requests passed to the I3C master can be submitted
72 * in parallel and I3C master drivers have to use their own locking to make
73 * sure two different communications are not inter-mixed, or access to the
74 * output/input queue is not done while the engine is busy.
76 void i3c_bus_normaluse_lock(struct i3c_bus
*bus
)
78 down_read(&bus
->lock
);
82 * i3c_bus_normaluse_unlock - Release the bus lock after a normal operation
83 * @bus: I3C bus to release the lock on
85 * Should be called when a normal operation is done. See
86 * i3c_bus_normaluse_lock() for more details on what these normal operations
89 void i3c_bus_normaluse_unlock(struct i3c_bus
*bus
)
94 static struct i3c_master_controller
*dev_to_i3cmaster(struct device
*dev
)
96 return container_of(dev
, struct i3c_master_controller
, dev
);
99 static const struct device_type i3c_device_type
;
101 static struct i3c_bus
*dev_to_i3cbus(struct device
*dev
)
103 struct i3c_master_controller
*master
;
105 if (dev
->type
== &i3c_device_type
)
106 return dev_to_i3cdev(dev
)->bus
;
108 master
= dev_to_i3cmaster(dev
);
113 static struct i3c_dev_desc
*dev_to_i3cdesc(struct device
*dev
)
115 struct i3c_master_controller
*master
;
117 if (dev
->type
== &i3c_device_type
)
118 return dev_to_i3cdev(dev
)->desc
;
120 master
= container_of(dev
, struct i3c_master_controller
, dev
);
125 static ssize_t
bcr_show(struct device
*dev
,
126 struct device_attribute
*da
,
129 struct i3c_bus
*bus
= dev_to_i3cbus(dev
);
130 struct i3c_dev_desc
*desc
;
133 i3c_bus_normaluse_lock(bus
);
134 desc
= dev_to_i3cdesc(dev
);
135 ret
= sprintf(buf
, "%x\n", desc
->info
.bcr
);
136 i3c_bus_normaluse_unlock(bus
);
140 static DEVICE_ATTR_RO(bcr
);
142 static ssize_t
dcr_show(struct device
*dev
,
143 struct device_attribute
*da
,
146 struct i3c_bus
*bus
= dev_to_i3cbus(dev
);
147 struct i3c_dev_desc
*desc
;
150 i3c_bus_normaluse_lock(bus
);
151 desc
= dev_to_i3cdesc(dev
);
152 ret
= sprintf(buf
, "%x\n", desc
->info
.dcr
);
153 i3c_bus_normaluse_unlock(bus
);
157 static DEVICE_ATTR_RO(dcr
);
159 static ssize_t
pid_show(struct device
*dev
,
160 struct device_attribute
*da
,
163 struct i3c_bus
*bus
= dev_to_i3cbus(dev
);
164 struct i3c_dev_desc
*desc
;
167 i3c_bus_normaluse_lock(bus
);
168 desc
= dev_to_i3cdesc(dev
);
169 ret
= sprintf(buf
, "%llx\n", desc
->info
.pid
);
170 i3c_bus_normaluse_unlock(bus
);
174 static DEVICE_ATTR_RO(pid
);
176 static ssize_t
dynamic_address_show(struct device
*dev
,
177 struct device_attribute
*da
,
180 struct i3c_bus
*bus
= dev_to_i3cbus(dev
);
181 struct i3c_dev_desc
*desc
;
184 i3c_bus_normaluse_lock(bus
);
185 desc
= dev_to_i3cdesc(dev
);
186 ret
= sprintf(buf
, "%02x\n", desc
->info
.dyn_addr
);
187 i3c_bus_normaluse_unlock(bus
);
191 static DEVICE_ATTR_RO(dynamic_address
);
193 static const char * const hdrcap_strings
[] = {
194 "hdr-ddr", "hdr-tsp", "hdr-tsl",
197 static ssize_t
hdrcap_show(struct device
*dev
,
198 struct device_attribute
*da
,
201 struct i3c_bus
*bus
= dev_to_i3cbus(dev
);
202 struct i3c_dev_desc
*desc
;
203 ssize_t offset
= 0, ret
;
207 i3c_bus_normaluse_lock(bus
);
208 desc
= dev_to_i3cdesc(dev
);
209 caps
= desc
->info
.hdr_cap
;
210 for_each_set_bit(mode
, &caps
, 8) {
211 if (mode
>= ARRAY_SIZE(hdrcap_strings
))
214 if (!hdrcap_strings
[mode
])
217 ret
= sprintf(buf
+ offset
, offset
? " %s" : "%s",
218 hdrcap_strings
[mode
]);
225 ret
= sprintf(buf
+ offset
, "\n");
232 i3c_bus_normaluse_unlock(bus
);
236 static DEVICE_ATTR_RO(hdrcap
);
238 static struct attribute
*i3c_device_attrs
[] = {
242 &dev_attr_dynamic_address
.attr
,
243 &dev_attr_hdrcap
.attr
,
246 ATTRIBUTE_GROUPS(i3c_device
);
248 static int i3c_device_uevent(struct device
*dev
, struct kobj_uevent_env
*env
)
250 struct i3c_device
*i3cdev
= dev_to_i3cdev(dev
);
251 struct i3c_device_info devinfo
;
252 u16 manuf
, part
, ext
;
254 i3c_device_get_info(i3cdev
, &devinfo
);
255 manuf
= I3C_PID_MANUF_ID(devinfo
.pid
);
256 part
= I3C_PID_PART_ID(devinfo
.pid
);
257 ext
= I3C_PID_EXTRA_INFO(devinfo
.pid
);
259 if (I3C_PID_RND_LOWER_32BITS(devinfo
.pid
))
260 return add_uevent_var(env
, "MODALIAS=i3c:dcr%02Xmanuf%04X",
263 return add_uevent_var(env
,
264 "MODALIAS=i3c:dcr%02Xmanuf%04Xpart%04xext%04x",
265 devinfo
.dcr
, manuf
, part
, ext
);
268 static const struct device_type i3c_device_type
= {
269 .groups
= i3c_device_groups
,
270 .uevent
= i3c_device_uevent
,
273 static const struct i3c_device_id
*
274 i3c_device_match_id(struct i3c_device
*i3cdev
,
275 const struct i3c_device_id
*id_table
)
277 struct i3c_device_info devinfo
;
278 const struct i3c_device_id
*id
;
280 i3c_device_get_info(i3cdev
, &devinfo
);
283 * The lower 32bits of the provisional ID is just filled with a random
284 * value, try to match using DCR info.
286 if (!I3C_PID_RND_LOWER_32BITS(devinfo
.pid
)) {
287 u16 manuf
= I3C_PID_MANUF_ID(devinfo
.pid
);
288 u16 part
= I3C_PID_PART_ID(devinfo
.pid
);
289 u16 ext_info
= I3C_PID_EXTRA_INFO(devinfo
.pid
);
291 /* First try to match by manufacturer/part ID. */
292 for (id
= id_table
; id
->match_flags
!= 0; id
++) {
293 if ((id
->match_flags
& I3C_MATCH_MANUF_AND_PART
) !=
294 I3C_MATCH_MANUF_AND_PART
)
297 if (manuf
!= id
->manuf_id
|| part
!= id
->part_id
)
300 if ((id
->match_flags
& I3C_MATCH_EXTRA_INFO
) &&
301 ext_info
!= id
->extra_info
)
308 /* Fallback to DCR match. */
309 for (id
= id_table
; id
->match_flags
!= 0; id
++) {
310 if ((id
->match_flags
& I3C_MATCH_DCR
) &&
311 id
->dcr
== devinfo
.dcr
)
318 static int i3c_device_match(struct device
*dev
, struct device_driver
*drv
)
320 struct i3c_device
*i3cdev
;
321 struct i3c_driver
*i3cdrv
;
323 if (dev
->type
!= &i3c_device_type
)
326 i3cdev
= dev_to_i3cdev(dev
);
327 i3cdrv
= drv_to_i3cdrv(drv
);
328 if (i3c_device_match_id(i3cdev
, i3cdrv
->id_table
))
334 static int i3c_device_probe(struct device
*dev
)
336 struct i3c_device
*i3cdev
= dev_to_i3cdev(dev
);
337 struct i3c_driver
*driver
= drv_to_i3cdrv(dev
->driver
);
339 return driver
->probe(i3cdev
);
342 static int i3c_device_remove(struct device
*dev
)
344 struct i3c_device
*i3cdev
= dev_to_i3cdev(dev
);
345 struct i3c_driver
*driver
= drv_to_i3cdrv(dev
->driver
);
348 ret
= driver
->remove(i3cdev
);
352 i3c_device_free_ibi(i3cdev
);
357 struct bus_type i3c_bus_type
= {
359 .match
= i3c_device_match
,
360 .probe
= i3c_device_probe
,
361 .remove
= i3c_device_remove
,
364 static enum i3c_addr_slot_status
365 i3c_bus_get_addr_slot_status(struct i3c_bus
*bus
, u16 addr
)
367 int status
, bitpos
= addr
* 2;
369 if (addr
> I2C_MAX_ADDR
)
370 return I3C_ADDR_SLOT_RSVD
;
372 status
= bus
->addrslots
[bitpos
/ BITS_PER_LONG
];
373 status
>>= bitpos
% BITS_PER_LONG
;
375 return status
& I3C_ADDR_SLOT_STATUS_MASK
;
378 static void i3c_bus_set_addr_slot_status(struct i3c_bus
*bus
, u16 addr
,
379 enum i3c_addr_slot_status status
)
381 int bitpos
= addr
* 2;
384 if (addr
> I2C_MAX_ADDR
)
387 ptr
= bus
->addrslots
+ (bitpos
/ BITS_PER_LONG
);
388 *ptr
&= ~((unsigned long)I3C_ADDR_SLOT_STATUS_MASK
<<
389 (bitpos
% BITS_PER_LONG
));
390 *ptr
|= (unsigned long)status
<< (bitpos
% BITS_PER_LONG
);
393 static bool i3c_bus_dev_addr_is_avail(struct i3c_bus
*bus
, u8 addr
)
395 enum i3c_addr_slot_status status
;
397 status
= i3c_bus_get_addr_slot_status(bus
, addr
);
399 return status
== I3C_ADDR_SLOT_FREE
;
402 static int i3c_bus_get_free_addr(struct i3c_bus
*bus
, u8 start_addr
)
404 enum i3c_addr_slot_status status
;
407 for (addr
= start_addr
; addr
< I3C_MAX_ADDR
; addr
++) {
408 status
= i3c_bus_get_addr_slot_status(bus
, addr
);
409 if (status
== I3C_ADDR_SLOT_FREE
)
416 static void i3c_bus_init_addrslots(struct i3c_bus
*bus
)
420 /* Addresses 0 to 7 are reserved. */
421 for (i
= 0; i
< 8; i
++)
422 i3c_bus_set_addr_slot_status(bus
, i
, I3C_ADDR_SLOT_RSVD
);
425 * Reserve broadcast address and all addresses that might collide
426 * with the broadcast address when facing a single bit error.
428 i3c_bus_set_addr_slot_status(bus
, I3C_BROADCAST_ADDR
,
430 for (i
= 0; i
< 7; i
++)
431 i3c_bus_set_addr_slot_status(bus
, I3C_BROADCAST_ADDR
^ BIT(i
),
435 static void i3c_bus_cleanup(struct i3c_bus
*i3cbus
)
437 mutex_lock(&i3c_core_lock
);
438 idr_remove(&i3c_bus_idr
, i3cbus
->id
);
439 mutex_unlock(&i3c_core_lock
);
442 static int i3c_bus_init(struct i3c_bus
*i3cbus
)
446 init_rwsem(&i3cbus
->lock
);
447 INIT_LIST_HEAD(&i3cbus
->devs
.i2c
);
448 INIT_LIST_HEAD(&i3cbus
->devs
.i3c
);
449 i3c_bus_init_addrslots(i3cbus
);
450 i3cbus
->mode
= I3C_BUS_MODE_PURE
;
452 mutex_lock(&i3c_core_lock
);
453 ret
= idr_alloc(&i3c_bus_idr
, i3cbus
, 0, 0, GFP_KERNEL
);
454 mutex_unlock(&i3c_core_lock
);
464 static const char * const i3c_bus_mode_strings
[] = {
465 [I3C_BUS_MODE_PURE
] = "pure",
466 [I3C_BUS_MODE_MIXED_FAST
] = "mixed-fast",
467 [I3C_BUS_MODE_MIXED_SLOW
] = "mixed-slow",
470 static ssize_t
mode_show(struct device
*dev
,
471 struct device_attribute
*da
,
474 struct i3c_bus
*i3cbus
= dev_to_i3cbus(dev
);
477 i3c_bus_normaluse_lock(i3cbus
);
478 if (i3cbus
->mode
< 0 ||
479 i3cbus
->mode
>= ARRAY_SIZE(i3c_bus_mode_strings
) ||
480 !i3c_bus_mode_strings
[i3cbus
->mode
])
481 ret
= sprintf(buf
, "unknown\n");
483 ret
= sprintf(buf
, "%s\n", i3c_bus_mode_strings
[i3cbus
->mode
]);
484 i3c_bus_normaluse_unlock(i3cbus
);
488 static DEVICE_ATTR_RO(mode
);
490 static ssize_t
current_master_show(struct device
*dev
,
491 struct device_attribute
*da
,
494 struct i3c_bus
*i3cbus
= dev_to_i3cbus(dev
);
497 i3c_bus_normaluse_lock(i3cbus
);
498 ret
= sprintf(buf
, "%d-%llx\n", i3cbus
->id
,
499 i3cbus
->cur_master
->info
.pid
);
500 i3c_bus_normaluse_unlock(i3cbus
);
504 static DEVICE_ATTR_RO(current_master
);
506 static ssize_t
i3c_scl_frequency_show(struct device
*dev
,
507 struct device_attribute
*da
,
510 struct i3c_bus
*i3cbus
= dev_to_i3cbus(dev
);
513 i3c_bus_normaluse_lock(i3cbus
);
514 ret
= sprintf(buf
, "%ld\n", i3cbus
->scl_rate
.i3c
);
515 i3c_bus_normaluse_unlock(i3cbus
);
519 static DEVICE_ATTR_RO(i3c_scl_frequency
);
521 static ssize_t
i2c_scl_frequency_show(struct device
*dev
,
522 struct device_attribute
*da
,
525 struct i3c_bus
*i3cbus
= dev_to_i3cbus(dev
);
528 i3c_bus_normaluse_lock(i3cbus
);
529 ret
= sprintf(buf
, "%ld\n", i3cbus
->scl_rate
.i2c
);
530 i3c_bus_normaluse_unlock(i3cbus
);
534 static DEVICE_ATTR_RO(i2c_scl_frequency
);
536 static struct attribute
*i3c_masterdev_attrs
[] = {
538 &dev_attr_current_master
.attr
,
539 &dev_attr_i3c_scl_frequency
.attr
,
540 &dev_attr_i2c_scl_frequency
.attr
,
544 &dev_attr_dynamic_address
.attr
,
545 &dev_attr_hdrcap
.attr
,
548 ATTRIBUTE_GROUPS(i3c_masterdev
);
550 static void i3c_masterdev_release(struct device
*dev
)
552 struct i3c_master_controller
*master
= dev_to_i3cmaster(dev
);
553 struct i3c_bus
*bus
= dev_to_i3cbus(dev
);
556 destroy_workqueue(master
->wq
);
558 WARN_ON(!list_empty(&bus
->devs
.i2c
) || !list_empty(&bus
->devs
.i3c
));
559 i3c_bus_cleanup(bus
);
561 of_node_put(dev
->of_node
);
564 static const struct device_type i3c_masterdev_type
= {
565 .groups
= i3c_masterdev_groups
,
568 int i3c_bus_set_mode(struct i3c_bus
*i3cbus
, enum i3c_bus_mode mode
)
572 if (!i3cbus
->scl_rate
.i3c
)
573 i3cbus
->scl_rate
.i3c
= I3C_BUS_TYP_I3C_SCL_RATE
;
575 if (!i3cbus
->scl_rate
.i2c
) {
576 if (i3cbus
->mode
== I3C_BUS_MODE_MIXED_SLOW
)
577 i3cbus
->scl_rate
.i2c
= I3C_BUS_I2C_FM_SCL_RATE
;
579 i3cbus
->scl_rate
.i2c
= I3C_BUS_I2C_FM_PLUS_SCL_RATE
;
583 * I3C/I2C frequency may have been overridden, check that user-provided
584 * values are not exceeding max possible frequency.
586 if (i3cbus
->scl_rate
.i3c
> I3C_BUS_MAX_I3C_SCL_RATE
||
587 i3cbus
->scl_rate
.i2c
> I3C_BUS_I2C_FM_PLUS_SCL_RATE
)
593 static struct i3c_master_controller
*
594 i2c_adapter_to_i3c_master(struct i2c_adapter
*adap
)
596 return container_of(adap
, struct i3c_master_controller
, i2c
);
599 static struct i2c_adapter
*
600 i3c_master_to_i2c_adapter(struct i3c_master_controller
*master
)
605 static void i3c_master_free_i2c_dev(struct i2c_dev_desc
*dev
)
610 static struct i2c_dev_desc
*
611 i3c_master_alloc_i2c_dev(struct i3c_master_controller
*master
,
612 const struct i2c_dev_boardinfo
*boardinfo
)
614 struct i2c_dev_desc
*dev
;
616 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
618 return ERR_PTR(-ENOMEM
);
620 dev
->common
.master
= master
;
621 dev
->boardinfo
= boardinfo
;
626 static void *i3c_ccc_cmd_dest_init(struct i3c_ccc_cmd_dest
*dest
, u8 addr
,
630 dest
->payload
.len
= payloadlen
;
632 dest
->payload
.data
= kzalloc(payloadlen
, GFP_KERNEL
);
634 dest
->payload
.data
= NULL
;
636 return dest
->payload
.data
;
639 static void i3c_ccc_cmd_dest_cleanup(struct i3c_ccc_cmd_dest
*dest
)
641 kfree(dest
->payload
.data
);
644 static void i3c_ccc_cmd_init(struct i3c_ccc_cmd
*cmd
, bool rnw
, u8 id
,
645 struct i3c_ccc_cmd_dest
*dests
,
648 cmd
->rnw
= rnw
? 1 : 0;
651 cmd
->ndests
= ndests
;
652 cmd
->err
= I3C_ERROR_UNKNOWN
;
655 static int i3c_master_send_ccc_cmd_locked(struct i3c_master_controller
*master
,
656 struct i3c_ccc_cmd
*cmd
)
663 if (WARN_ON(master
->init_done
&&
664 !rwsem_is_locked(&master
->bus
.lock
)))
667 if (!master
->ops
->send_ccc_cmd
)
670 if ((cmd
->id
& I3C_CCC_DIRECT
) && (!cmd
->dests
|| !cmd
->ndests
))
673 if (master
->ops
->supports_ccc_cmd
&&
674 !master
->ops
->supports_ccc_cmd(master
, cmd
))
677 ret
= master
->ops
->send_ccc_cmd(master
, cmd
);
679 if (cmd
->err
!= I3C_ERROR_UNKNOWN
)
688 static struct i2c_dev_desc
*
689 i3c_master_find_i2c_dev_by_addr(const struct i3c_master_controller
*master
,
692 struct i2c_dev_desc
*dev
;
694 i3c_bus_for_each_i2cdev(&master
->bus
, dev
) {
695 if (dev
->boardinfo
->base
.addr
== addr
)
703 * i3c_master_get_free_addr() - get a free address on the bus
704 * @master: I3C master object
705 * @start_addr: where to start searching
707 * This function must be called with the bus lock held in write mode.
709 * Return: the first free address starting at @start_addr (included) or -ENOMEM
710 * if there's no more address available.
712 int i3c_master_get_free_addr(struct i3c_master_controller
*master
,
715 return i3c_bus_get_free_addr(&master
->bus
, start_addr
);
717 EXPORT_SYMBOL_GPL(i3c_master_get_free_addr
);
719 static void i3c_device_release(struct device
*dev
)
721 struct i3c_device
*i3cdev
= dev_to_i3cdev(dev
);
723 WARN_ON(i3cdev
->desc
);
725 of_node_put(i3cdev
->dev
.of_node
);
729 static void i3c_master_free_i3c_dev(struct i3c_dev_desc
*dev
)
734 static struct i3c_dev_desc
*
735 i3c_master_alloc_i3c_dev(struct i3c_master_controller
*master
,
736 const struct i3c_device_info
*info
)
738 struct i3c_dev_desc
*dev
;
740 dev
= kzalloc(sizeof(*dev
), GFP_KERNEL
);
742 return ERR_PTR(-ENOMEM
);
744 dev
->common
.master
= master
;
746 mutex_init(&dev
->ibi_lock
);
751 static int i3c_master_rstdaa_locked(struct i3c_master_controller
*master
,
754 enum i3c_addr_slot_status addrstat
;
755 struct i3c_ccc_cmd_dest dest
;
756 struct i3c_ccc_cmd cmd
;
762 addrstat
= i3c_bus_get_addr_slot_status(&master
->bus
, addr
);
763 if (addr
!= I3C_BROADCAST_ADDR
&& addrstat
!= I3C_ADDR_SLOT_I3C_DEV
)
766 i3c_ccc_cmd_dest_init(&dest
, addr
, 0);
767 i3c_ccc_cmd_init(&cmd
, false,
768 I3C_CCC_RSTDAA(addr
== I3C_BROADCAST_ADDR
),
770 ret
= i3c_master_send_ccc_cmd_locked(master
, &cmd
);
771 i3c_ccc_cmd_dest_cleanup(&dest
);
777 * i3c_master_entdaa_locked() - start a DAA (Dynamic Address Assignment)
779 * @master: master used to send frames on the bus
781 * Send a ENTDAA CCC command to start a DAA procedure.
783 * Note that this function only sends the ENTDAA CCC command, all the logic
784 * behind dynamic address assignment has to be handled in the I3C master
787 * This function must be called with the bus lock held in write mode.
789 * Return: 0 in case of success, a positive I3C error code if the error is
790 * one of the official Mx error codes, and a negative error code otherwise.
792 int i3c_master_entdaa_locked(struct i3c_master_controller
*master
)
794 struct i3c_ccc_cmd_dest dest
;
795 struct i3c_ccc_cmd cmd
;
798 i3c_ccc_cmd_dest_init(&dest
, I3C_BROADCAST_ADDR
, 0);
799 i3c_ccc_cmd_init(&cmd
, false, I3C_CCC_ENTDAA
, &dest
, 1);
800 ret
= i3c_master_send_ccc_cmd_locked(master
, &cmd
);
801 i3c_ccc_cmd_dest_cleanup(&dest
);
805 EXPORT_SYMBOL_GPL(i3c_master_entdaa_locked
);
807 static int i3c_master_enec_disec_locked(struct i3c_master_controller
*master
,
808 u8 addr
, bool enable
, u8 evts
)
810 struct i3c_ccc_events
*events
;
811 struct i3c_ccc_cmd_dest dest
;
812 struct i3c_ccc_cmd cmd
;
815 events
= i3c_ccc_cmd_dest_init(&dest
, addr
, sizeof(*events
));
819 events
->events
= evts
;
820 i3c_ccc_cmd_init(&cmd
, false,
822 I3C_CCC_ENEC(addr
== I3C_BROADCAST_ADDR
) :
823 I3C_CCC_DISEC(addr
== I3C_BROADCAST_ADDR
),
825 ret
= i3c_master_send_ccc_cmd_locked(master
, &cmd
);
826 i3c_ccc_cmd_dest_cleanup(&dest
);
832 * i3c_master_disec_locked() - send a DISEC CCC command
833 * @master: master used to send frames on the bus
834 * @addr: a valid I3C slave address or %I3C_BROADCAST_ADDR
835 * @evts: events to disable
837 * Send a DISEC CCC command to disable some or all events coming from a
838 * specific slave, or all devices if @addr is %I3C_BROADCAST_ADDR.
840 * This function must be called with the bus lock held in write mode.
842 * Return: 0 in case of success, a positive I3C error code if the error is
843 * one of the official Mx error codes, and a negative error code otherwise.
845 int i3c_master_disec_locked(struct i3c_master_controller
*master
, u8 addr
,
848 return i3c_master_enec_disec_locked(master
, addr
, false, evts
);
850 EXPORT_SYMBOL_GPL(i3c_master_disec_locked
);
853 * i3c_master_enec_locked() - send an ENEC CCC command
854 * @master: master used to send frames on the bus
855 * @addr: a valid I3C slave address or %I3C_BROADCAST_ADDR
856 * @evts: events to disable
858 * Sends an ENEC CCC command to enable some or all events coming from a
859 * specific slave, or all devices if @addr is %I3C_BROADCAST_ADDR.
861 * This function must be called with the bus lock held in write mode.
863 * Return: 0 in case of success, a positive I3C error code if the error is
864 * one of the official Mx error codes, and a negative error code otherwise.
866 int i3c_master_enec_locked(struct i3c_master_controller
*master
, u8 addr
,
869 return i3c_master_enec_disec_locked(master
, addr
, true, evts
);
871 EXPORT_SYMBOL_GPL(i3c_master_enec_locked
);
874 * i3c_master_defslvs_locked() - send a DEFSLVS CCC command
875 * @master: master used to send frames on the bus
877 * Send a DEFSLVS CCC command containing all the devices known to the @master.
878 * This is useful when you have secondary masters on the bus to propagate
879 * device information.
881 * This should be called after all I3C devices have been discovered (in other
882 * words, after the DAA procedure has finished) and instantiated in
883 * &i3c_master_controller_ops->bus_init().
884 * It should also be called if a master ACKed an Hot-Join request and assigned
885 * a dynamic address to the device joining the bus.
887 * This function must be called with the bus lock held in write mode.
889 * Return: 0 in case of success, a positive I3C error code if the error is
890 * one of the official Mx error codes, and a negative error code otherwise.
892 int i3c_master_defslvs_locked(struct i3c_master_controller
*master
)
894 struct i3c_ccc_defslvs
*defslvs
;
895 struct i3c_ccc_dev_desc
*desc
;
896 struct i3c_ccc_cmd_dest dest
;
897 struct i3c_dev_desc
*i3cdev
;
898 struct i2c_dev_desc
*i2cdev
;
899 struct i3c_ccc_cmd cmd
;
907 bus
= i3c_master_get_bus(master
);
908 i3c_bus_for_each_i3cdev(bus
, i3cdev
) {
911 if (i3cdev
== master
->this)
914 if (I3C_BCR_DEVICE_ROLE(i3cdev
->info
.bcr
) ==
919 /* No other master on the bus, skip DEFSLVS. */
923 i3c_bus_for_each_i2cdev(bus
, i2cdev
)
926 defslvs
= i3c_ccc_cmd_dest_init(&dest
, I3C_BROADCAST_ADDR
,
929 sizeof(struct i3c_ccc_dev_desc
)));
933 defslvs
->count
= ndevs
;
934 defslvs
->master
.bcr
= master
->this->info
.bcr
;
935 defslvs
->master
.dcr
= master
->this->info
.dcr
;
936 defslvs
->master
.dyn_addr
= master
->this->info
.dyn_addr
<< 1;
937 defslvs
->master
.static_addr
= I3C_BROADCAST_ADDR
<< 1;
939 desc
= defslvs
->slaves
;
940 i3c_bus_for_each_i2cdev(bus
, i2cdev
) {
941 desc
->lvr
= i2cdev
->boardinfo
->lvr
;
942 desc
->static_addr
= i2cdev
->boardinfo
->base
.addr
<< 1;
946 i3c_bus_for_each_i3cdev(bus
, i3cdev
) {
947 /* Skip the I3C dev representing this master. */
948 if (i3cdev
== master
->this)
951 desc
->bcr
= i3cdev
->info
.bcr
;
952 desc
->dcr
= i3cdev
->info
.dcr
;
953 desc
->dyn_addr
= i3cdev
->info
.dyn_addr
<< 1;
954 desc
->static_addr
= i3cdev
->info
.static_addr
<< 1;
958 i3c_ccc_cmd_init(&cmd
, false, I3C_CCC_DEFSLVS
, &dest
, 1);
959 ret
= i3c_master_send_ccc_cmd_locked(master
, &cmd
);
960 i3c_ccc_cmd_dest_cleanup(&dest
);
964 EXPORT_SYMBOL_GPL(i3c_master_defslvs_locked
);
966 static int i3c_master_setda_locked(struct i3c_master_controller
*master
,
967 u8 oldaddr
, u8 newaddr
, bool setdasa
)
969 struct i3c_ccc_cmd_dest dest
;
970 struct i3c_ccc_setda
*setda
;
971 struct i3c_ccc_cmd cmd
;
974 if (!oldaddr
|| !newaddr
)
977 setda
= i3c_ccc_cmd_dest_init(&dest
, oldaddr
, sizeof(*setda
));
981 setda
->addr
= newaddr
<< 1;
982 i3c_ccc_cmd_init(&cmd
, false,
983 setdasa
? I3C_CCC_SETDASA
: I3C_CCC_SETNEWDA
,
985 ret
= i3c_master_send_ccc_cmd_locked(master
, &cmd
);
986 i3c_ccc_cmd_dest_cleanup(&dest
);
991 static int i3c_master_setdasa_locked(struct i3c_master_controller
*master
,
992 u8 static_addr
, u8 dyn_addr
)
994 return i3c_master_setda_locked(master
, static_addr
, dyn_addr
, true);
997 static int i3c_master_setnewda_locked(struct i3c_master_controller
*master
,
998 u8 oldaddr
, u8 newaddr
)
1000 return i3c_master_setda_locked(master
, oldaddr
, newaddr
, false);
1003 static int i3c_master_getmrl_locked(struct i3c_master_controller
*master
,
1004 struct i3c_device_info
*info
)
1006 struct i3c_ccc_cmd_dest dest
;
1007 unsigned int expected_len
;
1008 struct i3c_ccc_mrl
*mrl
;
1009 struct i3c_ccc_cmd cmd
;
1012 mrl
= i3c_ccc_cmd_dest_init(&dest
, info
->dyn_addr
, sizeof(*mrl
));
1017 * When the device does not have IBI payload GETMRL only returns 2
1020 if (!(info
->bcr
& I3C_BCR_IBI_PAYLOAD
))
1021 dest
.payload
.len
-= 1;
1023 expected_len
= dest
.payload
.len
;
1024 i3c_ccc_cmd_init(&cmd
, true, I3C_CCC_GETMRL
, &dest
, 1);
1025 ret
= i3c_master_send_ccc_cmd_locked(master
, &cmd
);
1029 if (dest
.payload
.len
!= expected_len
) {
1034 info
->max_read_len
= be16_to_cpu(mrl
->read_len
);
1036 if (info
->bcr
& I3C_BCR_IBI_PAYLOAD
)
1037 info
->max_ibi_len
= mrl
->ibi_len
;
1040 i3c_ccc_cmd_dest_cleanup(&dest
);
1045 static int i3c_master_getmwl_locked(struct i3c_master_controller
*master
,
1046 struct i3c_device_info
*info
)
1048 struct i3c_ccc_cmd_dest dest
;
1049 struct i3c_ccc_mwl
*mwl
;
1050 struct i3c_ccc_cmd cmd
;
1053 mwl
= i3c_ccc_cmd_dest_init(&dest
, info
->dyn_addr
, sizeof(*mwl
));
1057 i3c_ccc_cmd_init(&cmd
, true, I3C_CCC_GETMWL
, &dest
, 1);
1058 ret
= i3c_master_send_ccc_cmd_locked(master
, &cmd
);
1062 if (dest
.payload
.len
!= sizeof(*mwl
))
1065 info
->max_write_len
= be16_to_cpu(mwl
->len
);
1068 i3c_ccc_cmd_dest_cleanup(&dest
);
1073 static int i3c_master_getmxds_locked(struct i3c_master_controller
*master
,
1074 struct i3c_device_info
*info
)
1076 struct i3c_ccc_getmxds
*getmaxds
;
1077 struct i3c_ccc_cmd_dest dest
;
1078 struct i3c_ccc_cmd cmd
;
1081 getmaxds
= i3c_ccc_cmd_dest_init(&dest
, info
->dyn_addr
,
1086 i3c_ccc_cmd_init(&cmd
, true, I3C_CCC_GETMXDS
, &dest
, 1);
1087 ret
= i3c_master_send_ccc_cmd_locked(master
, &cmd
);
1091 if (dest
.payload
.len
!= 2 && dest
.payload
.len
!= 5) {
1096 info
->max_read_ds
= getmaxds
->maxrd
;
1097 info
->max_write_ds
= getmaxds
->maxwr
;
1098 if (dest
.payload
.len
== 5)
1099 info
->max_read_turnaround
= getmaxds
->maxrdturn
[0] |
1100 ((u32
)getmaxds
->maxrdturn
[1] << 8) |
1101 ((u32
)getmaxds
->maxrdturn
[2] << 16);
1104 i3c_ccc_cmd_dest_cleanup(&dest
);
1109 static int i3c_master_gethdrcap_locked(struct i3c_master_controller
*master
,
1110 struct i3c_device_info
*info
)
1112 struct i3c_ccc_gethdrcap
*gethdrcap
;
1113 struct i3c_ccc_cmd_dest dest
;
1114 struct i3c_ccc_cmd cmd
;
1117 gethdrcap
= i3c_ccc_cmd_dest_init(&dest
, info
->dyn_addr
,
1118 sizeof(*gethdrcap
));
1122 i3c_ccc_cmd_init(&cmd
, true, I3C_CCC_GETHDRCAP
, &dest
, 1);
1123 ret
= i3c_master_send_ccc_cmd_locked(master
, &cmd
);
1127 if (dest
.payload
.len
!= 1) {
1132 info
->hdr_cap
= gethdrcap
->modes
;
1135 i3c_ccc_cmd_dest_cleanup(&dest
);
1140 static int i3c_master_getpid_locked(struct i3c_master_controller
*master
,
1141 struct i3c_device_info
*info
)
1143 struct i3c_ccc_getpid
*getpid
;
1144 struct i3c_ccc_cmd_dest dest
;
1145 struct i3c_ccc_cmd cmd
;
1148 getpid
= i3c_ccc_cmd_dest_init(&dest
, info
->dyn_addr
, sizeof(*getpid
));
1152 i3c_ccc_cmd_init(&cmd
, true, I3C_CCC_GETPID
, &dest
, 1);
1153 ret
= i3c_master_send_ccc_cmd_locked(master
, &cmd
);
1158 for (i
= 0; i
< sizeof(getpid
->pid
); i
++) {
1159 int sft
= (sizeof(getpid
->pid
) - i
- 1) * 8;
1161 info
->pid
|= (u64
)getpid
->pid
[i
] << sft
;
1165 i3c_ccc_cmd_dest_cleanup(&dest
);
1170 static int i3c_master_getbcr_locked(struct i3c_master_controller
*master
,
1171 struct i3c_device_info
*info
)
1173 struct i3c_ccc_getbcr
*getbcr
;
1174 struct i3c_ccc_cmd_dest dest
;
1175 struct i3c_ccc_cmd cmd
;
1178 getbcr
= i3c_ccc_cmd_dest_init(&dest
, info
->dyn_addr
, sizeof(*getbcr
));
1182 i3c_ccc_cmd_init(&cmd
, true, I3C_CCC_GETBCR
, &dest
, 1);
1183 ret
= i3c_master_send_ccc_cmd_locked(master
, &cmd
);
1187 info
->bcr
= getbcr
->bcr
;
1190 i3c_ccc_cmd_dest_cleanup(&dest
);
1195 static int i3c_master_getdcr_locked(struct i3c_master_controller
*master
,
1196 struct i3c_device_info
*info
)
1198 struct i3c_ccc_getdcr
*getdcr
;
1199 struct i3c_ccc_cmd_dest dest
;
1200 struct i3c_ccc_cmd cmd
;
1203 getdcr
= i3c_ccc_cmd_dest_init(&dest
, info
->dyn_addr
, sizeof(*getdcr
));
1207 i3c_ccc_cmd_init(&cmd
, true, I3C_CCC_GETDCR
, &dest
, 1);
1208 ret
= i3c_master_send_ccc_cmd_locked(master
, &cmd
);
1212 info
->dcr
= getdcr
->dcr
;
1215 i3c_ccc_cmd_dest_cleanup(&dest
);
1220 static int i3c_master_retrieve_dev_info(struct i3c_dev_desc
*dev
)
1222 struct i3c_master_controller
*master
= i3c_dev_get_master(dev
);
1223 enum i3c_addr_slot_status slot_status
;
1226 if (!dev
->info
.dyn_addr
)
1229 slot_status
= i3c_bus_get_addr_slot_status(&master
->bus
,
1230 dev
->info
.dyn_addr
);
1231 if (slot_status
== I3C_ADDR_SLOT_RSVD
||
1232 slot_status
== I3C_ADDR_SLOT_I2C_DEV
)
1235 ret
= i3c_master_getpid_locked(master
, &dev
->info
);
1239 ret
= i3c_master_getbcr_locked(master
, &dev
->info
);
1243 ret
= i3c_master_getdcr_locked(master
, &dev
->info
);
1247 if (dev
->info
.bcr
& I3C_BCR_MAX_DATA_SPEED_LIM
) {
1248 ret
= i3c_master_getmxds_locked(master
, &dev
->info
);
1253 if (dev
->info
.bcr
& I3C_BCR_IBI_PAYLOAD
)
1254 dev
->info
.max_ibi_len
= 1;
1256 i3c_master_getmrl_locked(master
, &dev
->info
);
1257 i3c_master_getmwl_locked(master
, &dev
->info
);
1259 if (dev
->info
.bcr
& I3C_BCR_HDR_CAP
) {
1260 ret
= i3c_master_gethdrcap_locked(master
, &dev
->info
);
1268 static void i3c_master_put_i3c_addrs(struct i3c_dev_desc
*dev
)
1270 struct i3c_master_controller
*master
= i3c_dev_get_master(dev
);
1272 if (dev
->info
.static_addr
)
1273 i3c_bus_set_addr_slot_status(&master
->bus
,
1274 dev
->info
.static_addr
,
1275 I3C_ADDR_SLOT_FREE
);
1277 if (dev
->info
.dyn_addr
)
1278 i3c_bus_set_addr_slot_status(&master
->bus
, dev
->info
.dyn_addr
,
1279 I3C_ADDR_SLOT_FREE
);
1281 if (dev
->boardinfo
&& dev
->boardinfo
->init_dyn_addr
)
1282 i3c_bus_set_addr_slot_status(&master
->bus
, dev
->info
.dyn_addr
,
1283 I3C_ADDR_SLOT_FREE
);
1286 static int i3c_master_get_i3c_addrs(struct i3c_dev_desc
*dev
)
1288 struct i3c_master_controller
*master
= i3c_dev_get_master(dev
);
1289 enum i3c_addr_slot_status status
;
1291 if (!dev
->info
.static_addr
&& !dev
->info
.dyn_addr
)
1294 if (dev
->info
.static_addr
) {
1295 status
= i3c_bus_get_addr_slot_status(&master
->bus
,
1296 dev
->info
.static_addr
);
1297 if (status
!= I3C_ADDR_SLOT_FREE
)
1300 i3c_bus_set_addr_slot_status(&master
->bus
,
1301 dev
->info
.static_addr
,
1302 I3C_ADDR_SLOT_I3C_DEV
);
1306 * ->init_dyn_addr should have been reserved before that, so, if we're
1307 * trying to apply a pre-reserved dynamic address, we should not try
1308 * to reserve the address slot a second time.
1310 if (dev
->info
.dyn_addr
&&
1312 dev
->boardinfo
->init_dyn_addr
!= dev
->info
.dyn_addr
)) {
1313 status
= i3c_bus_get_addr_slot_status(&master
->bus
,
1314 dev
->info
.dyn_addr
);
1315 if (status
!= I3C_ADDR_SLOT_FREE
)
1316 goto err_release_static_addr
;
1318 i3c_bus_set_addr_slot_status(&master
->bus
, dev
->info
.dyn_addr
,
1319 I3C_ADDR_SLOT_I3C_DEV
);
1324 err_release_static_addr
:
1325 if (dev
->info
.static_addr
)
1326 i3c_bus_set_addr_slot_status(&master
->bus
,
1327 dev
->info
.static_addr
,
1328 I3C_ADDR_SLOT_FREE
);
1333 static int i3c_master_attach_i3c_dev(struct i3c_master_controller
*master
,
1334 struct i3c_dev_desc
*dev
)
1339 * We don't attach devices to the controller until they are
1340 * addressable on the bus.
1342 if (!dev
->info
.static_addr
&& !dev
->info
.dyn_addr
)
1345 ret
= i3c_master_get_i3c_addrs(dev
);
1349 /* Do not attach the master device itself. */
1350 if (master
->this != dev
&& master
->ops
->attach_i3c_dev
) {
1351 ret
= master
->ops
->attach_i3c_dev(dev
);
1353 i3c_master_put_i3c_addrs(dev
);
1358 list_add_tail(&dev
->common
.node
, &master
->bus
.devs
.i3c
);
1363 static int i3c_master_reattach_i3c_dev(struct i3c_dev_desc
*dev
,
1366 struct i3c_master_controller
*master
= i3c_dev_get_master(dev
);
1367 enum i3c_addr_slot_status status
;
1370 if (dev
->info
.dyn_addr
!= old_dyn_addr
) {
1371 status
= i3c_bus_get_addr_slot_status(&master
->bus
,
1372 dev
->info
.dyn_addr
);
1373 if (status
!= I3C_ADDR_SLOT_FREE
)
1375 i3c_bus_set_addr_slot_status(&master
->bus
,
1377 I3C_ADDR_SLOT_I3C_DEV
);
1380 if (master
->ops
->reattach_i3c_dev
) {
1381 ret
= master
->ops
->reattach_i3c_dev(dev
, old_dyn_addr
);
1383 i3c_master_put_i3c_addrs(dev
);
1391 static void i3c_master_detach_i3c_dev(struct i3c_dev_desc
*dev
)
1393 struct i3c_master_controller
*master
= i3c_dev_get_master(dev
);
1395 /* Do not detach the master device itself. */
1396 if (master
->this != dev
&& master
->ops
->detach_i3c_dev
)
1397 master
->ops
->detach_i3c_dev(dev
);
1399 i3c_master_put_i3c_addrs(dev
);
1400 list_del(&dev
->common
.node
);
1403 static int i3c_master_attach_i2c_dev(struct i3c_master_controller
*master
,
1404 struct i2c_dev_desc
*dev
)
1408 if (master
->ops
->attach_i2c_dev
) {
1409 ret
= master
->ops
->attach_i2c_dev(dev
);
1414 list_add_tail(&dev
->common
.node
, &master
->bus
.devs
.i2c
);
1419 static void i3c_master_detach_i2c_dev(struct i2c_dev_desc
*dev
)
1421 struct i3c_master_controller
*master
= i2c_dev_get_master(dev
);
1423 list_del(&dev
->common
.node
);
1425 if (master
->ops
->detach_i2c_dev
)
1426 master
->ops
->detach_i2c_dev(dev
);
1429 static void i3c_master_pre_assign_dyn_addr(struct i3c_dev_desc
*dev
)
1431 struct i3c_master_controller
*master
= i3c_dev_get_master(dev
);
1434 if (!dev
->boardinfo
|| !dev
->boardinfo
->init_dyn_addr
||
1435 !dev
->boardinfo
->static_addr
)
1438 ret
= i3c_master_setdasa_locked(master
, dev
->info
.static_addr
,
1439 dev
->boardinfo
->init_dyn_addr
);
1443 dev
->info
.dyn_addr
= dev
->boardinfo
->init_dyn_addr
;
1444 ret
= i3c_master_reattach_i3c_dev(dev
, 0);
1448 ret
= i3c_master_retrieve_dev_info(dev
);
1455 i3c_master_rstdaa_locked(master
, dev
->boardinfo
->init_dyn_addr
);
1459 i3c_master_register_new_i3c_devs(struct i3c_master_controller
*master
)
1461 struct i3c_dev_desc
*desc
;
1464 if (!master
->init_done
)
1467 i3c_bus_for_each_i3cdev(&master
->bus
, desc
) {
1468 if (desc
->dev
|| !desc
->info
.dyn_addr
|| desc
== master
->this)
1471 desc
->dev
= kzalloc(sizeof(*desc
->dev
), GFP_KERNEL
);
1475 desc
->dev
->bus
= &master
->bus
;
1476 desc
->dev
->desc
= desc
;
1477 desc
->dev
->dev
.parent
= &master
->dev
;
1478 desc
->dev
->dev
.type
= &i3c_device_type
;
1479 desc
->dev
->dev
.bus
= &i3c_bus_type
;
1480 desc
->dev
->dev
.release
= i3c_device_release
;
1481 dev_set_name(&desc
->dev
->dev
, "%d-%llx", master
->bus
.id
,
1484 if (desc
->boardinfo
)
1485 desc
->dev
->dev
.of_node
= desc
->boardinfo
->of_node
;
1487 ret
= device_register(&desc
->dev
->dev
);
1489 dev_err(&master
->dev
,
1490 "Failed to add I3C device (err = %d)\n", ret
);
1495 * i3c_master_do_daa() - do a DAA (Dynamic Address Assignment)
1496 * @master: master doing the DAA
1498 * This function is instantiating an I3C device object and adding it to the
1499 * I3C device list. All device information are automatically retrieved using
1500 * standard CCC commands.
1502 * The I3C device object is returned in case the master wants to attach
1503 * private data to it using i3c_dev_set_master_data().
1505 * This function must be called with the bus lock held in write mode.
1507 * Return: a 0 in case of success, an negative error code otherwise.
1509 int i3c_master_do_daa(struct i3c_master_controller
*master
)
1513 i3c_bus_maintenance_lock(&master
->bus
);
1514 ret
= master
->ops
->do_daa(master
);
1515 i3c_bus_maintenance_unlock(&master
->bus
);
1520 i3c_bus_normaluse_lock(&master
->bus
);
1521 i3c_master_register_new_i3c_devs(master
);
1522 i3c_bus_normaluse_unlock(&master
->bus
);
1526 EXPORT_SYMBOL_GPL(i3c_master_do_daa
);
1529 * i3c_master_set_info() - set master device information
1530 * @master: master used to send frames on the bus
1531 * @info: I3C device information
1533 * Set master device info. This should be called from
1534 * &i3c_master_controller_ops->bus_init().
1536 * Not all &i3c_device_info fields are meaningful for a master device.
1537 * Here is a list of fields that should be properly filled:
1539 * - &i3c_device_info->dyn_addr
1540 * - &i3c_device_info->bcr
1541 * - &i3c_device_info->dcr
1542 * - &i3c_device_info->pid
1543 * - &i3c_device_info->hdr_cap if %I3C_BCR_HDR_CAP bit is set in
1544 * &i3c_device_info->bcr
1546 * This function must be called with the bus lock held in maintenance mode.
1548 * Return: 0 if @info contains valid information (not every piece of
1549 * information can be checked, but we can at least make sure @info->dyn_addr
1550 * and @info->bcr are correct), -EINVAL otherwise.
1552 int i3c_master_set_info(struct i3c_master_controller
*master
,
1553 const struct i3c_device_info
*info
)
1555 struct i3c_dev_desc
*i3cdev
;
1558 if (!i3c_bus_dev_addr_is_avail(&master
->bus
, info
->dyn_addr
))
1561 if (I3C_BCR_DEVICE_ROLE(info
->bcr
) == I3C_BCR_I3C_MASTER
&&
1568 i3cdev
= i3c_master_alloc_i3c_dev(master
, info
);
1570 return PTR_ERR(i3cdev
);
1572 master
->this = i3cdev
;
1573 master
->bus
.cur_master
= master
->this;
1575 ret
= i3c_master_attach_i3c_dev(master
, i3cdev
);
1582 i3c_master_free_i3c_dev(i3cdev
);
1586 EXPORT_SYMBOL_GPL(i3c_master_set_info
);
1588 static void i3c_master_detach_free_devs(struct i3c_master_controller
*master
)
1590 struct i3c_dev_desc
*i3cdev
, *i3ctmp
;
1591 struct i2c_dev_desc
*i2cdev
, *i2ctmp
;
1593 list_for_each_entry_safe(i3cdev
, i3ctmp
, &master
->bus
.devs
.i3c
,
1595 i3c_master_detach_i3c_dev(i3cdev
);
1597 if (i3cdev
->boardinfo
&& i3cdev
->boardinfo
->init_dyn_addr
)
1598 i3c_bus_set_addr_slot_status(&master
->bus
,
1599 i3cdev
->boardinfo
->init_dyn_addr
,
1600 I3C_ADDR_SLOT_FREE
);
1602 i3c_master_free_i3c_dev(i3cdev
);
1605 list_for_each_entry_safe(i2cdev
, i2ctmp
, &master
->bus
.devs
.i2c
,
1607 i3c_master_detach_i2c_dev(i2cdev
);
1608 i3c_bus_set_addr_slot_status(&master
->bus
,
1609 i2cdev
->boardinfo
->base
.addr
,
1610 I3C_ADDR_SLOT_FREE
);
1611 i3c_master_free_i2c_dev(i2cdev
);
1616 * i3c_master_bus_init() - initialize an I3C bus
1617 * @master: main master initializing the bus
1619 * This function is following all initialisation steps described in the I3C
1622 * 1. Attach I2C and statically defined I3C devs to the master so that the
1623 * master can fill its internal device table appropriately
1625 * 2. Call &i3c_master_controller_ops->bus_init() method to initialize
1626 * the master controller. That's usually where the bus mode is selected
1627 * (pure bus or mixed fast/slow bus)
1629 * 3. Instruct all devices on the bus to drop their dynamic address. This is
1630 * particularly important when the bus was previously configured by someone
1631 * else (for example the bootloader)
1633 * 4. Disable all slave events.
1635 * 5. Pre-assign dynamic addresses requested by the FW with SETDASA for I3C
1636 * devices that have a static address
1638 * 6. Do a DAA (Dynamic Address Assignment) to assign dynamic addresses to all
1639 * remaining I3C devices
1641 * Once this is done, all I3C and I2C devices should be usable.
1643 * Return: a 0 in case of success, an negative error code otherwise.
1645 static int i3c_master_bus_init(struct i3c_master_controller
*master
)
1647 enum i3c_addr_slot_status status
;
1648 struct i2c_dev_boardinfo
*i2cboardinfo
;
1649 struct i3c_dev_boardinfo
*i3cboardinfo
;
1650 struct i3c_dev_desc
*i3cdev
;
1651 struct i2c_dev_desc
*i2cdev
;
1655 * First attach all devices with static definitions provided by the
1658 list_for_each_entry(i2cboardinfo
, &master
->boardinfo
.i2c
, node
) {
1659 status
= i3c_bus_get_addr_slot_status(&master
->bus
,
1660 i2cboardinfo
->base
.addr
);
1661 if (status
!= I3C_ADDR_SLOT_FREE
) {
1663 goto err_detach_devs
;
1666 i3c_bus_set_addr_slot_status(&master
->bus
,
1667 i2cboardinfo
->base
.addr
,
1668 I3C_ADDR_SLOT_I2C_DEV
);
1670 i2cdev
= i3c_master_alloc_i2c_dev(master
, i2cboardinfo
);
1671 if (IS_ERR(i2cdev
)) {
1672 ret
= PTR_ERR(i2cdev
);
1673 goto err_detach_devs
;
1676 ret
= i3c_master_attach_i2c_dev(master
, i2cdev
);
1678 i3c_master_free_i2c_dev(i2cdev
);
1679 goto err_detach_devs
;
1682 list_for_each_entry(i3cboardinfo
, &master
->boardinfo
.i3c
, node
) {
1683 struct i3c_device_info info
= {
1684 .static_addr
= i3cboardinfo
->static_addr
,
1687 if (i3cboardinfo
->init_dyn_addr
) {
1688 status
= i3c_bus_get_addr_slot_status(&master
->bus
,
1689 i3cboardinfo
->init_dyn_addr
);
1690 if (status
!= I3C_ADDR_SLOT_FREE
) {
1692 goto err_detach_devs
;
1696 i3cdev
= i3c_master_alloc_i3c_dev(master
, &info
);
1697 if (IS_ERR(i3cdev
)) {
1698 ret
= PTR_ERR(i3cdev
);
1699 goto err_detach_devs
;
1702 i3cdev
->boardinfo
= i3cboardinfo
;
1704 ret
= i3c_master_attach_i3c_dev(master
, i3cdev
);
1706 i3c_master_free_i3c_dev(i3cdev
);
1707 goto err_detach_devs
;
1712 * Now execute the controller specific ->bus_init() routine, which
1713 * might configure its internal logic to match the bus limitations.
1715 ret
= master
->ops
->bus_init(master
);
1717 goto err_detach_devs
;
1720 * The master device should have been instantiated in ->bus_init(),
1721 * complain if this was not the case.
1723 if (!master
->this) {
1724 dev_err(&master
->dev
,
1725 "master_set_info() was not called in ->bus_init()\n");
1727 goto err_bus_cleanup
;
1731 * Reset all dynamic address that may have been assigned before
1732 * (assigned by the bootloader for example).
1734 ret
= i3c_master_rstdaa_locked(master
, I3C_BROADCAST_ADDR
);
1735 if (ret
&& ret
!= I3C_ERROR_M2
)
1736 goto err_bus_cleanup
;
1738 /* Disable all slave events before starting DAA. */
1739 ret
= i3c_master_disec_locked(master
, I3C_BROADCAST_ADDR
,
1740 I3C_CCC_EVENT_SIR
| I3C_CCC_EVENT_MR
|
1742 if (ret
&& ret
!= I3C_ERROR_M2
)
1743 goto err_bus_cleanup
;
1746 * Pre-assign dynamic address and retrieve device information if
1749 i3c_bus_for_each_i3cdev(&master
->bus
, i3cdev
)
1750 i3c_master_pre_assign_dyn_addr(i3cdev
);
1752 ret
= i3c_master_do_daa(master
);
1759 i3c_master_rstdaa_locked(master
, I3C_BROADCAST_ADDR
);
1762 if (master
->ops
->bus_cleanup
)
1763 master
->ops
->bus_cleanup(master
);
1766 i3c_master_detach_free_devs(master
);
1771 static void i3c_master_bus_cleanup(struct i3c_master_controller
*master
)
1773 if (master
->ops
->bus_cleanup
)
1774 master
->ops
->bus_cleanup(master
);
1776 i3c_master_detach_free_devs(master
);
1779 static struct i3c_dev_desc
*
1780 i3c_master_search_i3c_dev_duplicate(struct i3c_dev_desc
*refdev
)
1782 struct i3c_master_controller
*master
= refdev
->common
.master
;
1783 struct i3c_dev_desc
*i3cdev
;
1785 i3c_bus_for_each_i3cdev(&master
->bus
, i3cdev
) {
1786 if (i3cdev
!= refdev
&& i3cdev
->info
.pid
== refdev
->info
.pid
)
1794 * i3c_master_add_i3c_dev_locked() - add an I3C slave to the bus
1795 * @master: master used to send frames on the bus
1796 * @addr: I3C slave dynamic address assigned to the device
1798 * This function is instantiating an I3C device object and adding it to the
1799 * I3C device list. All device information are automatically retrieved using
1800 * standard CCC commands.
1802 * The I3C device object is returned in case the master wants to attach
1803 * private data to it using i3c_dev_set_master_data().
1805 * This function must be called with the bus lock held in write mode.
1807 * Return: a 0 in case of success, an negative error code otherwise.
1809 int i3c_master_add_i3c_dev_locked(struct i3c_master_controller
*master
,
1812 struct i3c_device_info info
= { .dyn_addr
= addr
};
1813 struct i3c_dev_desc
*newdev
, *olddev
;
1814 u8 old_dyn_addr
= addr
, expected_dyn_addr
;
1815 struct i3c_ibi_setup ibireq
= { };
1816 bool enable_ibi
= false;
1822 newdev
= i3c_master_alloc_i3c_dev(master
, &info
);
1824 return PTR_ERR(newdev
);
1826 ret
= i3c_master_attach_i3c_dev(master
, newdev
);
1830 ret
= i3c_master_retrieve_dev_info(newdev
);
1832 goto err_detach_dev
;
1834 olddev
= i3c_master_search_i3c_dev_duplicate(newdev
);
1836 newdev
->boardinfo
= olddev
->boardinfo
;
1837 newdev
->info
.static_addr
= olddev
->info
.static_addr
;
1838 newdev
->dev
= olddev
->dev
;
1840 newdev
->dev
->desc
= newdev
;
1843 * We need to restore the IBI state too, so let's save the
1844 * IBI information and try to restore them after olddev has
1845 * been detached+released and its IBI has been stopped and
1846 * the associated resources have been freed.
1848 mutex_lock(&olddev
->ibi_lock
);
1850 ibireq
.handler
= olddev
->ibi
->handler
;
1851 ibireq
.max_payload_len
= olddev
->ibi
->max_payload_len
;
1852 ibireq
.num_slots
= olddev
->ibi
->num_slots
;
1854 if (olddev
->ibi
->enabled
) {
1856 i3c_dev_disable_ibi_locked(olddev
);
1859 i3c_dev_free_ibi_locked(olddev
);
1861 mutex_unlock(&olddev
->ibi_lock
);
1863 old_dyn_addr
= olddev
->info
.dyn_addr
;
1865 i3c_master_detach_i3c_dev(olddev
);
1866 i3c_master_free_i3c_dev(olddev
);
1869 ret
= i3c_master_reattach_i3c_dev(newdev
, old_dyn_addr
);
1871 goto err_detach_dev
;
1874 * Depending on our previous state, the expected dynamic address might
1876 * - if the device already had a dynamic address assigned, let's try to
1878 * - if the device did not have a dynamic address and the firmware
1879 * requested a specific address, pick this one
1880 * - in any other case, keep the address automatically assigned by the
1883 if (old_dyn_addr
&& old_dyn_addr
!= newdev
->info
.dyn_addr
)
1884 expected_dyn_addr
= old_dyn_addr
;
1885 else if (newdev
->boardinfo
&& newdev
->boardinfo
->init_dyn_addr
)
1886 expected_dyn_addr
= newdev
->boardinfo
->init_dyn_addr
;
1888 expected_dyn_addr
= newdev
->info
.dyn_addr
;
1890 if (newdev
->info
.dyn_addr
!= expected_dyn_addr
) {
1892 * Try to apply the expected dynamic address. If it fails, keep
1893 * the address assigned by the master.
1895 ret
= i3c_master_setnewda_locked(master
,
1896 newdev
->info
.dyn_addr
,
1899 old_dyn_addr
= newdev
->info
.dyn_addr
;
1900 newdev
->info
.dyn_addr
= expected_dyn_addr
;
1901 i3c_master_reattach_i3c_dev(newdev
, old_dyn_addr
);
1903 dev_err(&master
->dev
,
1904 "Failed to assign reserved/old address to device %d%llx",
1905 master
->bus
.id
, newdev
->info
.pid
);
1910 * Now is time to try to restore the IBI setup. If we're lucky,
1911 * everything works as before, otherwise, all we can do is complain.
1912 * FIXME: maybe we should add callback to inform the driver that it
1913 * should request the IBI again instead of trying to hide that from
1916 if (ibireq
.handler
) {
1917 mutex_lock(&newdev
->ibi_lock
);
1918 ret
= i3c_dev_request_ibi_locked(newdev
, &ibireq
);
1920 dev_err(&master
->dev
,
1921 "Failed to request IBI on device %d-%llx",
1922 master
->bus
.id
, newdev
->info
.pid
);
1923 } else if (enable_ibi
) {
1924 ret
= i3c_dev_enable_ibi_locked(newdev
);
1926 dev_err(&master
->dev
,
1927 "Failed to re-enable IBI on device %d-%llx",
1928 master
->bus
.id
, newdev
->info
.pid
);
1930 mutex_unlock(&newdev
->ibi_lock
);
1936 if (newdev
->dev
&& newdev
->dev
->desc
)
1937 newdev
->dev
->desc
= NULL
;
1939 i3c_master_detach_i3c_dev(newdev
);
1942 i3c_master_free_i3c_dev(newdev
);
1946 EXPORT_SYMBOL_GPL(i3c_master_add_i3c_dev_locked
);
1948 #define OF_I3C_REG1_IS_I2C_DEV BIT(31)
1951 of_i3c_master_add_i2c_boardinfo(struct i3c_master_controller
*master
,
1952 struct device_node
*node
, u32
*reg
)
1954 struct i2c_dev_boardinfo
*boardinfo
;
1955 struct device
*dev
= &master
->dev
;
1958 boardinfo
= devm_kzalloc(dev
, sizeof(*boardinfo
), GFP_KERNEL
);
1962 ret
= of_i2c_get_board_info(dev
, node
, &boardinfo
->base
);
1966 /* LVR is encoded in reg[2]. */
1967 boardinfo
->lvr
= reg
[2];
1969 if (boardinfo
->lvr
& I3C_LVR_I2C_FM_MODE
)
1970 master
->bus
.scl_rate
.i2c
= I3C_BUS_I2C_FM_SCL_RATE
;
1972 list_add_tail(&boardinfo
->node
, &master
->boardinfo
.i2c
);
1979 of_i3c_master_add_i3c_boardinfo(struct i3c_master_controller
*master
,
1980 struct device_node
*node
, u32
*reg
)
1982 struct i3c_dev_boardinfo
*boardinfo
;
1983 struct device
*dev
= &master
->dev
;
1984 enum i3c_addr_slot_status addrstatus
;
1985 u32 init_dyn_addr
= 0;
1987 boardinfo
= devm_kzalloc(dev
, sizeof(*boardinfo
), GFP_KERNEL
);
1992 if (reg
[0] > I3C_MAX_ADDR
)
1995 addrstatus
= i3c_bus_get_addr_slot_status(&master
->bus
,
1997 if (addrstatus
!= I3C_ADDR_SLOT_FREE
)
2001 boardinfo
->static_addr
= reg
[0];
2003 if (!of_property_read_u32(node
, "assigned-address", &init_dyn_addr
)) {
2004 if (init_dyn_addr
> I3C_MAX_ADDR
)
2007 addrstatus
= i3c_bus_get_addr_slot_status(&master
->bus
,
2009 if (addrstatus
!= I3C_ADDR_SLOT_FREE
)
2013 boardinfo
->pid
= ((u64
)reg
[1] << 32) | reg
[2];
2015 if ((boardinfo
->pid
& GENMASK_ULL(63, 48)) ||
2016 I3C_PID_RND_LOWER_32BITS(boardinfo
->pid
))
2019 boardinfo
->init_dyn_addr
= init_dyn_addr
;
2020 boardinfo
->of_node
= of_node_get(node
);
2021 list_add_tail(&boardinfo
->node
, &master
->boardinfo
.i3c
);
2026 static int of_i3c_master_add_dev(struct i3c_master_controller
*master
,
2027 struct device_node
*node
)
2032 if (!master
|| !node
)
2035 ret
= of_property_read_u32_array(node
, "reg", reg
, ARRAY_SIZE(reg
));
2040 * The manufacturer ID can't be 0. If reg[1] == 0 that means we're
2041 * dealing with an I2C device.
2044 ret
= of_i3c_master_add_i2c_boardinfo(master
, node
, reg
);
2046 ret
= of_i3c_master_add_i3c_boardinfo(master
, node
, reg
);
2051 static int of_populate_i3c_bus(struct i3c_master_controller
*master
)
2053 struct device
*dev
= &master
->dev
;
2054 struct device_node
*i3cbus_np
= dev
->of_node
;
2055 struct device_node
*node
;
2062 for_each_available_child_of_node(i3cbus_np
, node
) {
2063 ret
= of_i3c_master_add_dev(master
, node
);
2069 * The user might want to limit I2C and I3C speed in case some devices
2070 * on the bus are not supporting typical rates, or if the bus topology
2071 * prevents it from using max possible rate.
2073 if (!of_property_read_u32(i3cbus_np
, "i2c-scl-hz", &val
))
2074 master
->bus
.scl_rate
.i2c
= val
;
2076 if (!of_property_read_u32(i3cbus_np
, "i3c-scl-hz", &val
))
2077 master
->bus
.scl_rate
.i3c
= val
;
2082 static int i3c_master_i2c_adapter_xfer(struct i2c_adapter
*adap
,
2083 struct i2c_msg
*xfers
, int nxfers
)
2085 struct i3c_master_controller
*master
= i2c_adapter_to_i3c_master(adap
);
2086 struct i2c_dev_desc
*dev
;
2090 if (!xfers
|| !master
|| nxfers
<= 0)
2093 if (!master
->ops
->i2c_xfers
)
2096 /* Doing transfers to different devices is not supported. */
2097 addr
= xfers
[0].addr
;
2098 for (i
= 1; i
< nxfers
; i
++) {
2099 if (addr
!= xfers
[i
].addr
)
2103 i3c_bus_normaluse_lock(&master
->bus
);
2104 dev
= i3c_master_find_i2c_dev_by_addr(master
, addr
);
2108 ret
= master
->ops
->i2c_xfers(dev
, xfers
, nxfers
);
2109 i3c_bus_normaluse_unlock(&master
->bus
);
2111 return ret
? ret
: nxfers
;
2114 static u32
i3c_master_i2c_functionalities(struct i2c_adapter
*adap
)
2116 struct i3c_master_controller
*master
= i2c_adapter_to_i3c_master(adap
);
2118 return master
->ops
->i2c_funcs(master
);
2121 static const struct i2c_algorithm i3c_master_i2c_algo
= {
2122 .master_xfer
= i3c_master_i2c_adapter_xfer
,
2123 .functionality
= i3c_master_i2c_functionalities
,
2126 static int i3c_master_i2c_adapter_init(struct i3c_master_controller
*master
)
2128 struct i2c_adapter
*adap
= i3c_master_to_i2c_adapter(master
);
2129 struct i2c_dev_desc
*i2cdev
;
2132 adap
->dev
.parent
= master
->dev
.parent
;
2133 adap
->owner
= master
->dev
.parent
->driver
->owner
;
2134 adap
->algo
= &i3c_master_i2c_algo
;
2135 strncpy(adap
->name
, dev_name(master
->dev
.parent
), sizeof(adap
->name
));
2137 /* FIXME: Should we allow i3c masters to override these values? */
2138 adap
->timeout
= 1000;
2141 ret
= i2c_add_adapter(adap
);
2146 * We silently ignore failures here. The bus should keep working
2147 * correctly even if one or more i2c devices are not registered.
2149 i3c_bus_for_each_i2cdev(&master
->bus
, i2cdev
)
2150 i2cdev
->dev
= i2c_new_device(adap
, &i2cdev
->boardinfo
->base
);
2155 static void i3c_master_i2c_adapter_cleanup(struct i3c_master_controller
*master
)
2157 struct i2c_dev_desc
*i2cdev
;
2159 i2c_del_adapter(&master
->i2c
);
2161 i3c_bus_for_each_i2cdev(&master
->bus
, i2cdev
)
2165 static void i3c_master_unregister_i3c_devs(struct i3c_master_controller
*master
)
2167 struct i3c_dev_desc
*i3cdev
;
2169 i3c_bus_for_each_i3cdev(&master
->bus
, i3cdev
) {
2173 i3cdev
->dev
->desc
= NULL
;
2174 if (device_is_registered(&i3cdev
->dev
->dev
))
2175 device_unregister(&i3cdev
->dev
->dev
);
2177 put_device(&i3cdev
->dev
->dev
);
2183 * i3c_master_queue_ibi() - Queue an IBI
2184 * @dev: the device this IBI is coming from
2185 * @slot: the IBI slot used to store the payload
2187 * Queue an IBI to the controller workqueue. The IBI handler attached to
2188 * the dev will be called from a workqueue context.
2190 void i3c_master_queue_ibi(struct i3c_dev_desc
*dev
, struct i3c_ibi_slot
*slot
)
2192 atomic_inc(&dev
->ibi
->pending_ibis
);
2193 queue_work(dev
->common
.master
->wq
, &slot
->work
);
2195 EXPORT_SYMBOL_GPL(i3c_master_queue_ibi
);
2197 static void i3c_master_handle_ibi(struct work_struct
*work
)
2199 struct i3c_ibi_slot
*slot
= container_of(work
, struct i3c_ibi_slot
,
2201 struct i3c_dev_desc
*dev
= slot
->dev
;
2202 struct i3c_master_controller
*master
= i3c_dev_get_master(dev
);
2203 struct i3c_ibi_payload payload
;
2205 payload
.data
= slot
->data
;
2206 payload
.len
= slot
->len
;
2209 dev
->ibi
->handler(dev
->dev
, &payload
);
2211 master
->ops
->recycle_ibi_slot(dev
, slot
);
2212 if (atomic_dec_and_test(&dev
->ibi
->pending_ibis
))
2213 complete(&dev
->ibi
->all_ibis_handled
);
2216 static void i3c_master_init_ibi_slot(struct i3c_dev_desc
*dev
,
2217 struct i3c_ibi_slot
*slot
)
2220 INIT_WORK(&slot
->work
, i3c_master_handle_ibi
);
2223 struct i3c_generic_ibi_slot
{
2224 struct list_head node
;
2225 struct i3c_ibi_slot base
;
2228 struct i3c_generic_ibi_pool
{
2230 unsigned int num_slots
;
2231 struct i3c_generic_ibi_slot
*slots
;
2233 struct list_head free_slots
;
2234 struct list_head pending
;
2238 * i3c_generic_ibi_free_pool() - Free a generic IBI pool
2239 * @pool: the IBI pool to free
2241 * Free all IBI slots allated by a generic IBI pool.
2243 void i3c_generic_ibi_free_pool(struct i3c_generic_ibi_pool
*pool
)
2245 struct i3c_generic_ibi_slot
*slot
;
2246 unsigned int nslots
= 0;
2248 while (!list_empty(&pool
->free_slots
)) {
2249 slot
= list_first_entry(&pool
->free_slots
,
2250 struct i3c_generic_ibi_slot
, node
);
2251 list_del(&slot
->node
);
2256 * If the number of freed slots is not equal to the number of allocated
2257 * slots we have a leak somewhere.
2259 WARN_ON(nslots
!= pool
->num_slots
);
2261 kfree(pool
->payload_buf
);
2265 EXPORT_SYMBOL_GPL(i3c_generic_ibi_free_pool
);
2268 * i3c_generic_ibi_alloc_pool() - Create a generic IBI pool
2269 * @dev: the device this pool will be used for
2270 * @req: IBI setup request describing what the device driver expects
2272 * Create a generic IBI pool based on the information provided in @req.
2274 * Return: a valid IBI pool in case of success, an ERR_PTR() otherwise.
2276 struct i3c_generic_ibi_pool
*
2277 i3c_generic_ibi_alloc_pool(struct i3c_dev_desc
*dev
,
2278 const struct i3c_ibi_setup
*req
)
2280 struct i3c_generic_ibi_pool
*pool
;
2281 struct i3c_generic_ibi_slot
*slot
;
2285 pool
= kzalloc(sizeof(*pool
), GFP_KERNEL
);
2287 return ERR_PTR(-ENOMEM
);
2289 spin_lock_init(&pool
->lock
);
2290 INIT_LIST_HEAD(&pool
->free_slots
);
2291 INIT_LIST_HEAD(&pool
->pending
);
2293 pool
->slots
= kcalloc(req
->num_slots
, sizeof(*slot
), GFP_KERNEL
);
2299 if (req
->max_payload_len
) {
2300 pool
->payload_buf
= kcalloc(req
->num_slots
,
2301 req
->max_payload_len
, GFP_KERNEL
);
2302 if (!pool
->payload_buf
) {
2308 for (i
= 0; i
< req
->num_slots
; i
++) {
2309 slot
= &pool
->slots
[i
];
2310 i3c_master_init_ibi_slot(dev
, &slot
->base
);
2312 if (req
->max_payload_len
)
2313 slot
->base
.data
= pool
->payload_buf
+
2314 (i
* req
->max_payload_len
);
2316 list_add_tail(&slot
->node
, &pool
->free_slots
);
2323 i3c_generic_ibi_free_pool(pool
);
2324 return ERR_PTR(ret
);
2326 EXPORT_SYMBOL_GPL(i3c_generic_ibi_alloc_pool
);
2329 * i3c_generic_ibi_get_free_slot() - Get a free slot from a generic IBI pool
2330 * @pool: the pool to query an IBI slot on
2332 * Search for a free slot in a generic IBI pool.
2333 * The slot should be returned to the pool using i3c_generic_ibi_recycle_slot()
2334 * when it's no longer needed.
2336 * Return: a pointer to a free slot, or NULL if there's no free slot available.
2338 struct i3c_ibi_slot
*
2339 i3c_generic_ibi_get_free_slot(struct i3c_generic_ibi_pool
*pool
)
2341 struct i3c_generic_ibi_slot
*slot
;
2342 unsigned long flags
;
2344 spin_lock_irqsave(&pool
->lock
, flags
);
2345 slot
= list_first_entry_or_null(&pool
->free_slots
,
2346 struct i3c_generic_ibi_slot
, node
);
2348 list_del(&slot
->node
);
2349 spin_unlock_irqrestore(&pool
->lock
, flags
);
2351 return slot
? &slot
->base
: NULL
;
2353 EXPORT_SYMBOL_GPL(i3c_generic_ibi_get_free_slot
);
2356 * i3c_generic_ibi_recycle_slot() - Return a slot to a generic IBI pool
2357 * @pool: the pool to return the IBI slot to
2358 * @s: IBI slot to recycle
2360 * Add an IBI slot back to its generic IBI pool. Should be called from the
2361 * master driver struct_master_controller_ops->recycle_ibi() method.
2363 void i3c_generic_ibi_recycle_slot(struct i3c_generic_ibi_pool
*pool
,
2364 struct i3c_ibi_slot
*s
)
2366 struct i3c_generic_ibi_slot
*slot
;
2367 unsigned long flags
;
2372 slot
= container_of(s
, struct i3c_generic_ibi_slot
, base
);
2373 spin_lock_irqsave(&pool
->lock
, flags
);
2374 list_add_tail(&slot
->node
, &pool
->free_slots
);
2375 spin_unlock_irqrestore(&pool
->lock
, flags
);
2377 EXPORT_SYMBOL_GPL(i3c_generic_ibi_recycle_slot
);
2379 static int i3c_master_check_ops(const struct i3c_master_controller_ops
*ops
)
2381 if (!ops
|| !ops
->bus_init
|| !ops
->priv_xfers
||
2382 !ops
->send_ccc_cmd
|| !ops
->do_daa
|| !ops
->i2c_xfers
||
2386 if (ops
->request_ibi
&&
2387 (!ops
->enable_ibi
|| !ops
->disable_ibi
|| !ops
->free_ibi
||
2388 !ops
->recycle_ibi_slot
))
2395 * i3c_master_register() - register an I3C master
2396 * @master: master used to send frames on the bus
2397 * @parent: the parent device (the one that provides this I3C master
2399 * @ops: the master controller operations
2400 * @secondary: true if you are registering a secondary master. Will return
2401 * -ENOTSUPP if set to true since secondary masters are not yet
2404 * This function takes care of everything for you:
2406 * - creates and initializes the I3C bus
2407 * - populates the bus with static I2C devs if @parent->of_node is not
2409 * - registers all I3C devices added by the controller during bus
2411 * - registers the I2C adapter and all I2C devices
2413 * Return: 0 in case of success, a negative error code otherwise.
2415 int i3c_master_register(struct i3c_master_controller
*master
,
2416 struct device
*parent
,
2417 const struct i3c_master_controller_ops
*ops
,
2420 struct i3c_bus
*i3cbus
= i3c_master_get_bus(master
);
2421 enum i3c_bus_mode mode
= I3C_BUS_MODE_PURE
;
2422 struct i2c_dev_boardinfo
*i2cbi
;
2425 /* We do not support secondary masters yet. */
2429 ret
= i3c_master_check_ops(ops
);
2433 master
->dev
.parent
= parent
;
2434 master
->dev
.of_node
= of_node_get(parent
->of_node
);
2435 master
->dev
.bus
= &i3c_bus_type
;
2436 master
->dev
.type
= &i3c_masterdev_type
;
2437 master
->dev
.release
= i3c_masterdev_release
;
2439 master
->secondary
= secondary
;
2440 INIT_LIST_HEAD(&master
->boardinfo
.i2c
);
2441 INIT_LIST_HEAD(&master
->boardinfo
.i3c
);
2443 ret
= i3c_bus_init(i3cbus
);
2447 device_initialize(&master
->dev
);
2448 dev_set_name(&master
->dev
, "i3c-%d", i3cbus
->id
);
2450 ret
= of_populate_i3c_bus(master
);
2454 list_for_each_entry(i2cbi
, &master
->boardinfo
.i2c
, node
) {
2455 switch (i2cbi
->lvr
& I3C_LVR_I2C_INDEX_MASK
) {
2456 case I3C_LVR_I2C_INDEX(0):
2457 if (mode
< I3C_BUS_MODE_MIXED_FAST
)
2458 mode
= I3C_BUS_MODE_MIXED_FAST
;
2460 case I3C_LVR_I2C_INDEX(1):
2461 case I3C_LVR_I2C_INDEX(2):
2462 if (mode
< I3C_BUS_MODE_MIXED_SLOW
)
2463 mode
= I3C_BUS_MODE_MIXED_SLOW
;
2471 ret
= i3c_bus_set_mode(i3cbus
, mode
);
2475 master
->wq
= alloc_workqueue("%s", 0, 0, dev_name(parent
));
2481 ret
= i3c_master_bus_init(master
);
2485 ret
= device_add(&master
->dev
);
2487 goto err_cleanup_bus
;
2490 * Expose our I3C bus as an I2C adapter so that I2C devices are exposed
2491 * through the I2C subsystem.
2493 ret
= i3c_master_i2c_adapter_init(master
);
2498 * We're done initializing the bus and the controller, we can now
2499 * register I3C devices dicovered during the initial DAA.
2501 master
->init_done
= true;
2502 i3c_bus_normaluse_lock(&master
->bus
);
2503 i3c_master_register_new_i3c_devs(master
);
2504 i3c_bus_normaluse_unlock(&master
->bus
);
2509 device_del(&master
->dev
);
2512 i3c_master_bus_cleanup(master
);
2515 put_device(&master
->dev
);
2519 EXPORT_SYMBOL_GPL(i3c_master_register
);
2522 * i3c_master_unregister() - unregister an I3C master
2523 * @master: master used to send frames on the bus
2525 * Basically undo everything done in i3c_master_register().
2527 * Return: 0 in case of success, a negative error code otherwise.
2529 int i3c_master_unregister(struct i3c_master_controller
*master
)
2531 i3c_master_i2c_adapter_cleanup(master
);
2532 i3c_master_unregister_i3c_devs(master
);
2533 i3c_master_bus_cleanup(master
);
2534 device_unregister(&master
->dev
);
2538 EXPORT_SYMBOL_GPL(i3c_master_unregister
);
2540 int i3c_dev_do_priv_xfers_locked(struct i3c_dev_desc
*dev
,
2541 struct i3c_priv_xfer
*xfers
,
2544 struct i3c_master_controller
*master
;
2549 master
= i3c_dev_get_master(dev
);
2550 if (!master
|| !xfers
)
2553 if (!master
->ops
->priv_xfers
)
2556 return master
->ops
->priv_xfers(dev
, xfers
, nxfers
);
2559 int i3c_dev_disable_ibi_locked(struct i3c_dev_desc
*dev
)
2561 struct i3c_master_controller
*master
;
2567 master
= i3c_dev_get_master(dev
);
2568 ret
= master
->ops
->disable_ibi(dev
);
2572 reinit_completion(&dev
->ibi
->all_ibis_handled
);
2573 if (atomic_read(&dev
->ibi
->pending_ibis
))
2574 wait_for_completion(&dev
->ibi
->all_ibis_handled
);
2576 dev
->ibi
->enabled
= false;
2581 int i3c_dev_enable_ibi_locked(struct i3c_dev_desc
*dev
)
2583 struct i3c_master_controller
*master
= i3c_dev_get_master(dev
);
2589 ret
= master
->ops
->enable_ibi(dev
);
2591 dev
->ibi
->enabled
= true;
2596 int i3c_dev_request_ibi_locked(struct i3c_dev_desc
*dev
,
2597 const struct i3c_ibi_setup
*req
)
2599 struct i3c_master_controller
*master
= i3c_dev_get_master(dev
);
2600 struct i3c_device_ibi_info
*ibi
;
2603 if (!master
->ops
->request_ibi
)
2609 ibi
= kzalloc(sizeof(*ibi
), GFP_KERNEL
);
2613 atomic_set(&ibi
->pending_ibis
, 0);
2614 init_completion(&ibi
->all_ibis_handled
);
2615 ibi
->handler
= req
->handler
;
2616 ibi
->max_payload_len
= req
->max_payload_len
;
2617 ibi
->num_slots
= req
->num_slots
;
2620 ret
= master
->ops
->request_ibi(dev
, req
);
2629 void i3c_dev_free_ibi_locked(struct i3c_dev_desc
*dev
)
2631 struct i3c_master_controller
*master
= i3c_dev_get_master(dev
);
2636 if (WARN_ON(dev
->ibi
->enabled
))
2637 WARN_ON(i3c_dev_disable_ibi_locked(dev
));
2639 master
->ops
->free_ibi(dev
);
2644 static int __init
i3c_init(void)
2646 return bus_register(&i3c_bus_type
);
2648 subsys_initcall(i3c_init
);
2650 static void __exit
i3c_exit(void)
2652 idr_destroy(&i3c_bus_idr
);
2653 bus_unregister(&i3c_bus_type
);
2655 module_exit(i3c_exit
);
2657 MODULE_AUTHOR("Boris Brezillon <boris.brezillon@bootlin.com>");
2658 MODULE_DESCRIPTION("I3C core");
2659 MODULE_LICENSE("GPL v2");