From: Dinesh Maniyam Date: Wed, 6 Aug 2025 04:32:26 +0000 (+0800) Subject: drivers: i3c: Add i3c uclass driver. X-Git-Tag: v2025.10-rc2~14^2~9 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=e49a513760893082313b8369dc7b08f98f1055e6;p=pandora-u-boot.git drivers: i3c: Add i3c uclass driver. Enable i3c general uclass driver. This uclass driver will have genaral read and write api to call the specific i3c driver. Signed-off-by: Dinesh Maniyam --- diff --git a/doc/api/i3c.rst b/doc/api/i3c.rst new file mode 100644 index 00000000000..7906face080 --- /dev/null +++ b/doc/api/i3c.rst @@ -0,0 +1,8 @@ +.. SPDX-License-Identifier: GPL-2.0+ +.. Copyright (C) 2025 Altera Corporation + +I3C Subsystem +=============== + +.. kernel-doc:: include/i3c.h + :internal: diff --git a/doc/api/index.rst b/doc/api/index.rst index cf9d21e4c1c..d97630e7671 100644 --- a/doc/api/index.rst +++ b/doc/api/index.rst @@ -15,6 +15,7 @@ U-Boot API documentation fs getopt interrupt + i3c led linker_lists logging diff --git a/drivers/i3c/i3c-uclass.c b/drivers/i3c/i3c-uclass.c new file mode 100644 index 00000000000..72944424c1d --- /dev/null +++ b/drivers/i3c/i3c-uclass.c @@ -0,0 +1,38 @@ +// SPDX-License-Identifier: GPL-2.0 +/* + * Copyright (C) 2025 Altera Corporation + */ + +#include +#include +#include +#include +#include +#include + +int dm_i3c_read(struct udevice *dev, u32 dev_number, + u8 *buf, u32 num_bytes) +{ + struct dm_i3c_ops *ops = i3c_get_ops(dev); + + if (!ops->read) + return -ENOSYS; + + return ops->read(dev, dev_number, buf, num_bytes); +} + +int dm_i3c_write(struct udevice *dev, u32 dev_number, + u8 *buf, u32 num_bytes) +{ + struct dm_i3c_ops *ops = i3c_get_ops(dev); + + if (!ops->write) + return -ENOSYS; + + return ops->write(dev, dev_number, buf, num_bytes); +} + +UCLASS_DRIVER(i3c) = { + .id = UCLASS_I3C, + .name = "i3c", +}; diff --git a/include/dw-i3c.h b/include/dw-i3c.h index e37fd4dc325..920f18bccb4 100644 --- a/include/dw-i3c.h +++ b/include/dw-i3c.h @@ -7,6 +7,7 @@ #define _DW_I3C_H_ #include +#include #include #include #include diff --git a/include/i3c.h b/include/i3c.h new file mode 100644 index 00000000000..59c787c21db --- /dev/null +++ b/include/i3c.h @@ -0,0 +1,67 @@ +/* SPDX-License-Identifier: GPL-2.0+ */ +/* + * Copyright (C) 2025 Altera Corporation + */ + +#include + +/** + * struct dm_i3c_ops - Driver operations for the I3C uclass + * + * This structure defines the set of operations that a driver must implement + * for interacting with an I3C controller in U-Boot. + * + */ +struct dm_i3c_ops { +/** + * @i3c_xfers: Transfer messages in I3C + * + * @dev: I3C controller device instance. + * @xfers: List of I3C private SDR transfer messages. + * @nxfers: The number of messages to transfer. + * + * Return: 0 on success, negative error code on failure. + */ + int (*i3c_xfers)(struct i3c_dev_desc *dev, + struct i3c_priv_xfer *xfers, + u32 nxfers); +}; + +/** + * i3c_get_ops - Retrieve the I3C operation functions for a device + * @dev: The I3C controller device. + * + * This macro returns the set of operation functions (`dm_i3c_ops`) implemented + * by the driver associated with the specified device. These operations define + * how the driver performs I3C communication tasks such as reading, writing, + * and message transfers. + * + * Return: The I3C operation structure for the device. + */ +#define i3c_get_ops(dev) ((struct dm_i3c_ops *)(dev)->driver->ops) + +/** + * dm_i3c_write - Perform I3C write transaction + * + * @dev: Chip to write to + * @dev_number: The target device number from the driver model. + * @buf: Buffer containing data to write + * @num_bytes: Number of bytes to write. + * + * Return: 0 on success, negative error code on failure. + */ +int dm_i3c_write(struct udevice *dev, u32 dev_number, + u8 *buf, u32 num_bytes); + +/** + * dm_i3c_read - Perform I3C read transaction + * + * @dev: Chip to read from + * @dev_number: The target device number from the driver model. + * @buf: Place to put data + * @num_bytes: Number of bytes to read. + * + * Return: 0 on success, negative error code on failure. + */ +int dm_i3c_read(struct udevice *dev, u32 dev_number, + u8 *buf, u32 num_bytes); \ No newline at end of file