Link: https://lore.kernel.org/r/20260217200002.683975158@linuxfoundation.org Tested-by: Florian Fainelli <florian.fainelli@broadcom.com> Tested-by: Takeshi Ogasawara <takeshi.ogasawara@futuring-girl.com> Tested-by: Peter Schneider <pschneider1968@googlemail.com> Tested-by: Jon Hunter <jonathanh@nvidia.com> Tested-by: Salvatore Bonaccorso <carnil@debian.org> Tested-by: Brett A C Sheffield <bacs@librecast.net> Tested-by: Mark Brown <broonie@kernel.org> Tested-by: Luna Jernberg <droidbittin@gmail.com> Tested-by: Ronald Warsow <rwarsow@gmx.de> Tested-by: Justin M. Forbes <jforbes@fedoraproject.org> Tested-by: Ron Economos <re@w6rz.net> Tested-by: Miguel Ojeda <ojeda@kernel.org> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
38 lines
811 B
C
38 lines
811 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* The MIPI SDCA specification is available for public downloads at
|
|
* https://www.mipi.org/mipi-sdca-v1-0-download
|
|
*
|
|
* Copyright (C) 2025 Cirrus Logic, Inc. and
|
|
* Cirrus Logic International Semiconductor Ltd.
|
|
*/
|
|
|
|
#ifndef __SDCA_CLASS_H__
|
|
#define __SDCA_CLASS_H__
|
|
|
|
#include <linux/completion.h>
|
|
#include <linux/mutex.h>
|
|
#include <linux/workqueue.h>
|
|
|
|
struct device;
|
|
struct regmap;
|
|
struct sdw_slave;
|
|
struct sdca_function_data;
|
|
|
|
struct sdca_class_drv {
|
|
struct device *dev;
|
|
struct regmap *dev_regmap;
|
|
struct sdw_slave *sdw;
|
|
|
|
struct sdca_function_data *functions;
|
|
struct sdca_interrupt_info *irq_info;
|
|
|
|
struct mutex regmap_lock;
|
|
struct work_struct boot_work;
|
|
struct completion device_attach;
|
|
|
|
bool attached;
|
|
};
|
|
|
|
#endif /* __SDCA_CLASS_H__ */
|