smiapp-quirk.h 3.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * drivers/media/i2c/smiapp/smiapp-quirk.h
  3. *
  4. * Generic driver for SMIA/SMIA++ compliant camera modules
  5. *
  6. * Copyright (C) 2011--2012 Nokia Corporation
  7. * Contact: Sakari Ailus <sakari.ailus@iki.fi>
  8. *
  9. * This program is free software; you can redistribute it and/or
  10. * modify it under the terms of the GNU General Public License
  11. * version 2 as published by the Free Software Foundation.
  12. *
  13. * This program is distributed in the hope that it will be useful, but
  14. * WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
  16. * General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
  21. * 02110-1301 USA
  22. *
  23. */
  24. #ifndef __SMIAPP_QUIRK__
  25. #define __SMIAPP_QUIRK__
  26. struct smiapp_sensor;
  27. /**
  28. * struct smiapp_quirk - quirks for sensors that deviate from SMIA++ standard
  29. *
  30. * @limits: Replace sensor->limits with values which can't be read from
  31. * sensor registers. Called the first time the sensor is powered up.
  32. * @post_poweron: Called always after the sensor has been fully powered on.
  33. * @pre_streamon: Called just before streaming is enabled.
  34. * @post_streamon: Called right after stopping streaming.
  35. * @reg_access: Register access quirk. The quirk may divert the access
  36. * to another register, or no register at all.
  37. *
  38. * @write: Is this read (false) or write (true) access?
  39. * @reg: Pointer to the register to access
  40. * @value: Register value, set by the caller on write, or
  41. * by the quirk on read
  42. *
  43. * @return: 0 on success, -ENOIOCTLCMD if no register
  44. * access may be done by the caller (default read
  45. * value is zero), else negative error code on error
  46. */
  47. struct smiapp_quirk {
  48. int (*limits)(struct smiapp_sensor *sensor);
  49. int (*post_poweron)(struct smiapp_sensor *sensor);
  50. int (*pre_streamon)(struct smiapp_sensor *sensor);
  51. int (*post_streamoff)(struct smiapp_sensor *sensor);
  52. unsigned long (*pll_flags)(struct smiapp_sensor *sensor);
  53. int (*reg_access)(struct smiapp_sensor *sensor, bool write, u32 *reg,
  54. u32 *val);
  55. unsigned long flags;
  56. };
  57. #define SMIAPP_QUIRK_FLAG_8BIT_READ_ONLY (1 << 0)
  58. struct smiapp_reg_8 {
  59. u16 reg;
  60. u8 val;
  61. };
  62. void smiapp_replace_limit(struct smiapp_sensor *sensor,
  63. u32 limit, u32 val);
  64. #define SMIAPP_MK_QUIRK_REG_8(_reg, _val) \
  65. { \
  66. .reg = (u16)_reg, \
  67. .val = _val, \
  68. }
  69. #define smiapp_call_quirk(_sensor, _quirk, ...) \
  70. (_sensor->minfo.quirk && \
  71. _sensor->minfo.quirk->_quirk ? \
  72. _sensor->minfo.quirk->_quirk(_sensor, ##__VA_ARGS__) : 0)
  73. #define smiapp_needs_quirk(_sensor, _quirk) \
  74. (_sensor->minfo.quirk ? \
  75. _sensor->minfo.quirk->flags & _quirk : 0)
  76. extern const struct smiapp_quirk smiapp_jt8ev1_quirk;
  77. extern const struct smiapp_quirk smiapp_imx125es_quirk;
  78. extern const struct smiapp_quirk smiapp_jt8ew9_quirk;
  79. extern const struct smiapp_quirk smiapp_tcm8500md_quirk;
  80. #endif /* __SMIAPP_QUIRK__ */