mt9t112.h 592 B

123456789101112131415161718192021222324252627
  1. /* SPDX-License-Identifier: GPL-2.0 */
  2. /* mt9t112 Camera
  3. *
  4. * Copyright (C) 2009 Renesas Solutions Corp.
  5. * Kuninori Morimoto <[email protected]>
  6. */
  7. #ifndef __MT9T112_H__
  8. #define __MT9T112_H__
  9. struct mt9t112_pll_divider {
  10. u8 m, n;
  11. u8 p1, p2, p3, p4, p5, p6, p7;
  12. };
  13. /**
  14. * struct mt9t112_platform_data - mt9t112 driver interface
  15. * @flags: Sensor media bus configuration.
  16. * @divider: Sensor PLL configuration
  17. */
  18. struct mt9t112_platform_data {
  19. #define MT9T112_FLAG_PCLK_RISING_EDGE BIT(0)
  20. u32 flags;
  21. struct mt9t112_pll_divider divider;
  22. };
  23. #endif /* __MT9T112_H__ */