csis.h 692 B

12345678910111213141516171819202122232425262728
  1. /*
  2. * Copyright (C) 2010 Samsung Electronics
  3. *
  4. * S5P series MIPI CSI slave device support
  5. *
  6. * This program is free software; you can redistribute it and/or modify
  7. * it under the terms of the GNU General Public License version 2 as
  8. * published by the Free Software Foundation.
  9. */
  10. #ifndef PLAT_S5P_CSIS_H_
  11. #define PLAT_S5P_CSIS_H_ __FILE__
  12. /**
  13. * struct s5p_platform_mipi_csis - platform data for MIPI-CSIS
  14. * @clk_rate: bus clock frequency
  15. * @lanes: number of data lanes used
  16. * @alignment: data alignment in bits
  17. * @hs_settle: HS-RX settle time
  18. */
  19. struct s5p_platform_mipi_csis {
  20. unsigned long clk_rate;
  21. u8 lanes;
  22. u8 alignment;
  23. u8 hs_settle;
  24. };
  25. #endif /* PLAT_S5P_CSIS_H_ */