lnbp21.h 3.6 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139
  1. /*
  2. * lnbp21.h - driver for lnb supply and control ic lnbp21
  3. *
  4. * Copyright (C) 2006 Oliver Endriss
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU General Public License
  8. * as published by the Free Software Foundation; either version 2
  9. * of the License, or (at your option) any later version.
  10. *
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  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., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  21. * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
  22. *
  23. *
  24. * the project's page is at http://www.linuxtv.org
  25. */
  26. #ifndef _LNBP21_H
  27. #define _LNBP21_H
  28. /* system register */
  29. #define LNBP21_OLF 0x01
  30. #define LNBP21_OTF 0x02
  31. #define LNBP21_EN 0x04
  32. #define LNBP21_VSEL 0x08
  33. #define LNBP21_LLC 0x10
  34. #define LNBP21_TEN 0x20
  35. #define LNBP21_ISEL 0x40
  36. #define LNBP21_PCL 0x80
  37. struct lnbp21 {
  38. u8 config;
  39. u8 override_or;
  40. u8 override_and;
  41. struct i2c_adapter *i2c;
  42. void (*release_chain)(struct dvb_frontend* fe);
  43. };
  44. static int lnbp21_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
  45. {
  46. struct lnbp21 *lnbp21 = (struct lnbp21 *) fe->misc_priv;
  47. struct i2c_msg msg = { .addr = 0x08, .flags = 0,
  48. .buf = &lnbp21->config,
  49. .len = sizeof(lnbp21->config) };
  50. lnbp21->config &= ~(LNBP21_VSEL | LNBP21_EN);
  51. switch(voltage) {
  52. case SEC_VOLTAGE_OFF:
  53. break;
  54. case SEC_VOLTAGE_13:
  55. lnbp21->config |= LNBP21_EN;
  56. break;
  57. case SEC_VOLTAGE_18:
  58. lnbp21->config |= (LNBP21_EN | LNBP21_VSEL);
  59. break;
  60. default:
  61. return -EINVAL;
  62. };
  63. lnbp21->config |= lnbp21->override_or;
  64. lnbp21->config &= lnbp21->override_and;
  65. return (i2c_transfer(lnbp21->i2c, &msg, 1) == 1) ? 0 : -EIO;
  66. }
  67. static int lnbp21_enable_high_lnb_voltage(struct dvb_frontend *fe, long arg)
  68. {
  69. struct lnbp21 *lnbp21 = (struct lnbp21 *) fe->misc_priv;
  70. struct i2c_msg msg = { .addr = 0x08, .flags = 0,
  71. .buf = &lnbp21->config,
  72. .len = sizeof(lnbp21->config) };
  73. if (arg)
  74. lnbp21->config |= LNBP21_LLC;
  75. else
  76. lnbp21->config &= ~LNBP21_LLC;
  77. lnbp21->config |= lnbp21->override_or;
  78. lnbp21->config &= lnbp21->override_and;
  79. return (i2c_transfer(lnbp21->i2c, &msg, 1) == 1) ? 0 : -EIO;
  80. }
  81. static void lnbp21_exit(struct dvb_frontend *fe)
  82. {
  83. struct lnbp21 *lnbp21 = (struct lnbp21 *) fe->misc_priv;
  84. /* LNBP power off */
  85. lnbp21_set_voltage(fe, SEC_VOLTAGE_OFF);
  86. /* free data & call next release routine */
  87. fe->ops->release = lnbp21->release_chain;
  88. kfree(fe->misc_priv);
  89. fe->misc_priv = NULL;
  90. if (fe->ops->release)
  91. fe->ops->release(fe);
  92. }
  93. static int lnbp21_init(struct dvb_frontend *fe, struct i2c_adapter *i2c, u8 override_set, u8 override_clear)
  94. {
  95. struct lnbp21 *lnbp21 = kmalloc(sizeof(struct lnbp21), GFP_KERNEL);
  96. if (!lnbp21)
  97. return -ENOMEM;
  98. /* default configuration */
  99. lnbp21->config = LNBP21_ISEL;
  100. /* bits which should be forced to '1' */
  101. lnbp21->override_or = override_set;
  102. /* bits which should be forced to '0' */
  103. lnbp21->override_and = ~override_clear;
  104. /* install release callback */
  105. lnbp21->release_chain = fe->ops->release;
  106. fe->ops->release = lnbp21_exit;
  107. /* override frontend ops */
  108. fe->ops->set_voltage = lnbp21_set_voltage;
  109. fe->ops->enable_high_lnb_voltage = lnbp21_enable_high_lnb_voltage;
  110. lnbp21->i2c = i2c;
  111. fe->misc_priv = lnbp21;
  112. return lnbp21_set_voltage(fe, SEC_VOLTAGE_OFF);
  113. }
  114. #endif