lnbp22.h 1.6 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556
  1. /*
  2. * lnbp22.h - driver for lnb supply and control ic lnbp22
  3. *
  4. * Copyright (C) 2006 Dominik Kuhlen
  5. * Based on lnbp21.h
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License
  9. * as published by the Free Software Foundation; either version 2
  10. * of the License, or (at your option) any later version.
  11. *
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. *
  19. * You should have received a copy of the GNU General Public License
  20. * along with this program; if not, write to the Free Software
  21. * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111-1307, USA.
  22. * Or, point your browser to http://www.gnu.org/copyleft/gpl.html
  23. *
  24. *
  25. * the project's page is at https://linuxtv.org
  26. */
  27. #ifndef _LNBP22_H
  28. #define _LNBP22_H
  29. /* Enable */
  30. #define LNBP22_EN 0x10
  31. /* Voltage selection */
  32. #define LNBP22_VSEL 0x02
  33. /* Plus 1 Volt Bit */
  34. #define LNBP22_LLC 0x01
  35. #include <linux/dvb/frontend.h>
  36. #if IS_REACHABLE(CONFIG_DVB_LNBP22)
  37. /*
  38. * override_set and override_clear control which system register bits (above)
  39. * to always set & clear
  40. */
  41. extern struct dvb_frontend *lnbp22_attach(struct dvb_frontend *fe,
  42. struct i2c_adapter *i2c);
  43. #else
  44. static inline struct dvb_frontend *lnbp22_attach(struct dvb_frontend *fe,
  45. struct i2c_adapter *i2c)
  46. {
  47. printk(KERN_WARNING "%s: driver disabled by Kconfig\n", __func__);
  48. return NULL;
  49. }
  50. #endif /* CONFIG_DVB_LNBP22 */
  51. #endif /* _LNBP22_H */