lnbp21.c 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136
  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. #include <linux/delay.h>
  27. #include <linux/errno.h>
  28. #include <linux/init.h>
  29. #include <linux/kernel.h>
  30. #include <linux/module.h>
  31. #include <linux/string.h>
  32. #include <linux/slab.h>
  33. #include "dvb_frontend.h"
  34. #include "lnbp21.h"
  35. struct lnbp21 {
  36. u8 config;
  37. u8 override_or;
  38. u8 override_and;
  39. struct i2c_adapter *i2c;
  40. };
  41. static int lnbp21_set_voltage(struct dvb_frontend *fe, fe_sec_voltage_t voltage)
  42. {
  43. struct lnbp21 *lnbp21 = (struct lnbp21 *) fe->sec_priv;
  44. struct i2c_msg msg = { .addr = 0x08, .flags = 0,
  45. .buf = &lnbp21->config,
  46. .len = sizeof(lnbp21->config) };
  47. lnbp21->config &= ~(LNBP21_VSEL | LNBP21_EN);
  48. switch(voltage) {
  49. case SEC_VOLTAGE_OFF:
  50. break;
  51. case SEC_VOLTAGE_13:
  52. lnbp21->config |= LNBP21_EN;
  53. break;
  54. case SEC_VOLTAGE_18:
  55. lnbp21->config |= (LNBP21_EN | LNBP21_VSEL);
  56. break;
  57. default:
  58. return -EINVAL;
  59. };
  60. lnbp21->config |= lnbp21->override_or;
  61. lnbp21->config &= lnbp21->override_and;
  62. return (i2c_transfer(lnbp21->i2c, &msg, 1) == 1) ? 0 : -EIO;
  63. }
  64. static int lnbp21_enable_high_lnb_voltage(struct dvb_frontend *fe, long arg)
  65. {
  66. struct lnbp21 *lnbp21 = (struct lnbp21 *) fe->sec_priv;
  67. struct i2c_msg msg = { .addr = 0x08, .flags = 0,
  68. .buf = &lnbp21->config,
  69. .len = sizeof(lnbp21->config) };
  70. if (arg)
  71. lnbp21->config |= LNBP21_LLC;
  72. else
  73. lnbp21->config &= ~LNBP21_LLC;
  74. lnbp21->config |= lnbp21->override_or;
  75. lnbp21->config &= lnbp21->override_and;
  76. return (i2c_transfer(lnbp21->i2c, &msg, 1) == 1) ? 0 : -EIO;
  77. }
  78. static void lnbp21_release(struct dvb_frontend *fe)
  79. {
  80. /* LNBP power off */
  81. lnbp21_set_voltage(fe, SEC_VOLTAGE_OFF);
  82. /* free data */
  83. kfree(fe->sec_priv);
  84. fe->sec_priv = NULL;
  85. }
  86. struct dvb_frontend *lnbp21_attach(struct dvb_frontend *fe, struct i2c_adapter *i2c, u8 override_set, u8 override_clear)
  87. {
  88. struct lnbp21 *lnbp21 = kmalloc(sizeof(struct lnbp21), GFP_KERNEL);
  89. if (!lnbp21)
  90. return NULL;
  91. /* default configuration */
  92. lnbp21->config = LNBP21_ISEL;
  93. lnbp21->i2c = i2c;
  94. fe->sec_priv = lnbp21;
  95. /* bits which should be forced to '1' */
  96. lnbp21->override_or = override_set;
  97. /* bits which should be forced to '0' */
  98. lnbp21->override_and = ~override_clear;
  99. /* detect if it is present or not */
  100. if (lnbp21_set_voltage(fe, SEC_VOLTAGE_OFF)) {
  101. kfree(lnbp21);
  102. return NULL;
  103. }
  104. /* install release callback */
  105. fe->ops.release_sec = lnbp21_release;
  106. /* override frontend ops */
  107. fe->ops.set_voltage = lnbp21_set_voltage;
  108. fe->ops.enable_high_lnb_voltage = lnbp21_enable_high_lnb_voltage;
  109. return fe;
  110. }
  111. EXPORT_SYMBOL(lnbp21_attach);
  112. MODULE_DESCRIPTION("Driver for lnb supply and control ic lnbp21");
  113. MODULE_AUTHOR("Oliver Endriss");
  114. MODULE_LICENSE("GPL");