Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 1 | /* |
| 2 | Mantis PCI bridge driver |
| 3 | |
| 4 | Copyright (C) 2005, 2006 Manu Abraham (abraham.manu@gmail.com) |
| 5 | |
| 6 | This program is free software; you can redistribute it and/or modify |
| 7 | it under the terms of the GNU General Public License as published by |
| 8 | the Free Software Foundation; either version 2 of the License, or |
| 9 | (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 | You should have received a copy of the GNU General Public License |
| 17 | along with this program; if not, write to the Free Software |
| 18 | Foundation, Inc., 675 Mass Ave, Cambridge, MA 02139, USA. |
| 19 | */ |
| 20 | |
| 21 | #include "mantis_common.h" |
| 22 | #include "mantis_link.h" |
| 23 | #include "mantis_hif.h" |
| 24 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 25 | static int mantis_ca_read_attr_mem(struct dvb_ca_en50221 *en50221, int slot, int addr) |
| 26 | { |
| 27 | struct mantis_ca *ca = en50221->data; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 28 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 29 | if (slot != 0) |
| 30 | return -EINVAL; |
| 31 | |
| 32 | return mantis_hif_read_mem(ca, addr); |
| 33 | } |
| 34 | |
| 35 | static int mantis_ca_write_attr_mem(struct dvb_ca_en50221 *en50221, int slot, int addr, u8 data) |
| 36 | { |
| 37 | struct mantis_ca *ca = en50221->data; |
| 38 | |
| 39 | if (slot != 0) |
| 40 | return -EINVAL; |
| 41 | |
| 42 | return mantis_hif_write_mem(ca, addr, data); |
| 43 | } |
| 44 | |
| 45 | static int mantis_ca_read_cam_ctl(struct dvb_ca_en50221 *en50221, int slot, u8 addr) |
| 46 | { |
| 47 | struct mantis_ca *ca = en50221->data; |
| 48 | |
| 49 | if (slot != 0) |
| 50 | return -EINVAL; |
| 51 | |
| 52 | return mantis_hif_read_iom(ca, addr); |
| 53 | } |
| 54 | |
| 55 | static int mantis_ca_write_cam_ctl(struct dvb_ca_en50221 *en50221, int slot, u8 addr, u8 data) |
| 56 | { |
| 57 | struct mantis_ca *ca = en50221->data; |
| 58 | |
| 59 | if (slot != 0) |
| 60 | return -EINVAL; |
| 61 | |
| 62 | return mantis_hif_write_iom(ca, addr, data); |
| 63 | } |
| 64 | |
| 65 | static int mantis_ca_slot_reset(struct dvb_ca_en50221 *en50221, int slot) |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 66 | { |
| 67 | return 0; |
| 68 | } |
| 69 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 70 | static int mantis_ca_slot_shutdown(struct dvb_ca_en50221 *en50221, int slot) |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 71 | { |
| 72 | return 0; |
| 73 | } |
| 74 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 75 | static int mantis_ts_control(struct dvb_ca_en50221 *en50221, int slot) |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 76 | { |
| 77 | return 0; |
| 78 | } |
| 79 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 80 | static int mantis_slot_status(struct dvb_ca_en50221 *en50221, int slot, int open) |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 81 | { |
Manu Abraham | 4e9fbee | 2009-12-04 05:11:41 -0300 | [diff] [blame^] | 82 | struct mantis_ca *ca = en50221->data; |
| 83 | |
| 84 | if (ca->slot_state == MODULE_INSERTED) |
| 85 | return DVB_CA_EN50221_POLL_CAM_PRESENT | DVB_CA_EN50221_POLL_CAM_READY; |
| 86 | |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 87 | return 0; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 88 | } |
| 89 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 90 | int mantis_ca_init(struct mantis_pci *mantis) |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 91 | { |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 92 | struct dvb_adapter *dvb_adapter = &mantis->dvb_adapter; |
| 93 | struct mantis_ca *ca; |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 94 | int ca_flags = 0, result; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 95 | |
| 96 | if (!(ca = kzalloc(sizeof (struct mantis_ca), GFP_KERNEL))) { |
| 97 | dprintk(verbose, MANTIS_ERROR, 1, "Out of memory!, exiting .."); |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 98 | result = -ENOMEM; |
| 99 | goto err; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 100 | } |
| 101 | |
| 102 | ca->ca_priv = mantis; |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 103 | mantis->mantis_ca = ca; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 104 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 105 | /* register CA interface */ |
| 106 | ca->en50221.owner = THIS_MODULE; |
| 107 | ca->en50221.read_attribute_mem = mantis_ca_read_attr_mem; |
| 108 | ca->en50221.write_attribute_mem = mantis_ca_write_attr_mem; |
| 109 | ca->en50221.read_cam_control = mantis_ca_read_cam_ctl; |
| 110 | ca->en50221.write_cam_control = mantis_ca_write_cam_ctl; |
| 111 | ca->en50221.slot_reset = mantis_ca_slot_reset; |
| 112 | ca->en50221.slot_shutdown = mantis_ca_slot_shutdown; |
| 113 | ca->en50221.slot_ts_enable = mantis_ts_control; |
| 114 | ca->en50221.poll_slot_status = mantis_slot_status; |
| 115 | ca->en50221.data = ca; |
| 116 | |
| 117 | dprintk(verbose, MANTIS_ERROR, 1, "Registering EN50221 device"); |
| 118 | if ((result = dvb_ca_en50221_init(dvb_adapter, &ca->en50221, ca_flags, 1)) != 0) { |
| 119 | dprintk(verbose, MANTIS_ERROR, 1, "EN50221: Initialization failed"); |
| 120 | goto err; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 121 | } |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 122 | dprintk(verbose, MANTIS_ERROR, 1, "Registered EN50221 device"); |
| 123 | mantis_evmgr_init(ca); |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 124 | return 0; |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 125 | err: |
| 126 | kfree(ca); |
| 127 | return result; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 128 | } |
| 129 | |
| 130 | void mantis_ca_exit(struct mantis_pci *mantis) |
| 131 | { |
| 132 | struct mantis_ca *ca = mantis->mantis_ca; |
| 133 | |
| 134 | mantis_evmgr_exit(ca); |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 135 | dprintk(verbose, MANTIS_ERROR, 1, "Unregistering EN50221 device"); |
| 136 | dvb_ca_en50221_release(&ca->en50221); |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 137 | |
| 138 | kfree(ca); |
| 139 | } |