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 | 2133ffb | 2009-12-04 05:12:16 -0300 | [diff] [blame] | 28 | struct mantis_pci *mantis = ca->ca_priv; |
| 29 | |
| 30 | dprintk(verbose, MANTIS_DEBUG, 1, "Slot(%d): Request Attribute Mem Read", slot); |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 31 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 32 | if (slot != 0) |
| 33 | return -EINVAL; |
| 34 | |
| 35 | return mantis_hif_read_mem(ca, addr); |
| 36 | } |
| 37 | |
| 38 | static int mantis_ca_write_attr_mem(struct dvb_ca_en50221 *en50221, int slot, int addr, u8 data) |
| 39 | { |
| 40 | struct mantis_ca *ca = en50221->data; |
Manu Abraham | 2133ffb | 2009-12-04 05:12:16 -0300 | [diff] [blame] | 41 | struct mantis_pci *mantis = ca->ca_priv; |
| 42 | |
| 43 | dprintk(verbose, MANTIS_DEBUG, 1, "Slot(%d): Request Attribute Mem Write", slot); |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 44 | |
| 45 | if (slot != 0) |
| 46 | return -EINVAL; |
| 47 | |
| 48 | return mantis_hif_write_mem(ca, addr, data); |
| 49 | } |
| 50 | |
| 51 | static int mantis_ca_read_cam_ctl(struct dvb_ca_en50221 *en50221, int slot, u8 addr) |
| 52 | { |
| 53 | struct mantis_ca *ca = en50221->data; |
Manu Abraham | 2133ffb | 2009-12-04 05:12:16 -0300 | [diff] [blame] | 54 | struct mantis_pci *mantis = ca->ca_priv; |
| 55 | |
| 56 | dprintk(verbose, MANTIS_DEBUG, 1, "Slot(%d): Request CAM control Read", slot); |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 57 | |
| 58 | if (slot != 0) |
| 59 | return -EINVAL; |
| 60 | |
| 61 | return mantis_hif_read_iom(ca, addr); |
| 62 | } |
| 63 | |
| 64 | static int mantis_ca_write_cam_ctl(struct dvb_ca_en50221 *en50221, int slot, u8 addr, u8 data) |
| 65 | { |
| 66 | struct mantis_ca *ca = en50221->data; |
Manu Abraham | 2133ffb | 2009-12-04 05:12:16 -0300 | [diff] [blame] | 67 | struct mantis_pci *mantis = ca->ca_priv; |
| 68 | |
| 69 | dprintk(verbose, MANTIS_DEBUG, 1, "Slot(%d): Request CAM control Write", slot); |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 70 | |
| 71 | if (slot != 0) |
| 72 | return -EINVAL; |
| 73 | |
| 74 | return mantis_hif_write_iom(ca, addr, data); |
| 75 | } |
| 76 | |
| 77 | 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] | 78 | { |
Manu Abraham | 2133ffb | 2009-12-04 05:12:16 -0300 | [diff] [blame] | 79 | struct mantis_ca *ca = en50221->data; |
| 80 | struct mantis_pci *mantis = ca->ca_priv; |
| 81 | |
| 82 | dprintk(verbose, MANTIS_DEBUG, 1, "Slot(%d): Slot RESET", slot); |
Manu Abraham | fb6de9c | 2009-12-04 05:17:46 -0300 | [diff] [blame] | 83 | udelay(500); /* Wait.. */ |
| 84 | mmwrite(0xda, MANTIS_PCMCIA_RESET); /* Leading edge assert */ |
| 85 | udelay(500); |
| 86 | mmwrite(0x00, MANTIS_PCMCIA_RESET); /* Trailing edge deassert */ |
| 87 | msleep(1000); |
Manu Abraham | 2ec9b00 | 2009-12-04 05:20:44 -0300 | [diff] [blame^] | 88 | dvb_ca_en50221_camready_irq(&ca->en50221, 0); |
Manu Abraham | 2133ffb | 2009-12-04 05:12:16 -0300 | [diff] [blame] | 89 | |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 90 | return 0; |
| 91 | } |
| 92 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 93 | 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] | 94 | { |
Manu Abraham | 2133ffb | 2009-12-04 05:12:16 -0300 | [diff] [blame] | 95 | struct mantis_ca *ca = en50221->data; |
| 96 | struct mantis_pci *mantis = ca->ca_priv; |
| 97 | |
| 98 | dprintk(verbose, MANTIS_DEBUG, 1, "Slot(%d): Slot shutdown", slot); |
| 99 | |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 100 | return 0; |
| 101 | } |
| 102 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 103 | static int mantis_ts_control(struct dvb_ca_en50221 *en50221, int slot) |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 104 | { |
Manu Abraham | 2133ffb | 2009-12-04 05:12:16 -0300 | [diff] [blame] | 105 | struct mantis_ca *ca = en50221->data; |
| 106 | struct mantis_pci *mantis = ca->ca_priv; |
| 107 | |
| 108 | dprintk(verbose, MANTIS_DEBUG, 1, "Slot(%d): TS control", slot); |
Manu Abraham | 990f8d1 | 2009-12-04 05:18:27 -0300 | [diff] [blame] | 109 | mantis_set_direction(mantis, 1); /* Enable TS through CAM */ |
Manu Abraham | 2133ffb | 2009-12-04 05:12:16 -0300 | [diff] [blame] | 110 | |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 111 | return 0; |
| 112 | } |
| 113 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 114 | 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] | 115 | { |
Manu Abraham | 4e9fbee | 2009-12-04 05:11:41 -0300 | [diff] [blame] | 116 | struct mantis_ca *ca = en50221->data; |
Manu Abraham | 2133ffb | 2009-12-04 05:12:16 -0300 | [diff] [blame] | 117 | struct mantis_pci *mantis = ca->ca_priv; |
| 118 | |
| 119 | dprintk(verbose, MANTIS_DEBUG, 1, "Slot(%d): Poll Slot status", slot); |
Manu Abraham | 4e9fbee | 2009-12-04 05:11:41 -0300 | [diff] [blame] | 120 | |
| 121 | if (ca->slot_state == MODULE_INSERTED) |
| 122 | return DVB_CA_EN50221_POLL_CAM_PRESENT | DVB_CA_EN50221_POLL_CAM_READY; |
| 123 | |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 124 | return 0; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 125 | } |
| 126 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 127 | int mantis_ca_init(struct mantis_pci *mantis) |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 128 | { |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 129 | struct dvb_adapter *dvb_adapter = &mantis->dvb_adapter; |
| 130 | struct mantis_ca *ca; |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 131 | int ca_flags = 0, result; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 132 | |
Manu Abraham | 2133ffb | 2009-12-04 05:12:16 -0300 | [diff] [blame] | 133 | dprintk(verbose, MANTIS_DEBUG, 1, "Initializing Mantis CA"); |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 134 | if (!(ca = kzalloc(sizeof (struct mantis_ca), GFP_KERNEL))) { |
| 135 | dprintk(verbose, MANTIS_ERROR, 1, "Out of memory!, exiting .."); |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 136 | result = -ENOMEM; |
| 137 | goto err; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 138 | } |
| 139 | |
| 140 | ca->ca_priv = mantis; |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 141 | mantis->mantis_ca = ca; |
Manu Abraham | f9ce1c3 | 2009-12-04 05:18:53 -0300 | [diff] [blame] | 142 | ca_flags = DVB_CA_EN50221_FLAG_IRQ_CAMCHANGE | |
| 143 | DVB_CA_EN50221_FLAG_IRQ_FR | |
| 144 | DVB_CA_EN50221_FLAG_IRQ_DA; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 145 | |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 146 | /* register CA interface */ |
| 147 | ca->en50221.owner = THIS_MODULE; |
| 148 | ca->en50221.read_attribute_mem = mantis_ca_read_attr_mem; |
| 149 | ca->en50221.write_attribute_mem = mantis_ca_write_attr_mem; |
| 150 | ca->en50221.read_cam_control = mantis_ca_read_cam_ctl; |
| 151 | ca->en50221.write_cam_control = mantis_ca_write_cam_ctl; |
| 152 | ca->en50221.slot_reset = mantis_ca_slot_reset; |
| 153 | ca->en50221.slot_shutdown = mantis_ca_slot_shutdown; |
| 154 | ca->en50221.slot_ts_enable = mantis_ts_control; |
| 155 | ca->en50221.poll_slot_status = mantis_slot_status; |
| 156 | ca->en50221.data = ca; |
| 157 | |
| 158 | dprintk(verbose, MANTIS_ERROR, 1, "Registering EN50221 device"); |
| 159 | if ((result = dvb_ca_en50221_init(dvb_adapter, &ca->en50221, ca_flags, 1)) != 0) { |
| 160 | dprintk(verbose, MANTIS_ERROR, 1, "EN50221: Initialization failed"); |
| 161 | goto err; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 162 | } |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 163 | dprintk(verbose, MANTIS_ERROR, 1, "Registered EN50221 device"); |
| 164 | mantis_evmgr_init(ca); |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 165 | return 0; |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 166 | err: |
| 167 | kfree(ca); |
| 168 | return result; |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 169 | } |
| 170 | |
| 171 | void mantis_ca_exit(struct mantis_pci *mantis) |
| 172 | { |
| 173 | struct mantis_ca *ca = mantis->mantis_ca; |
Manu Abraham | 2133ffb | 2009-12-04 05:12:16 -0300 | [diff] [blame] | 174 | |
| 175 | dprintk(verbose, MANTIS_DEBUG, 1, "Mantis CA exit"); |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 176 | |
| 177 | mantis_evmgr_exit(ca); |
Manu Abraham | 6053240 | 2009-12-04 05:11:14 -0300 | [diff] [blame] | 178 | dprintk(verbose, MANTIS_ERROR, 1, "Unregistering EN50221 device"); |
| 179 | dvb_ca_en50221_release(&ca->en50221); |
Manu Abraham | 50d8260 | 2009-12-04 05:06:38 -0300 | [diff] [blame] | 180 | |
| 181 | kfree(ca); |
| 182 | } |