ds90ub9xx.h 474 B

12345678910111213141516171819202122
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. #ifndef __MEDIA_I2C_DS90UB9XX_H__
  3. #define __MEDIA_I2C_DS90UB9XX_H__
  4. #include <linux/types.h>
  5. struct i2c_atr;
  6. /**
  7. * struct ds90ub9xx_platform_data - platform data for FPD-Link Serializers.
  8. * @port: Deserializer RX port for this Serializer
  9. * @atr: I2C ATR
  10. * @bc_rate: back-channel clock rate
  11. */
  12. struct ds90ub9xx_platform_data {
  13. u32 port;
  14. struct i2c_atr *atr;
  15. unsigned long bc_rate;
  16. };
  17. #endif /* __MEDIA_I2C_DS90UB9XX_H__ */