blob: 6c7534af6b44c86e33f948ed0b45601ac102005c [file] [log] [blame]
Manu Abrahambd1fcac2009-12-02 22:06:15 -03001/*
2 Mantis PCI bridge driver
3
Manu Abraham8825a092009-12-15 09:13:49 -03004 Copyright (C) Manu Abraham (abraham.manu@gmail.com)
Manu Abrahambd1fcac2009-12-02 22:06:15 -03005
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>
Manu Abrahambd1fcac2009-12-02 22:06:15 -030024#include <asm/io.h>
25#include <asm/pgtable.h>
26#include <asm/page.h>
27#include <linux/kmod.h>
28#include <linux/vmalloc.h>
29#include <linux/init.h>
30#include <linux/device.h>
Manu Abrahamb3b96142009-12-04 05:41:11 -030031#include <linux/pci.h>
Manu Abrahambd1fcac2009-12-02 22:06:15 -030032
33#include <asm/irq.h>
34#include <linux/signal.h>
35#include <linux/sched.h>
36#include <linux/interrupt.h>
37
Manu Abrahamb3b96142009-12-04 05:41:11 -030038#include "dmxdev.h"
39#include "dvbdev.h"
40#include "dvb_demux.h"
41#include "dvb_frontend.h"
42#include "dvb_net.h"
Manu Abrahambd1fcac2009-12-02 22:06:15 -030043
Manu Abrahamb3b96142009-12-04 05:41:11 -030044#include <asm/irq.h>
45#include <linux/signal.h>
46#include <linux/sched.h>
47#include <linux/interrupt.h>
Manu Abrahambd1fcac2009-12-02 22:06:15 -030048
Manu Abrahamb3b96142009-12-04 05:41:11 -030049#include "mantis_common.h"
50#include "mantis_reg.h"
51#include "mantis_pci.h"
Manu Abrahambd1fcac2009-12-02 22:06:15 -030052
Manu Abrahamb3b96142009-12-04 05:41:11 -030053#define DRIVER_NAME "Mantis Core"
Manu Abrahambd1fcac2009-12-02 22:06:15 -030054
Manu Abrahamb3b96142009-12-04 05:41:11 -030055int __devinit mantis_pci_init(struct mantis_pci *mantis)
Manu Abrahambd1fcac2009-12-02 22:06:15 -030056{
57 u8 revision, latency;
Manu Abrahamb3b96142009-12-04 05:41:11 -030058 struct mantis_hwconfig *config = mantis->hwconfig;
59 struct pci_dev *pdev = mantis->pdev;
60 int err, ret = 0;
Manu Abrahambd1fcac2009-12-02 22:06:15 -030061
Manu Abrahamb3b96142009-12-04 05:41:11 -030062 dprintk(MANTIS_ERROR, 0, "found a %s PCI %s device on (%02x:%02x.%x),\n",
63 config->model_name,
64 config->dev_type,
65 mantis->pdev->bus->number,
66 PCI_SLOT(mantis->pdev->devfn),
67 PCI_FUNC(mantis->pdev->devfn));
68
69 err = pci_enable_device(pdev);
70 if (err != 0) {
71 ret = -ENODEV;
72 dprintk(MANTIS_ERROR, 1, "ERROR: PCI enable failed <%i>", err);
73 goto fail0;
74 }
75
Mauro Carvalho Chehab184ac752009-12-17 00:06:04 -020076 err = pci_set_consistent_dma_mask(pdev, DMA_BIT_MASK(32));
Manu Abrahamb3b96142009-12-04 05:41:11 -030077 if (err != 0) {
78 dprintk(MANTIS_ERROR, 1, "ERROR: Unable to obtain 32 bit DMA <%i>", err);
Manu Abrahambd1fcac2009-12-02 22:06:15 -030079 ret = -ENOMEM;
Manu Abrahamb3b96142009-12-04 05:41:11 -030080 goto fail1;
Manu Abrahambd1fcac2009-12-02 22:06:15 -030081 }
82
Manu Abrahambd1fcac2009-12-02 22:06:15 -030083 pci_set_master(pdev);
Manu Abrahamb3b96142009-12-04 05:41:11 -030084
85 if (!request_mem_region(pci_resource_start(pdev, 0),
86 pci_resource_len(pdev, 0),
87 DRIVER_NAME)) {
88
89 dprintk(MANTIS_ERROR, 1, "ERROR: BAR0 Request failed !");
90 ret = -ENODEV;
91 goto fail1;
92 }
93
94 mantis->mmio = ioremap(pci_resource_start(pdev, 0),
95 pci_resource_len(pdev, 0));
96
97 if (!mantis->mmio) {
98 dprintk(MANTIS_ERROR, 1, "ERROR: BAR0 remap failed !");
99 ret = -ENODEV;
100 goto fail2;
101 }
102
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300103 pci_read_config_byte(pdev, PCI_LATENCY_TIMER, &latency);
104 pci_read_config_byte(pdev, PCI_CLASS_REVISION, &revision);
105 mantis->latency = latency;
106 mantis->revision = revision;
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300107
Manu Abrahamb3b96142009-12-04 05:41:11 -0300108 dprintk(MANTIS_ERROR, 0, " Mantis Rev %d [%04x:%04x], ",
109 mantis->revision,
110 mantis->pdev->subsystem_vendor,
111 mantis->pdev->subsystem_device);
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300112
Manu Abrahamb3b96142009-12-04 05:41:11 -0300113 dprintk(MANTIS_ERROR, 0,
114 "irq: %d, latency: %d\n memory: 0x%lx, mmio: 0x%p\n",
115 mantis->pdev->irq,
116 mantis->latency,
117 mantis->mantis_addr,
118 mantis->mmio);
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300119
Manu Abrahamb3b96142009-12-04 05:41:11 -0300120 err = request_irq(pdev->irq,
121 config->irq_handler,
122 IRQF_SHARED,
123 DRIVER_NAME,
124 mantis);
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300125
Manu Abrahamb3b96142009-12-04 05:41:11 -0300126 if (err != 0) {
127
128 dprintk(MANTIS_ERROR, 1, "ERROR: IRQ registration failed ! <%d>", err);
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300129 ret = -ENODEV;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300130 goto fail3;
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300131 }
132
Manu Abrahamb3b96142009-12-04 05:41:11 -0300133 pci_set_drvdata(pdev, mantis);
134 return ret;
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300135
Manu Abrahamb3b96142009-12-04 05:41:11 -0300136 /* Error conditions */
137fail3:
138 dprintk(MANTIS_ERROR, 1, "ERROR: <%d> I/O unmap", ret);
139 if (mantis->mmio)
140 iounmap(mantis->mmio);
141
142fail2:
143 dprintk(MANTIS_ERROR, 1, "ERROR: <%d> releasing regions", ret);
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300144 release_mem_region(pci_resource_start(pdev, 0),
Manu Abrahamb3b96142009-12-04 05:41:11 -0300145 pci_resource_len(pdev, 0));
146
147fail1:
148 dprintk(MANTIS_ERROR, 1, "ERROR: <%d> disabling device", ret);
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300149 pci_disable_device(pdev);
Manu Abrahamb3b96142009-12-04 05:41:11 -0300150
151fail0:
152 dprintk(MANTIS_ERROR, 1, "ERROR: <%d> exiting", ret);
153 pci_set_drvdata(pdev, NULL);
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300154 return ret;
155}
Manu Abrahamb3b96142009-12-04 05:41:11 -0300156EXPORT_SYMBOL_GPL(mantis_pci_init);
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300157
Mauro Carvalho Chehab4cf0b3f2009-12-18 09:58:46 -0200158void mantis_pci_exit(struct mantis_pci *mantis)
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300159{
Manu Abrahamb3b96142009-12-04 05:41:11 -0300160 struct pci_dev *pdev = mantis->pdev;
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300161
Manu Abrahamb3b96142009-12-04 05:41:11 -0300162 dprintk(MANTIS_NOTICE, 1, " mem: 0x%p", mantis->mmio);
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300163 free_irq(pdev->irq, mantis);
Manu Abrahamb3b96142009-12-04 05:41:11 -0300164 if (mantis->mmio) {
165 iounmap(mantis->mmio);
166 release_mem_region(pci_resource_start(pdev, 0),
167 pci_resource_len(pdev, 0));
168 }
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300169
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300170 pci_disable_device(pdev);
Manu Abrahamb3b96142009-12-04 05:41:11 -0300171 pci_set_drvdata(pdev, NULL);
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300172}
Manu Abrahamb3b96142009-12-04 05:41:11 -0300173EXPORT_SYMBOL_GPL(mantis_pci_exit);
Manu Abrahambd1fcac2009-12-02 22:06:15 -0300174
175MODULE_DESCRIPTION("Mantis PCI DTV bridge driver");
176MODULE_AUTHOR("Manu Abraham");
177MODULE_LICENSE("GPL");