mirror of
git://git.yoctoproject.org/linux-yocto.git
synced 2025-07-09 23:35:22 +02:00

Add an I2C bus driver for virtio para-virtualization. The controller can be emulated by the backend driver in any device model software by following the virtio protocol. The device specification can be found on https://lists.oasis-open.org/archives/virtio-comment/202101/msg00008.html. By following the specification, people may implement different backend drivers to emulate different controllers according to their needs. Co-developed-by: Conghui Chen <conghui.chen@intel.com> Signed-off-by: Conghui Chen <conghui.chen@intel.com> Signed-off-by: Jie Deng <jie.deng@intel.com> Reviewed-by: Viresh Kumar <viresh.kumar@linaro.org> Tested-by: Viresh Kumar <viresh.kumar@linaro.org> Acked-by: Michael S. Tsirkin <mst@redhat.com> Signed-off-by: Wolfram Sang <wsa@kernel.org>
42 lines
1004 B
C
42 lines
1004 B
C
/* SPDX-License-Identifier: GPL-2.0-or-later WITH Linux-syscall-note */
|
|
/*
|
|
* Definitions for virtio I2C Adpter
|
|
*
|
|
* Copyright (c) 2021 Intel Corporation. All rights reserved.
|
|
*/
|
|
|
|
#ifndef _UAPI_LINUX_VIRTIO_I2C_H
|
|
#define _UAPI_LINUX_VIRTIO_I2C_H
|
|
|
|
#include <linux/const.h>
|
|
#include <linux/types.h>
|
|
|
|
/* The bit 0 of the @virtio_i2c_out_hdr.@flags, used to group the requests */
|
|
#define VIRTIO_I2C_FLAGS_FAIL_NEXT _BITUL(0)
|
|
|
|
/**
|
|
* struct virtio_i2c_out_hdr - the virtio I2C message OUT header
|
|
* @addr: the controlled device address
|
|
* @padding: used to pad to full dword
|
|
* @flags: used for feature extensibility
|
|
*/
|
|
struct virtio_i2c_out_hdr {
|
|
__le16 addr;
|
|
__le16 padding;
|
|
__le32 flags;
|
|
};
|
|
|
|
/**
|
|
* struct virtio_i2c_in_hdr - the virtio I2C message IN header
|
|
* @status: the processing result from the backend
|
|
*/
|
|
struct virtio_i2c_in_hdr {
|
|
__u8 status;
|
|
};
|
|
|
|
/* The final status written by the device */
|
|
#define VIRTIO_I2C_MSG_OK 0
|
|
#define VIRTIO_I2C_MSG_ERR 1
|
|
|
|
#endif /* _UAPI_LINUX_VIRTIO_I2C_H */
|