dvb_ca_en50221.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135
  1. /*
  2. * dvb_ca.h: generic DVB functions for EN50221 CA interfaces
  3. *
  4. * Copyright (C) 2004 Andrew de Quincey
  5. *
  6. * This program is free software; you can redistribute it and/or
  7. * modify it under the terms of the GNU Lesser General Public License
  8. * as published by the Free Software Foundation; either version 2.1
  9. * of the License, or (at your option) any later version.
  10. *
  11. * This program is distributed in the hope that it will be useful,
  12. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  13. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  14. * GNU General Public License for more details.
  15. */
  16. #ifndef _DVB_CA_EN50221_H_
  17. #define _DVB_CA_EN50221_H_
  18. #include <linux/list.h>
  19. #include <linux/dvb/ca.h>
  20. #include "dvbdev.h"
  21. #define DVB_CA_EN50221_POLL_CAM_PRESENT 1
  22. #define DVB_CA_EN50221_POLL_CAM_CHANGED 2
  23. #define DVB_CA_EN50221_POLL_CAM_READY 4
  24. #define DVB_CA_EN50221_FLAG_IRQ_CAMCHANGE 1
  25. #define DVB_CA_EN50221_FLAG_IRQ_FR 2
  26. #define DVB_CA_EN50221_FLAG_IRQ_DA 4
  27. #define DVB_CA_EN50221_CAMCHANGE_REMOVED 0
  28. #define DVB_CA_EN50221_CAMCHANGE_INSERTED 1
  29. /**
  30. * struct dvb_ca_en50221- Structure describing a CA interface
  31. *
  32. * @owner: the module owning this structure
  33. * @read_attribute_mem: function for reading attribute memory on the CAM
  34. * @write_attribute_mem: function for writing attribute memory on the CAM
  35. * @read_cam_control: function for reading the control interface on the CAM
  36. * @write_cam_control: function for reading the control interface on the CAM
  37. * @slot_reset: function to reset the CAM slot
  38. * @slot_shutdown: function to shutdown a CAM slot
  39. * @slot_ts_enable: function to enable the Transport Stream on a CAM slot
  40. * @poll_slot_status: function to poll slot status. Only necessary if
  41. * DVB_CA_FLAG_EN50221_IRQ_CAMCHANGE is not set.
  42. * @data: private data, used by caller.
  43. * @private: Opaque data used by the dvb_ca core. Do not modify!
  44. *
  45. * NOTE: the read_*, write_* and poll_slot_status functions will be
  46. * called for different slots concurrently and need to use locks where
  47. * and if appropriate. There will be no concurrent access to one slot.
  48. */
  49. struct dvb_ca_en50221 {
  50. struct module *owner;
  51. int (*read_attribute_mem)(struct dvb_ca_en50221 *ca,
  52. int slot, int address);
  53. int (*write_attribute_mem)(struct dvb_ca_en50221 *ca,
  54. int slot, int address, u8 value);
  55. int (*read_cam_control)(struct dvb_ca_en50221 *ca,
  56. int slot, u8 address);
  57. int (*write_cam_control)(struct dvb_ca_en50221 *ca,
  58. int slot, u8 address, u8 value);
  59. int (*slot_reset)(struct dvb_ca_en50221 *ca, int slot);
  60. int (*slot_shutdown)(struct dvb_ca_en50221 *ca, int slot);
  61. int (*slot_ts_enable)(struct dvb_ca_en50221 *ca, int slot);
  62. int (*poll_slot_status)(struct dvb_ca_en50221 *ca, int slot, int open);
  63. void *data;
  64. void *private;
  65. };
  66. /*
  67. * Functions for reporting IRQ events
  68. */
  69. /**
  70. * dvb_ca_en50221_camchange_irq - A CAMCHANGE IRQ has occurred.
  71. *
  72. * @pubca: CA instance.
  73. * @slot: Slot concerned.
  74. * @change_type: One of the DVB_CA_CAMCHANGE_* values
  75. */
  76. void dvb_ca_en50221_camchange_irq(struct dvb_ca_en50221 *pubca, int slot,
  77. int change_type);
  78. /**
  79. * dvb_ca_en50221_camready_irq - A CAMREADY IRQ has occurred.
  80. *
  81. * @pubca: CA instance.
  82. * @slot: Slot concerned.
  83. */
  84. void dvb_ca_en50221_camready_irq(struct dvb_ca_en50221 *pubca, int slot);
  85. /**
  86. * dvb_ca_en50221_frda_irq - An FR or a DA IRQ has occurred.
  87. *
  88. * @ca: CA instance.
  89. * @slot: Slot concerned.
  90. */
  91. void dvb_ca_en50221_frda_irq(struct dvb_ca_en50221 *ca, int slot);
  92. /*
  93. * Initialisation/shutdown functions
  94. */
  95. /**
  96. * dvb_ca_en50221_init - Initialise a new DVB CA device.
  97. *
  98. * @dvb_adapter: DVB adapter to attach the new CA device to.
  99. * @ca: The dvb_ca instance.
  100. * @flags: Flags describing the CA device (DVB_CA_EN50221_FLAG_*).
  101. * @slot_count: Number of slots supported.
  102. *
  103. * @return 0 on success, nonzero on failure
  104. */
  105. extern int dvb_ca_en50221_init(struct dvb_adapter *dvb_adapter,
  106. struct dvb_ca_en50221 *ca, int flags,
  107. int slot_count);
  108. /**
  109. * dvb_ca_en50221_release - Release a DVB CA device.
  110. *
  111. * @ca: The associated dvb_ca instance.
  112. */
  113. extern void dvb_ca_en50221_release(struct dvb_ca_en50221 *ca);
  114. #endif