Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 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. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 15 | */ |
| 16 | |
| 17 | #ifndef _DVB_CA_EN50221_H_ |
| 18 | #define _DVB_CA_EN50221_H_ |
| 19 | |
| 20 | #include <linux/list.h> |
| 21 | #include <linux/dvb/ca.h> |
| 22 | |
Mauro Carvalho Chehab | fada193 | 2017-12-28 13:03:51 -0500 | [diff] [blame] | 23 | #include <media/dvbdev.h> |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 24 | |
| 25 | #define DVB_CA_EN50221_POLL_CAM_PRESENT 1 |
| 26 | #define DVB_CA_EN50221_POLL_CAM_CHANGED 2 |
| 27 | #define DVB_CA_EN50221_POLL_CAM_READY 4 |
| 28 | |
| 29 | #define DVB_CA_EN50221_FLAG_IRQ_CAMCHANGE 1 |
| 30 | #define DVB_CA_EN50221_FLAG_IRQ_FR 2 |
| 31 | #define DVB_CA_EN50221_FLAG_IRQ_DA 4 |
| 32 | |
| 33 | #define DVB_CA_EN50221_CAMCHANGE_REMOVED 0 |
| 34 | #define DVB_CA_EN50221_CAMCHANGE_INSERTED 1 |
| 35 | |
Mauro Carvalho Chehab | d7061f8 | 2015-10-05 14:02:43 -0300 | [diff] [blame] | 36 | /** |
| 37 | * struct dvb_ca_en50221- Structure describing a CA interface |
| 38 | * |
| 39 | * @owner: the module owning this structure |
| 40 | * @read_attribute_mem: function for reading attribute memory on the CAM |
| 41 | * @write_attribute_mem: function for writing attribute memory on the CAM |
| 42 | * @read_cam_control: function for reading the control interface on the CAM |
| 43 | * @write_cam_control: function for reading the control interface on the CAM |
Ralph Metzler | f894165 | 2017-06-25 18:37:07 -0300 | [diff] [blame] | 44 | * @read_data: function for reading data (block mode) |
| 45 | * @write_data: function for writing data (block mode) |
Mauro Carvalho Chehab | d7061f8 | 2015-10-05 14:02:43 -0300 | [diff] [blame] | 46 | * @slot_reset: function to reset the CAM slot |
| 47 | * @slot_shutdown: function to shutdown a CAM slot |
| 48 | * @slot_ts_enable: function to enable the Transport Stream on a CAM slot |
| 49 | * @poll_slot_status: function to poll slot status. Only necessary if |
| 50 | * DVB_CA_FLAG_EN50221_IRQ_CAMCHANGE is not set. |
| 51 | * @data: private data, used by caller. |
| 52 | * @private: Opaque data used by the dvb_ca core. Do not modify! |
| 53 | * |
| 54 | * NOTE: the read_*, write_* and poll_slot_status functions will be |
| 55 | * called for different slots concurrently and need to use locks where |
| 56 | * and if appropriate. There will be no concurrent access to one slot. |
| 57 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 58 | struct dvb_ca_en50221 { |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 59 | struct module *owner; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 60 | |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 61 | int (*read_attribute_mem)(struct dvb_ca_en50221 *ca, |
| 62 | int slot, int address); |
| 63 | int (*write_attribute_mem)(struct dvb_ca_en50221 *ca, |
| 64 | int slot, int address, u8 value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 65 | |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 66 | int (*read_cam_control)(struct dvb_ca_en50221 *ca, |
| 67 | int slot, u8 address); |
| 68 | int (*write_cam_control)(struct dvb_ca_en50221 *ca, |
| 69 | int slot, u8 address, u8 value); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 70 | |
Ralph Metzler | f894165 | 2017-06-25 18:37:07 -0300 | [diff] [blame] | 71 | int (*read_data)(struct dvb_ca_en50221 *ca, |
Mauro Carvalho Chehab | faafd9e | 2017-07-20 15:46:10 -0400 | [diff] [blame] | 72 | int slot, u8 *ebuf, int ecount); |
Ralph Metzler | f894165 | 2017-06-25 18:37:07 -0300 | [diff] [blame] | 73 | int (*write_data)(struct dvb_ca_en50221 *ca, |
Mauro Carvalho Chehab | faafd9e | 2017-07-20 15:46:10 -0400 | [diff] [blame] | 74 | int slot, u8 *ebuf, int ecount); |
Ralph Metzler | f894165 | 2017-06-25 18:37:07 -0300 | [diff] [blame] | 75 | |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 76 | int (*slot_reset)(struct dvb_ca_en50221 *ca, int slot); |
| 77 | int (*slot_shutdown)(struct dvb_ca_en50221 *ca, int slot); |
| 78 | int (*slot_ts_enable)(struct dvb_ca_en50221 *ca, int slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 79 | |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 80 | int (*poll_slot_status)(struct dvb_ca_en50221 *ca, int slot, int open); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 81 | |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 82 | void *data; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 83 | |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 84 | void *private; |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 85 | }; |
| 86 | |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 87 | /* |
| 88 | * Functions for reporting IRQ events |
| 89 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 90 | |
| 91 | /** |
Mauro Carvalho Chehab | fbefb1a | 2015-08-22 07:09:29 -0300 | [diff] [blame] | 92 | * dvb_ca_en50221_camchange_irq - A CAMCHANGE IRQ has occurred. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 93 | * |
Mauro Carvalho Chehab | fbefb1a | 2015-08-22 07:09:29 -0300 | [diff] [blame] | 94 | * @pubca: CA instance. |
| 95 | * @slot: Slot concerned. |
| 96 | * @change_type: One of the DVB_CA_CAMCHANGE_* values |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 97 | */ |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 98 | void dvb_ca_en50221_camchange_irq(struct dvb_ca_en50221 *pubca, int slot, |
| 99 | int change_type); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 100 | |
| 101 | /** |
Mauro Carvalho Chehab | fbefb1a | 2015-08-22 07:09:29 -0300 | [diff] [blame] | 102 | * dvb_ca_en50221_camready_irq - A CAMREADY IRQ has occurred. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 103 | * |
Mauro Carvalho Chehab | fbefb1a | 2015-08-22 07:09:29 -0300 | [diff] [blame] | 104 | * @pubca: CA instance. |
| 105 | * @slot: Slot concerned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 106 | */ |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 107 | void dvb_ca_en50221_camready_irq(struct dvb_ca_en50221 *pubca, int slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 108 | |
| 109 | /** |
Mauro Carvalho Chehab | fbefb1a | 2015-08-22 07:09:29 -0300 | [diff] [blame] | 110 | * dvb_ca_en50221_frda_irq - An FR or a DA IRQ has occurred. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 111 | * |
Mauro Carvalho Chehab | fbefb1a | 2015-08-22 07:09:29 -0300 | [diff] [blame] | 112 | * @ca: CA instance. |
| 113 | * @slot: Slot concerned. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 114 | */ |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 115 | void dvb_ca_en50221_frda_irq(struct dvb_ca_en50221 *ca, int slot); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 116 | |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 117 | /* |
| 118 | * Initialisation/shutdown functions |
| 119 | */ |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 120 | |
| 121 | /** |
Mauro Carvalho Chehab | fbefb1a | 2015-08-22 07:09:29 -0300 | [diff] [blame] | 122 | * dvb_ca_en50221_init - Initialise a new DVB CA device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 123 | * |
Mauro Carvalho Chehab | fbefb1a | 2015-08-22 07:09:29 -0300 | [diff] [blame] | 124 | * @dvb_adapter: DVB adapter to attach the new CA device to. |
| 125 | * @ca: The dvb_ca instance. |
| 126 | * @flags: Flags describing the CA device (DVB_CA_EN50221_FLAG_*). |
| 127 | * @slot_count: Number of slots supported. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 128 | * |
| 129 | * @return 0 on success, nonzero on failure |
| 130 | */ |
Mauro Carvalho Chehab | faafd9e | 2017-07-20 15:46:10 -0400 | [diff] [blame] | 131 | int dvb_ca_en50221_init(struct dvb_adapter *dvb_adapter, |
| 132 | struct dvb_ca_en50221 *ca, int flags, |
Mauro Carvalho Chehab | bdbbf13 | 2015-10-05 14:04:54 -0300 | [diff] [blame] | 133 | int slot_count); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 134 | |
| 135 | /** |
Mauro Carvalho Chehab | fbefb1a | 2015-08-22 07:09:29 -0300 | [diff] [blame] | 136 | * dvb_ca_en50221_release - Release a DVB CA device. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 137 | * |
Mauro Carvalho Chehab | fbefb1a | 2015-08-22 07:09:29 -0300 | [diff] [blame] | 138 | * @ca: The associated dvb_ca instance. |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 139 | */ |
Mauro Carvalho Chehab | faafd9e | 2017-07-20 15:46:10 -0400 | [diff] [blame] | 140 | void dvb_ca_en50221_release(struct dvb_ca_en50221 *ca); |
Linus Torvalds | 1da177e | 2005-04-16 15:20:36 -0700 | [diff] [blame] | 141 | |
| 142 | #endif |