blob: 6b64bfd938b6fec1d34710180a293d4b33f15d74 [file] [log] [blame]
Manu Abraham8825a092009-12-15 09:13:49 -03001/*
2 Mantis PCI bridge driver
3
4 Copyright (C) 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
Manu Abrahamb3b96142009-12-04 05:41:11 -030021#include <linux/module.h>
22#include <linux/moduleparam.h>
23#include <linux/kernel.h>
24#include <linux/pci.h>
Tejun Heo5a0e3ad2010-03-24 17:04:11 +090025#include <linux/slab.h>
Manu Abrahamb3b96142009-12-04 05:41:11 -030026#include <asm/irq.h>
27#include <linux/interrupt.h>
Jan Klötzkea96762d2015-06-06 16:58:13 -030028#include <media/rc-map.h>
Manu Abrahamb3b96142009-12-04 05:41:11 -030029
30#include "dmxdev.h"
31#include "dvbdev.h"
32#include "dvb_demux.h"
33#include "dvb_frontend.h"
34#include "dvb_net.h"
35
36#include "mantis_common.h"
37
38#include "mantis_vp1033.h"
39#include "mantis_vp1034.h"
40#include "mantis_vp1041.h"
41#include "mantis_vp2033.h"
42#include "mantis_vp2040.h"
43#include "mantis_vp3030.h"
44
45#include "mantis_dma.h"
46#include "mantis_ca.h"
47#include "mantis_dvb.h"
48#include "mantis_uart.h"
49#include "mantis_ioc.h"
50#include "mantis_pci.h"
51#include "mantis_i2c.h"
52#include "mantis_reg.h"
Jan Klötzkea96762d2015-06-06 16:58:13 -030053#include "mantis_input.h"
Manu Abrahamb3b96142009-12-04 05:41:11 -030054
55static unsigned int verbose;
56module_param(verbose, int, 0644);
Bjørn Mork0618ece2011-03-22 10:22:17 -030057MODULE_PARM_DESC(verbose, "verbose startup messages, default is 0 (no)");
Manu Abrahamb3b96142009-12-04 05:41:11 -030058
59static int devs;
60
61#define DRIVER_NAME "Mantis"
62
63static char *label[10] = {
64 "DMA",
65 "IRQ-0",
66 "IRQ-1",
67 "OCERR",
68 "PABRT",
69 "RIPRR",
70 "PPERR",
71 "FTRGT",
72 "RISCI",
73 "RACK"
74};
75
Manu Abrahamb3b96142009-12-04 05:41:11 -030076static irqreturn_t mantis_irq_handler(int irq, void *dev_id)
77{
Hans Verkuil5becbc52012-05-14 10:22:58 -030078 u32 stat = 0, mask = 0;
Manu Abrahamb3b96142009-12-04 05:41:11 -030079 u32 rst_stat = 0, rst_mask = 0;
80
81 struct mantis_pci *mantis;
82 struct mantis_ca *ca;
83
84 mantis = (struct mantis_pci *) dev_id;
85 if (unlikely(mantis == NULL)) {
86 dprintk(MANTIS_ERROR, 1, "Mantis == NULL");
87 return IRQ_NONE;
88 }
89 ca = mantis->mantis_ca;
90
91 stat = mmread(MANTIS_INT_STAT);
92 mask = mmread(MANTIS_INT_MASK);
Manu Abrahamb3b96142009-12-04 05:41:11 -030093 if (!(stat & mask))
94 return IRQ_NONE;
95
96 rst_mask = MANTIS_GPIF_WRACK |
97 MANTIS_GPIF_OTHERR |
98 MANTIS_SBUF_WSTO |
99 MANTIS_GPIF_EXTIRQ;
100
101 rst_stat = mmread(MANTIS_GPIF_STATUS);
102 rst_stat &= rst_mask;
103 mmwrite(rst_stat, MANTIS_GPIF_STATUS);
104
105 mantis->mantis_int_stat = stat;
106 mantis->mantis_int_mask = mask;
107 dprintk(MANTIS_DEBUG, 0, "\n-- Stat=<%02x> Mask=<%02x> --", stat, mask);
108 if (stat & MANTIS_INT_RISCEN) {
109 dprintk(MANTIS_DEBUG, 0, "<%s>", label[0]);
110 }
111 if (stat & MANTIS_INT_IRQ0) {
112 dprintk(MANTIS_DEBUG, 0, "<%s>", label[1]);
113 mantis->gpif_status = rst_stat;
114 wake_up(&ca->hif_write_wq);
115 schedule_work(&ca->hif_evm_work);
116 }
117 if (stat & MANTIS_INT_IRQ1) {
118 dprintk(MANTIS_DEBUG, 0, "<%s>", label[2]);
Jan Klötzkea96762d2015-06-06 16:58:13 -0300119 spin_lock(&mantis->intmask_lock);
120 mmwrite(mmread(MANTIS_INT_MASK) & ~MANTIS_INT_IRQ1, MANTIS_INT_MASK);
121 spin_unlock(&mantis->intmask_lock);
Manu Abrahamb3b96142009-12-04 05:41:11 -0300122 schedule_work(&mantis->uart_work);
123 }
124 if (stat & MANTIS_INT_OCERR) {
125 dprintk(MANTIS_DEBUG, 0, "<%s>", label[3]);
126 }
127 if (stat & MANTIS_INT_PABORT) {
128 dprintk(MANTIS_DEBUG, 0, "<%s>", label[4]);
129 }
130 if (stat & MANTIS_INT_RIPERR) {
131 dprintk(MANTIS_DEBUG, 0, "<%s>", label[5]);
132 }
133 if (stat & MANTIS_INT_PPERR) {
134 dprintk(MANTIS_DEBUG, 0, "<%s>", label[6]);
135 }
136 if (stat & MANTIS_INT_FTRGT) {
137 dprintk(MANTIS_DEBUG, 0, "<%s>", label[7]);
138 }
139 if (stat & MANTIS_INT_RISCI) {
140 dprintk(MANTIS_DEBUG, 0, "<%s>", label[8]);
Marko Ristola79d06d42010-08-07 08:16:15 -0300141 mantis->busy_block = (stat & MANTIS_INT_RISCSTAT) >> 28;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300142 tasklet_schedule(&mantis->tasklet);
143 }
144 if (stat & MANTIS_INT_I2CDONE) {
145 dprintk(MANTIS_DEBUG, 0, "<%s>", label[9]);
146 wake_up(&mantis->i2c_wq);
147 }
148 mmwrite(stat, MANTIS_INT_STAT);
149 stat &= ~(MANTIS_INT_RISCEN | MANTIS_INT_I2CDONE |
150 MANTIS_INT_I2CRACK | MANTIS_INT_PCMCIA7 |
151 MANTIS_INT_PCMCIA6 | MANTIS_INT_PCMCIA5 |
152 MANTIS_INT_PCMCIA4 | MANTIS_INT_PCMCIA3 |
153 MANTIS_INT_PCMCIA2 | MANTIS_INT_PCMCIA1 |
154 MANTIS_INT_PCMCIA0 | MANTIS_INT_IRQ1 |
155 MANTIS_INT_IRQ0 | MANTIS_INT_OCERR |
156 MANTIS_INT_PABORT | MANTIS_INT_RIPERR |
157 MANTIS_INT_PPERR | MANTIS_INT_FTRGT |
158 MANTIS_INT_RISCI);
159
160 if (stat)
161 dprintk(MANTIS_DEBUG, 0, "<Unknown> Stat=<%02x> Mask=<%02x>", stat, mask);
162
163 dprintk(MANTIS_DEBUG, 0, "\n");
164 return IRQ_HANDLED;
165}
166
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800167static int mantis_pci_probe(struct pci_dev *pdev,
168 const struct pci_device_id *pci_id)
Manu Abrahamb3b96142009-12-04 05:41:11 -0300169{
Jan Klötzkea96762d2015-06-06 16:58:13 -0300170 struct mantis_pci_drvdata *drvdata;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300171 struct mantis_pci *mantis;
172 struct mantis_hwconfig *config;
173 int err = 0;
174
Manu Abrahamf5ae4f62009-12-15 08:47:21 -0300175 mantis = kzalloc(sizeof(struct mantis_pci), GFP_KERNEL);
Manu Abrahamb3b96142009-12-04 05:41:11 -0300176 if (mantis == NULL) {
177 printk(KERN_ERR "%s ERROR: Out of memory\n", __func__);
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300178 return -ENOMEM;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300179 }
180
Jan Klötzkea96762d2015-06-06 16:58:13 -0300181 drvdata = (struct mantis_pci_drvdata *) pci_id->driver_data;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300182 mantis->num = devs;
183 mantis->verbose = verbose;
184 mantis->pdev = pdev;
Jan Klötzkea96762d2015-06-06 16:58:13 -0300185 config = drvdata->hwconfig;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300186 config->irq_handler = &mantis_irq_handler;
187 mantis->hwconfig = config;
Jan Klötzkea96762d2015-06-06 16:58:13 -0300188 mantis->rc_map_name = drvdata->rc_map_name;
189
190 spin_lock_init(&mantis->intmask_lock);
Manu Abrahamb3b96142009-12-04 05:41:11 -0300191
192 err = mantis_pci_init(mantis);
193 if (err) {
194 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis PCI initialization failed <%d>", err);
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300195 goto err_free_mantis;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300196 }
197
198 err = mantis_stream_control(mantis, STREAM_TO_HIF);
199 if (err < 0) {
200 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis stream control failed <%d>", err);
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300201 goto err_pci_exit;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300202 }
203
204 err = mantis_i2c_init(mantis);
205 if (err < 0) {
206 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis I2C initialization failed <%d>", err);
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300207 goto err_pci_exit;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300208 }
209
210 err = mantis_get_mac(mantis);
211 if (err < 0) {
212 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis MAC address read failed <%d>", err);
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300213 goto err_i2c_exit;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300214 }
215
216 err = mantis_dma_init(mantis);
217 if (err < 0) {
218 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis DMA initialization failed <%d>", err);
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300219 goto err_i2c_exit;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300220 }
221
222 err = mantis_dvb_init(mantis);
223 if (err < 0) {
224 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis DVB initialization failed <%d>", err);
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300225 goto err_dma_exit;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300226 }
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300227
Jan Klötzkea96762d2015-06-06 16:58:13 -0300228 err = mantis_input_init(mantis);
229 if (err < 0) {
230 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis DVB initialization failed <%d>", err);
231 goto err_dvb_exit;
232 }
233
Manu Abrahama1497352009-12-11 20:41:07 -0300234 err = mantis_uart_init(mantis);
235 if (err < 0) {
236 dprintk(MANTIS_ERROR, 1, "ERROR: Mantis UART initialization failed <%d>", err);
Jan Klötzkea96762d2015-06-06 16:58:13 -0300237 goto err_input_exit;
Manu Abrahama1497352009-12-11 20:41:07 -0300238 }
239
Manu Abrahamb3b96142009-12-04 05:41:11 -0300240 devs++;
241
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300242 return 0;
Manu Abrahama1497352009-12-11 20:41:07 -0300243
Jan Klötzkea96762d2015-06-06 16:58:13 -0300244err_input_exit:
245 mantis_input_exit(mantis);
246
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300247err_dvb_exit:
248 mantis_dvb_exit(mantis);
Manu Abrahama1497352009-12-11 20:41:07 -0300249
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300250err_dma_exit:
Manu Abrahamb3b96142009-12-04 05:41:11 -0300251 mantis_dma_exit(mantis);
252
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300253err_i2c_exit:
Manu Abrahamb3b96142009-12-04 05:41:11 -0300254 mantis_i2c_exit(mantis);
255
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300256err_pci_exit:
Manu Abrahamb3b96142009-12-04 05:41:11 -0300257 mantis_pci_exit(mantis);
258
Silvan Jegenb2624ff2015-03-23 13:25:53 -0300259err_free_mantis:
Manu Abrahamb3b96142009-12-04 05:41:11 -0300260 kfree(mantis);
261
Manu Abrahamb3b96142009-12-04 05:41:11 -0300262 return err;
263}
264
Greg Kroah-Hartman4c62e972012-12-21 13:17:53 -0800265static void mantis_pci_remove(struct pci_dev *pdev)
Manu Abrahamb3b96142009-12-04 05:41:11 -0300266{
267 struct mantis_pci *mantis = pci_get_drvdata(pdev);
268
269 if (mantis) {
Manu Abrahama1497352009-12-11 20:41:07 -0300270
271 mantis_uart_exit(mantis);
Jan Klötzkea96762d2015-06-06 16:58:13 -0300272 mantis_input_exit(mantis);
Manu Abrahamb3b96142009-12-04 05:41:11 -0300273 mantis_dvb_exit(mantis);
274 mantis_dma_exit(mantis);
275 mantis_i2c_exit(mantis);
276 mantis_pci_exit(mantis);
277 kfree(mantis);
278 }
279 return;
280}
281
282static struct pci_device_id mantis_pci_table[] = {
Jan Klötzkea96762d2015-06-06 16:58:13 -0300283 MAKE_ENTRY(TECHNISAT, CABLESTAR_HD2, &vp2040_config,
284 RC_MAP_TECHNISAT_TS35),
285 MAKE_ENTRY(TECHNISAT, SKYSTAR_HD2_10, &vp1041_config,
286 NULL),
287 MAKE_ENTRY(TECHNISAT, SKYSTAR_HD2_20, &vp1041_config,
288 NULL),
289 MAKE_ENTRY(TERRATEC, CINERGY_C, &vp2040_config,
290 RC_MAP_TERRATEC_CINERGY_C_PCI),
291 MAKE_ENTRY(TERRATEC, CINERGY_S2_PCI_HD, &vp1041_config,
292 RC_MAP_TERRATEC_CINERGY_S2_HD),
293 MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_1033_DVB_S, &vp1033_config,
294 NULL),
295 MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_1034_DVB_S, &vp1034_config,
296 NULL),
297 MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_1041_DVB_S2, &vp1041_config,
298 RC_MAP_TWINHAN_DTV_CAB_CI),
299 MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_2033_DVB_C, &vp2033_config,
300 RC_MAP_TWINHAN_DTV_CAB_CI),
301 MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_2040_DVB_C, &vp2040_config,
302 NULL),
303 MAKE_ENTRY(TWINHAN_TECHNOLOGIES, MANTIS_VP_3030_DVB_T, &vp3030_config,
304 NULL),
Manu Abrahamb3b96142009-12-04 05:41:11 -0300305 { }
306};
307
Manu Abraham116d5882010-02-11 04:11:05 -0300308MODULE_DEVICE_TABLE(pci, mantis_pci_table);
309
Manu Abrahamb3b96142009-12-04 05:41:11 -0300310static struct pci_driver mantis_pci_driver = {
311 .name = DRIVER_NAME,
312 .id_table = mantis_pci_table,
313 .probe = mantis_pci_probe,
314 .remove = mantis_pci_remove,
315};
316
Libo Chena19b56e2013-05-26 22:31:39 -0300317module_pci_driver(mantis_pci_driver);
Manu Abrahamb3b96142009-12-04 05:41:11 -0300318
319MODULE_DESCRIPTION("MANTIS driver");
320MODULE_AUTHOR("Manu Abraham");
321MODULE_LICENSE("GPL");