blob: d0b645a483c9ccb52a2bdd835a8be0f5892ea27e [file] [log] [blame]
Manu Abraham41e840b2009-12-02 21:57:10 -03001/*
2 Mantis PCI bridge driver
3
Manu Abraham8825a092009-12-15 09:13:49 -03004 Copyright (C) Manu Abraham (abraham.manu@gmail.com)
Manu Abraham41e840b2009-12-02 21:57:10 -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
21#ifndef __MANTIS_COMMON_H
22#define __MANTIS_COMMON_H
23
Manu Abrahame2f67e42009-12-03 05:42:10 -030024#include <linux/mutex.h>
Manu Abrahamadd20632009-12-04 05:39:57 -030025#include <linux/workqueue.h>
Manu Abraham41e840b2009-12-02 21:57:10 -030026
Manu Abrahamadd20632009-12-04 05:39:57 -030027#include "mantis_uart.h"
Manu Abraham41e840b2009-12-02 21:57:10 -030028
Manu Abrahambc4ed422009-12-04 05:03:35 -030029#include "mantis_link.h"
30
Manu Abraham41e840b2009-12-02 21:57:10 -030031#define MANTIS_ERROR 0
32#define MANTIS_NOTICE 1
33#define MANTIS_INFO 2
34#define MANTIS_DEBUG 3
Manu Abrahambc832fa2009-12-04 05:57:28 -030035#define MANTIS_TMG 9
Manu Abraham41e840b2009-12-02 21:57:10 -030036
Manu Abrahamb3b96142009-12-04 05:41:11 -030037#define dprintk(y, z, format, arg...) do { \
Manu Abraham41e840b2009-12-02 21:57:10 -030038 if (z) { \
Manu Abrahamb3b96142009-12-04 05:41:11 -030039 if ((mantis->verbose > MANTIS_ERROR) && (mantis->verbose > y)) \
Manu Abraham41e840b2009-12-02 21:57:10 -030040 printk(KERN_ERR "%s (%d): " format "\n" , __func__ , mantis->num , ##arg); \
Manu Abrahamb3b96142009-12-04 05:41:11 -030041 else if ((mantis->verbose > MANTIS_NOTICE) && (mantis->verbose > y)) \
Manu Abraham41e840b2009-12-02 21:57:10 -030042 printk(KERN_NOTICE "%s (%d): " format "\n" , __func__ , mantis->num , ##arg); \
Manu Abrahamb3b96142009-12-04 05:41:11 -030043 else if ((mantis->verbose > MANTIS_INFO) && (mantis->verbose > y)) \
Manu Abraham41e840b2009-12-02 21:57:10 -030044 printk(KERN_INFO "%s (%d): " format "\n" , __func__ , mantis->num , ##arg); \
Manu Abrahamb3b96142009-12-04 05:41:11 -030045 else if ((mantis->verbose > MANTIS_DEBUG) && (mantis->verbose > y)) \
Manu Abraham41e840b2009-12-02 21:57:10 -030046 printk(KERN_DEBUG "%s (%d): " format "\n" , __func__ , mantis->num , ##arg); \
Manu Abrahambc832fa2009-12-04 05:57:28 -030047 else if ((mantis->verbose > MANTIS_TMG) && (mantis->verbose > y)) \
48 printk(KERN_DEBUG "%s (%d): " format "\n" , __func__ , mantis->num , ##arg); \
Manu Abraham41e840b2009-12-02 21:57:10 -030049 } else { \
Manu Abrahamb3b96142009-12-04 05:41:11 -030050 if (mantis->verbose > y) \
Manu Abraham41e840b2009-12-02 21:57:10 -030051 printk(format , ##arg); \
52 } \
53} while(0)
54
55#define mwrite(dat, addr) writel((dat), addr)
56#define mread(addr) readl(addr)
57
Manu Abrahamb3b96142009-12-04 05:41:11 -030058#define mmwrite(dat, addr) mwrite((dat), (mantis->mmio + (addr)))
59#define mmread(addr) mread(mantis->mmio + (addr))
Manu Abraham41e840b2009-12-02 21:57:10 -030060
Manu Abraham01a8c3e2009-12-03 05:38:33 -030061#define MANTIS_TS_188 0
62#define MANTIS_TS_204 1
Manu Abraham41e840b2009-12-02 21:57:10 -030063
Manu Abrahamb3b96142009-12-04 05:41:11 -030064#define TWINHAN_TECHNOLOGIES 0x1822
65#define MANTIS 0x4e35
66
67#define TECHNISAT 0x1ae4
68#define TERRATEC 0x153b
69
70#define MAKE_ENTRY(__subven, __subdev, __configptr) { \
71 .vendor = TWINHAN_TECHNOLOGIES, \
72 .device = MANTIS, \
73 .subvendor = (__subven), \
74 .subdevice = (__subdev), \
75 .driver_data = (unsigned long) (__configptr) \
76}
77
Manu Abrahambc832fa2009-12-04 05:57:28 -030078enum mantis_i2c_mode {
79 MANTIS_PAGE_MODE = 0,
80 MANTIS_BYTE_MODE,
81};
82
Manu Abrahamb3b96142009-12-04 05:41:11 -030083struct mantis_pci;
84
Manu Abrahamdf0cca12009-12-02 22:07:24 -030085struct mantis_hwconfig {
86 char *model_name;
87 char *dev_type;
Manu Abraham01a8c3e2009-12-03 05:38:33 -030088 u32 ts_size;
Manu Abrahamadd20632009-12-04 05:39:57 -030089
90 enum mantis_baud baud_rate;
91 enum mantis_parity parity;
92 u32 bytes;
Manu Abrahamb3b96142009-12-04 05:41:11 -030093
94 irqreturn_t (*irq_handler)(int irq, void *dev_id);
95 int (*frontend_init)(struct mantis_pci *mantis, struct dvb_frontend *fe);
96
97 u8 power;
98 u8 reset;
Manu Abrahambc832fa2009-12-04 05:57:28 -030099
100 enum mantis_i2c_mode i2c_mode;
Manu Abrahamdf0cca12009-12-02 22:07:24 -0300101};
102
Manu Abraham41e840b2009-12-02 21:57:10 -0300103struct mantis_pci {
Manu Abrahamd5755712009-12-04 05:04:18 -0300104 unsigned int verbose;
105
Manu Abraham41e840b2009-12-02 21:57:10 -0300106 /* PCI stuff */
107 u16 vendor_id;
108 u16 device_id;
Manu Abrahamdf0cca12009-12-02 22:07:24 -0300109 u16 subsystem_vendor;
110 u16 subsystem_device;
111
Manu Abraham41e840b2009-12-02 21:57:10 -0300112 u8 latency;
113
Manu Abraham8154bad2009-12-03 05:46:06 -0300114 struct pci_dev *pdev;
Manu Abraham41e840b2009-12-02 21:57:10 -0300115
116 unsigned long mantis_addr;
Manu Abrahamb3b96142009-12-04 05:41:11 -0300117 void __iomem *mmio;
Manu Abraham41e840b2009-12-02 21:57:10 -0300118
119 u8 irq;
120 u8 revision;
121
122 unsigned int num;
Manu Abraham41e840b2009-12-02 21:57:10 -0300123
124 /* RISC Core */
125 u32 finished_block;
126 u32 last_block;
127 u32 line_bytes;
128 u32 line_count;
129 u32 risc_pos;
130 u8 *buf_cpu;
131 dma_addr_t buf_dma;
132 u32 *risc_cpu;
133 dma_addr_t risc_dma;
134
135 struct tasklet_struct tasklet;
136
137 struct i2c_adapter adapter;
138 int i2c_rc;
139 wait_queue_head_t i2c_wq;
Manu Abrahame2f67e42009-12-03 05:42:10 -0300140 struct mutex i2c_lock;
Manu Abraham41e840b2009-12-02 21:57:10 -0300141
142 /* DVB stuff */
143 struct dvb_adapter dvb_adapter;
144 struct dvb_frontend *fe;
145 struct dvb_demux demux;
146 struct dmxdev dmxdev;
147 struct dmx_frontend fe_hw;
148 struct dmx_frontend fe_mem;
149 struct dvb_net dvbnet;
150
151 u8 feeds;
152
Manu Abrahamdf0cca12009-12-02 22:07:24 -0300153 struct mantis_hwconfig *hwconfig;
Manu Abraham41e840b2009-12-02 21:57:10 -0300154
Manu Abraham55172772009-12-02 22:09:53 -0300155 u32 mantis_int_stat;
156 u32 mantis_int_mask;
Manu Abraham41e840b2009-12-02 21:57:10 -0300157
158 /* board specific */
159 u8 mac_address[8];
160 u32 sub_vendor_id;
161 u32 sub_device_id;
162
163 /* A12 A13 A14 */
Manu Abraham4d5a28e2009-12-04 05:15:38 -0300164 u32 gpio_status;
Manu Abrahambc4ed422009-12-04 05:03:35 -0300165
Manu Abraham17b77fc2009-12-04 05:26:46 -0300166 u32 gpif_status;
167
Manu Abrahambc4ed422009-12-04 05:03:35 -0300168 struct mantis_ca *mantis_ca;
Manu Abrahamadd20632009-12-04 05:39:57 -0300169
170 wait_queue_head_t uart_wq;
171 struct work_struct uart_work;
172 spinlock_t uart_lock;
Manu Abrahama1497352009-12-11 20:41:07 -0300173
174 struct input_dev *rc;
Manu Abrahamdf0cca12009-12-02 22:07:24 -0300175};
Manu Abraham41e840b2009-12-02 21:57:10 -0300176
Manu Abraham263645d2009-12-04 05:33:31 -0300177#define MANTIS_HIF_STATUS (mantis->gpio_status)
Manu Abrahamb2d8f5e2009-12-04 05:16:24 -0300178
Manu Abrahamb3b96142009-12-04 05:41:11 -0300179#endif /* __MANTIS_COMMON_H */