mirror of
https://git.kernel.org/pub/scm/linux/kernel/git/stable/linux.git
synced 2025-01-17 02:36:21 +00:00
afe267f2d3
Add driver for TI DS90UB960 FPD-Link III Deserializer. Signed-off-by: Tomi Valkeinen <tomi.valkeinen@ideasonboard.com> Reviewed-by: Andy Shevchenko <andriy.shevchenko@linux.intel.com> Signed-off-by: Sakari Ailus <sakari.ailus@linux.intel.com> Signed-off-by: Mauro Carvalho Chehab <mchehab@kernel.org>
23 lines
474 B
C
23 lines
474 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
|
|
#ifndef __MEDIA_I2C_DS90UB9XX_H__
|
|
#define __MEDIA_I2C_DS90UB9XX_H__
|
|
|
|
#include <linux/types.h>
|
|
|
|
struct i2c_atr;
|
|
|
|
/**
|
|
* struct ds90ub9xx_platform_data - platform data for FPD-Link Serializers.
|
|
* @port: Deserializer RX port for this Serializer
|
|
* @atr: I2C ATR
|
|
* @bc_rate: back-channel clock rate
|
|
*/
|
|
struct ds90ub9xx_platform_data {
|
|
u32 port;
|
|
struct i2c_atr *atr;
|
|
unsigned long bc_rate;
|
|
};
|
|
|
|
#endif /* __MEDIA_I2C_DS90UB9XX_H__ */
|