m5602_sensor.h 1.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869
  1. /*
  2. * USB Driver for ALi m5602 based webcams
  3. *
  4. * Copyright (C) 2008 Erik Andrén
  5. * Copyright (C) 2007 Ilyes Gouta. Based on the m5603x Linux Driver Project.
  6. * Copyright (C) 2005 m5603x Linux Driver Project <m5602@x3ng.com.br>
  7. *
  8. * Portions of code to USB interface and ALi driver software,
  9. * Copyright (c) 2006 Willem Duinker
  10. * v4l2 interface modeled after the V4L2 driver
  11. * for SN9C10x PC Camera Controllers
  12. *
  13. * This program is free software; you can redistribute it and/or
  14. * modify it under the terms of the GNU General Public License as
  15. * published by the Free Software Foundation, version 2.
  16. *
  17. */
  18. #ifndef M5602_SENSOR_H_
  19. #define M5602_SENSOR_H_
  20. #include "m5602_bridge.h"
  21. #define M5602_DEFAULT_FRAME_WIDTH 640
  22. #define M5602_DEFAULT_FRAME_HEIGHT 480
  23. /* Enumerates all supported sensors */
  24. enum sensors {
  25. OV9650_SENSOR = 1,
  26. S5K83A_SENSOR = 2,
  27. S5K4AA_SENSOR = 3,
  28. MT9M111_SENSOR = 4,
  29. PO1030_SENSOR = 5
  30. };
  31. /* Enumerates all possible instruction types */
  32. enum instruction {
  33. BRIDGE,
  34. SENSOR,
  35. SENSOR_LONG
  36. };
  37. struct m5602_sensor {
  38. /* Defines the name of a sensor */
  39. char name[32];
  40. /* What i2c address the sensor is connected to */
  41. u8 i2c_slave_id;
  42. /* Width of each i2c register (in bytes) */
  43. u8 i2c_regW;
  44. /* Probes if the sensor is connected */
  45. int (*probe)(struct sd *sd);
  46. /* Performs a initialization sequence */
  47. int (*init)(struct sd *sd);
  48. /* Executed when the camera starts to send data */
  49. int (*start)(struct sd *sd);
  50. /* Executed when the camera ends to send data */
  51. int (*stop)(struct sd *sd);
  52. /* Performs a power down sequence */
  53. int (*power_down)(struct sd *sd);
  54. };
  55. #endif