Mercurial > pt1
annotate driver/pt1_pci.c @ 128:9e9dbb17b70f
cosmetic
author | Yoshiki Yazawa <yaz@honeyplanet.jp> |
---|---|
date | Thu, 15 Mar 2012 16:51:05 +0900 |
parents | f2ae5ddeed7e |
children | 2dc994610477 |
rev | line source |
---|---|
108
bc173c443e4d
make sure that wait after set_sleepmode()
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
102
diff
changeset
|
1 /* -*- tab-width: 4; indent-tabs-mode: t -*- */ |
0 | 2 /* pt1-pci.c: A PT1 on PCI bus driver for Linux. */ |
3 #define DRV_NAME "pt1-pci" | |
90
c6311b6efd9c
- version string should be generated upon revision on mercurial repository
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
86
diff
changeset
|
4 #include "version.h" |
0 | 5 |
6 #include <linux/module.h> | |
7 #include <linux/kernel.h> | |
8 #include <linux/errno.h> | |
9 #include <linux/pci.h> | |
10 #include <linux/init.h> | |
11 #include <linux/interrupt.h> | |
12 | |
13 #include <asm/system.h> | |
14 #include <asm/io.h> | |
15 #include <asm/irq.h> | |
16 #include <asm/uaccess.h> | |
17 #include <linux/version.h> | |
18 #include <linux/mutex.h> | |
36 | 19 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,23) |
0 | 20 #include <linux/freezer.h> |
21 #else | |
22 #define set_freezable() | |
36 | 23 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,11) |
0 | 24 typedef struct pm_message { |
25 int event; | |
26 } pm_message_t; | |
27 #endif | |
28 #endif | |
29 #include <linux/kthread.h> | |
30 #include <linux/dma-mapping.h> | |
31 | |
32 #include <linux/fs.h> | |
33 #include <linux/cdev.h> | |
34 | |
35 #include <linux/ioctl.h> | |
36 | |
37 #include "pt1_com.h" | |
38 #include "pt1_pci.h" | |
39 #include "pt1_tuner.h" | |
40 #include "pt1_i2c.h" | |
41 #include "pt1_tuner_data.h" | |
42 #include "pt1_ioctl.h" | |
43 | |
44 /* These identify the driver base version and may not be removed. */ | |
45 static char version[] __devinitdata = | |
93 | 46 DRV_NAME ".c: " DRV_VERSION " " DRV_RELDATE " \n"; |
0 | 47 |
90
c6311b6efd9c
- version string should be generated upon revision on mercurial repository
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
86
diff
changeset
|
48 MODULE_AUTHOR("Tomoaki Ishikawa tomy@users.sourceforge.jp and Yoshiki Yazawa yaz@honeyplanet.jp"); |
c6311b6efd9c
- version string should be generated upon revision on mercurial repository
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
86
diff
changeset
|
49 #define DRIVER_DESC "PCI earthsoft PT1/2 driver" |
0 | 50 MODULE_DESCRIPTION(DRIVER_DESC); |
51 MODULE_LICENSE("GPL"); | |
52 | |
51
c915076353ae
backout 23b6f99f65b2 for now. it may cause scheduling while atomic operation.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
50
diff
changeset
|
53 static int debug = 7; /* 1 normal messages, 0 quiet .. 7 verbose. */ |
c915076353ae
backout 23b6f99f65b2 for now. it may cause scheduling while atomic operation.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
50
diff
changeset
|
54 static int lnb = 0; /* LNB OFF:0 +11V:1 +15V:2 */ |
0 | 55 |
56 module_param(debug, int, 0); | |
57 module_param(lnb, int, 0); | |
58 MODULE_PARM_DESC(debug, "debug level (1-2)"); | |
59 MODULE_PARM_DESC(debug, "LNB level (0:OFF 1:+11V 2:+15V)"); | |
60 | |
64
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
61 #define VENDOR_EARTHSOFT 0x10ee |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
62 #define PCI_PT1_ID 0x211a |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
63 #define PCI_PT2_ID 0x222a |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
64 |
0 | 65 static struct pci_device_id pt1_pci_tbl[] = { |
64
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
66 { VENDOR_EARTHSOFT, PCI_PT1_ID, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
67 { VENDOR_EARTHSOFT, PCI_PT2_ID, PCI_ANY_ID, PCI_ANY_ID, 0, 0, 0 }, |
0 | 68 { 0, } |
69 }; | |
70 MODULE_DEVICE_TABLE(pci, pt1_pci_tbl); | |
71 #define DEV_NAME "pt1video" | |
72 | |
37
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
73 #define PACKET_SIZE 188 // 1パケット長 |
0 | 74 #define MAX_READ_BLOCK 4 // 1度に読み出す最大DMAバッファ数 |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
75 #define MAX_PCI_DEVICE 128 // 最大64枚 |
0 | 76 #define DMA_SIZE 4096 // DMAバッファサイズ |
124 | 77 #define DMA_RING_SIZE 128 // number of DMA RINGS |
78 #define DMA_RING_MAX 511 // number of DMA entries in a RING(1023はNGで511まで) | |
79 #define CHANNEL_DMA_SIZE (2*1024*1024) // 地デジ用(16Mbps) | |
80 #define BS_CHANNEL_DMA_SIZE (4*1024*1024) // BS用(32Mbps) | |
120
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
81 #define READ_SIZE (16*DMA_SIZE) |
0 | 82 |
83 typedef struct _DMA_CONTROL{ | |
84 dma_addr_t ring_dma[DMA_RING_MAX] ; // DMA情報 | |
85 __u32 *data[DMA_RING_MAX]; | |
86 }DMA_CONTROL; | |
87 | |
88 typedef struct _PT1_CHANNEL PT1_CHANNEL; | |
89 | |
90 typedef struct _pt1_device{ | |
91 unsigned long mmio_start ; | |
92 __u32 mmio_len ; | |
93 void __iomem *regs; | |
94 struct mutex lock ; | |
95 dma_addr_t ring_dma[DMA_RING_SIZE] ; // DMA情報 | |
96 void *dmaptr[DMA_RING_SIZE] ; | |
97 struct task_struct *kthread; | |
98 dev_t dev ; | |
31
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
99 int card_number; |
0 | 100 __u32 base_minor ; |
101 struct cdev cdev[MAX_CHANNEL]; | |
102 wait_queue_head_t dma_wait_q ;// for poll on reading | |
40
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
103 DMA_CONTROL *dmactl[DMA_RING_SIZE]; |
0 | 104 PT1_CHANNEL *channel[MAX_CHANNEL]; |
64
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
105 int cardtype; |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
106 } PT1_DEVICE; |
0 | 107 |
108 typedef struct _MICRO_PACKET{ | |
109 char data[3]; | |
110 char head ; | |
111 }MICRO_PACKET; | |
112 | |
113 struct _PT1_CHANNEL{ | |
114 __u32 valid ; // 使用中フラグ | |
115 __u32 address ; // I2Cアドレス | |
116 __u32 channel ; // チャネル番号 | |
37
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
117 int type ; // チャネルタイプ |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
118 __u32 packet_size ; // パケットサイズ |
0 | 119 __u32 drop ; // パケットドロップ数 |
120 struct mutex lock ; // CH別mutex_lock用 | |
121 __u32 size ; // DMAされたサイズ | |
122 __u32 maxsize ; // DMA用バッファサイズ | |
123 __u32 bufsize ; // チャネルに割り振られたサイズ | |
124 __u32 overflow ; // オーバーフローエラー発生 | |
125 __u32 counetererr ; // 転送カウンタ1エラー | |
126 __u32 transerr ; // 転送エラー | |
127 __u32 minor ; // マイナー番号 | |
128 __u8 *buf; // CH別受信メモリ | |
41
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
129 __u32 pointer; |
0 | 130 __u8 req_dma ; // 溢れたチャネル |
37
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
131 __u8 packet_buf[PACKET_SIZE] ; // 溢れたチャネル |
0 | 132 PT1_DEVICE *ptr ; // カード別情報 |
133 wait_queue_head_t wait_q ; // for poll on reading | |
134 }; | |
135 | |
136 // I2Cアドレス(video0, 1 = ISDB-S) (video2, 3 = ISDB-T) | |
137 int i2c_address[MAX_CHANNEL] = {T0_ISDB_S, T1_ISDB_S, T0_ISDB_T, T1_ISDB_T}; | |
86 | 138 int real_channel[MAX_CHANNEL] = {0, 2, 1, 3}; |
0 | 139 int channeltype[MAX_CHANNEL] = {CHANNEL_TYPE_ISDB_S, CHANNEL_TYPE_ISDB_S, |
140 CHANNEL_TYPE_ISDB_T, CHANNEL_TYPE_ISDB_T}; | |
141 | |
142 static PT1_DEVICE *device[MAX_PCI_DEVICE]; | |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
143 static struct class *pt1video_class; |
0 | 144 |
145 #define PT1MAJOR 251 | |
146 #define DRIVERNAME "pt1video" | |
147 | |
148 static void reset_dma(PT1_DEVICE *dev_conf) | |
149 { | |
150 | |
151 int lp ; | |
152 __u32 addr ; | |
153 int ring_pos = 0; | |
154 int data_pos = 0 ; | |
155 __u32 *dataptr ; | |
156 | |
157 // データ初期化 | |
158 for(ring_pos = 0 ; ring_pos < DMA_RING_SIZE ; ring_pos++){ | |
159 for(data_pos = 0 ; data_pos < DMA_RING_MAX ; data_pos++){ | |
40
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
160 dataptr = (dev_conf->dmactl[ring_pos])->data[data_pos]; |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
161 dataptr[(DMA_SIZE / sizeof(__u32)) - 2] = 0; |
0 | 162 } |
163 } | |
164 // 転送カウンタをリセット | |
165 writel(0x00000010, dev_conf->regs); | |
166 // 転送カウンタをインクリメント | |
167 for(lp = 0 ; lp < DMA_RING_SIZE ; lp++){ | |
168 writel(0x00000020, dev_conf->regs); | |
169 } | |
170 | |
171 addr = (int)dev_conf->ring_dma[0] ; | |
172 addr >>= 12 ; | |
173 // DMAバッファ設定 | |
174 writel(addr, dev_conf->regs + DMA_ADDR); | |
175 // DMA開始 | |
176 writel(0x0c000040, dev_conf->regs); | |
177 | |
178 } | |
179 static int pt1_thread(void *data) | |
180 { | |
181 PT1_DEVICE *dev_conf = data ; | |
182 PT1_CHANNEL *channel ; | |
183 int ring_pos = 0; | |
184 int data_pos = 0 ; | |
185 int lp ; | |
186 int chno ; | |
37
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
187 int dma_channel ; |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
188 int packet_pos ; |
0 | 189 __u32 *dataptr ; |
190 __u32 *curdataptr ; | |
191 __u32 val ; | |
192 union mpacket{ | |
193 __u32 val ; | |
194 MICRO_PACKET packet ; | |
195 }micro; | |
196 | |
197 set_freezable(); | |
198 reset_dma(dev_conf); | |
199 printk(KERN_INFO "pt1_thread run\n"); | |
200 | |
201 for(;;){ | |
202 if(kthread_should_stop()){ | |
203 break ; | |
204 } | |
205 | |
206 for(;;){ | |
40
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
207 dataptr = (dev_conf->dmactl[ring_pos])->data[data_pos]; |
0 | 208 // データあり? |
209 if(dataptr[(DMA_SIZE / sizeof(__u32)) - 2] == 0){ | |
210 break ; | |
211 } | |
212 micro.val = *dataptr ; | |
213 curdataptr = dataptr ; | |
214 data_pos += 1 ; | |
215 for(lp = 0 ; lp < (DMA_SIZE / sizeof(__u32)) ; lp++, dataptr++){ | |
216 micro.val = *dataptr ; | |
37
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
217 dma_channel = ((micro.packet.head >> 5) & 0x07); |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
218 //チャネル情報不正 |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
219 if(dma_channel > MAX_CHANNEL){ |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
220 printk(KERN_ERR "DMA Channel Number Error(%d)\n", dma_channel); |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
221 continue ; |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
222 } |
86 | 223 chno = real_channel[(((micro.packet.head >> 5) & 0x07) - 1)]; |
37
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
224 packet_pos = ((micro.packet.head >> 2) & 0x07); |
0 | 225 channel = dev_conf->channel[chno] ; |
226 // エラーチェック | |
227 if((micro.packet.head & MICROPACKET_ERROR)){ | |
228 val = readl(dev_conf->regs); | |
229 if((val & BIT_RAM_OVERFLOW)){ | |
230 channel->overflow += 1 ; | |
231 } | |
232 if((val & BIT_INITIATOR_ERROR)){ | |
233 channel->counetererr += 1 ; | |
234 } | |
235 if((val & BIT_INITIATOR_WARNING)){ | |
236 channel->transerr += 1 ; | |
237 } | |
238 // 初期化して先頭から | |
239 reset_dma(dev_conf); | |
240 ring_pos = data_pos = 0 ; | |
241 break ; | |
242 } | |
243 // 未使用チャネルは捨てる | |
244 if(channel->valid == FALSE){ | |
245 continue ; | |
246 } | |
247 mutex_lock(&channel->lock); | |
248 // あふれたら読み出すまで待つ | |
249 while(1){ | |
41
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
250 if(channel->size >= (channel->maxsize - PACKET_SIZE - 4)){ |
0 | 251 // 該当チャンネルのDMA読みだし待ちにする |
252 wake_up(&channel->wait_q); | |
253 channel->req_dma = TRUE ; | |
254 mutex_unlock(&channel->lock); | |
255 // タスクに時間を渡す為中断 | |
256 wait_event_timeout(dev_conf->dma_wait_q, (channel->req_dma == FALSE), | |
257 msecs_to_jiffies(500)); | |
258 mutex_lock(&channel->lock); | |
259 channel->drop += 1 ; | |
260 }else{ | |
261 break ; | |
262 } | |
263 } | |
37
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
264 // 先頭で、一時バッファに残っている場合 |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
265 if((micro.packet.head & 0x02) && (channel->packet_size != 0)){ |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
266 channel->packet_size = 0 ; |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
267 } |
0 | 268 // データコピー |
124 | 269 channel->packet_buf[channel->packet_size] = micro.packet.data[2]; |
270 channel->packet_buf[channel->packet_size+1] = micro.packet.data[1]; | |
271 channel->packet_buf[channel->packet_size+2] = micro.packet.data[0]; | |
272 channel->packet_size += 3; | |
37
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
273 |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
274 // パケットが出来たらコピーする |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
275 if(channel->packet_size >= PACKET_SIZE){ |
41
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
276 if (channel->pointer + channel->size >= channel->maxsize) { |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
277 // リングバッファの境界を越えていてリングバッファの先頭に戻っている場合 |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
278 // channel->pointer + channel->size - channel->maxsize でリングバッファ先頭からのアドレスになる |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
279 memcpy(&channel->buf[channel->pointer + channel->size - channel->maxsize], channel->packet_buf, PACKET_SIZE); |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
280 } else if (channel->pointer + channel->size + PACKET_SIZE > channel->maxsize) { |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
281 // リングバッファの境界をまたぐように書き込まれる場合 |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
282 // リングバッファの境界まで書き込み |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
283 __u32 tmp_size = channel->maxsize - (channel->pointer + channel->size); |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
284 memcpy(&channel->buf[channel->pointer + channel->size], channel->packet_buf, tmp_size); |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
285 // 先頭に戻って書き込み |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
286 memcpy(channel->buf, &channel->packet_buf[tmp_size], PACKET_SIZE - tmp_size); |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
287 } else { |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
288 // リングバッファ内で収まる場合 |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
289 // 通常の書き込み |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
290 memcpy(&channel->buf[channel->pointer + channel->size], channel->packet_buf, PACKET_SIZE); |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
291 } |
37
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
292 channel->size += PACKET_SIZE ; |
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
293 channel->packet_size = 0 ; |
0 | 294 } |
295 mutex_unlock(&channel->lock); | |
296 } | |
297 curdataptr[(DMA_SIZE / sizeof(__u32)) - 2] = 0; | |
298 | |
299 if(data_pos >= DMA_RING_MAX){ | |
300 data_pos = 0; | |
301 ring_pos += 1 ; | |
302 // DMAリングが変わった場合はインクリメント | |
303 writel(0x00000020, dev_conf->regs); | |
304 if(ring_pos >= DMA_RING_SIZE){ | |
305 ring_pos = 0 ; | |
306 } | |
307 } | |
308 | |
120
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
309 // 頻度を落す(wait until READ_SIZE) |
0 | 310 for(lp = 0 ; lp < MAX_CHANNEL ; lp++){ |
86 | 311 channel = dev_conf->channel[real_channel[lp]] ; |
120
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
312 if((channel->size >= READ_SIZE) && (channel->valid == TRUE)){ |
0 | 313 wake_up(&channel->wait_q); |
314 } | |
315 } | |
316 } | |
124 | 317 schedule_timeout_interruptible(msecs_to_jiffies(100)); |
0 | 318 } |
319 return 0 ; | |
320 } | |
321 static int pt1_open(struct inode *inode, struct file *file) | |
322 { | |
31
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
323 int major = imajor(inode); |
0 | 324 int minor = iminor(inode); |
325 int lp ; | |
326 int lp2 ; | |
327 PT1_CHANNEL *channel ; | |
328 | |
329 for(lp = 0 ; lp < MAX_PCI_DEVICE ; lp++){ | |
330 if(device[lp] == NULL){ | |
331 return -EIO ; | |
332 } | |
31
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
333 |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
334 if(MAJOR(device[lp]->dev) == major && |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
335 device[lp]->base_minor <= minor && |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
336 device[lp]->base_minor + MAX_CHANNEL > minor) { |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
337 |
0 | 338 mutex_lock(&device[lp]->lock); |
339 for(lp2 = 0 ; lp2 < MAX_CHANNEL ; lp2++){ | |
340 channel = device[lp]->channel[lp2] ; | |
341 if(channel->minor == minor){ | |
342 if(channel->valid == TRUE){ | |
343 mutex_unlock(&device[lp]->lock); | |
344 return -EIO ; | |
345 } | |
111
c8cfd684fee8
re-enable set_sleepmode. backing out r109.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
109
diff
changeset
|
346 |
102
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
347 /* wake tuner up */ |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
348 set_sleepmode(channel->ptr->regs, &channel->lock, |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
349 channel->address, channel->type, |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
350 TYPE_WAKEUP); |
124 | 351 schedule_timeout_interruptible(msecs_to_jiffies(100)); |
111
c8cfd684fee8
re-enable set_sleepmode. backing out r109.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
109
diff
changeset
|
352 |
0 | 353 channel->drop = 0 ; |
354 channel->valid = TRUE ; | |
355 channel->overflow = 0 ; | |
356 channel->counetererr = 0 ; | |
357 channel->transerr = 0 ; | |
37
c359e7adf700
propagate upstream change:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
36
diff
changeset
|
358 channel->packet_size = 0 ; |
0 | 359 file->private_data = channel; |
360 mutex_lock(&channel->lock); | |
361 // データ初期化 | |
362 channel->size = 0 ; | |
363 mutex_unlock(&channel->lock); | |
364 mutex_unlock(&device[lp]->lock); | |
365 return 0 ; | |
366 } | |
367 } | |
368 } | |
369 } | |
370 return -EIO; | |
371 } | |
372 static int pt1_release(struct inode *inode, struct file *file) | |
373 { | |
374 PT1_CHANNEL *channel = file->private_data; | |
375 | |
376 mutex_lock(&channel->ptr->lock); | |
377 SetStream(channel->ptr->regs, channel->channel, FALSE); | |
378 channel->valid = FALSE ; | |
31
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
379 printk(KERN_INFO "(%d:%d)Drop=%08d:%08d:%08d:%08d\n", imajor(inode), iminor(inode), channel->drop, |
0 | 380 channel->overflow, channel->counetererr, channel->transerr); |
381 channel->overflow = 0 ; | |
382 channel->counetererr = 0 ; | |
383 channel->transerr = 0 ; | |
384 channel->drop = 0 ; | |
385 // 停止している場合は起こす | |
386 if(channel->req_dma == TRUE){ | |
387 channel->req_dma = FALSE ; | |
388 wake_up(&channel->ptr->dma_wait_q); | |
389 } | |
390 mutex_unlock(&channel->ptr->lock); | |
102
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
391 |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
392 /* send tuner to sleep */ |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
393 set_sleepmode(channel->ptr->regs, &channel->lock, |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
394 channel->address, channel->type, TYPE_SLEEP); |
124 | 395 schedule_timeout_interruptible(msecs_to_jiffies(100)); |
102
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
396 |
0 | 397 return 0; |
398 } | |
399 | |
400 static ssize_t pt1_read(struct file *file, char __user *buf, size_t cnt, loff_t * ppos) | |
401 { | |
402 PT1_CHANNEL *channel = file->private_data; | |
403 __u32 size ; | |
36 | 404 unsigned long dummy; |
0 | 405 |
120
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
406 // READ_SIZE単位で起こされるのを待つ(CPU負荷対策) |
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
407 if(channel->size < READ_SIZE){ |
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
408 wait_event_timeout(channel->wait_q, (channel->size >= READ_SIZE), |
0 | 409 msecs_to_jiffies(500)); |
410 } | |
411 mutex_lock(&channel->lock); | |
412 if(!channel->size){ | |
413 size = 0 ; | |
414 }else{ | |
41
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
415 __u32 tmp_size = 0; |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
416 if (cnt < channel->size) { |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
417 // バッファにあるデータより小さい読み込みの場合 |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
418 size = cnt; |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
419 } else { |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
420 // バッファにあるデータ以上の読み込みの場合 |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
421 size = channel->size; |
0 | 422 } |
41
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
423 if (channel->maxsize <= size + channel->pointer) { |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
424 // リングバッファの境界を越える場合 |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
425 tmp_size = channel->maxsize - channel->pointer; |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
426 // 境界までコピー |
44 | 427 dummy = copy_to_user(buf, &channel->buf[channel->pointer], tmp_size); |
41
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
428 // 残りをコピー |
44 | 429 dummy = copy_to_user(&buf[tmp_size], channel->buf, size - tmp_size); |
41
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
430 channel->pointer = size - tmp_size; |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
431 } else { |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
432 // 普通にコピー |
44 | 433 dummy = copy_to_user(buf, &channel->buf[channel->pointer], size); |
41
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
434 channel->pointer += size; |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
435 } |
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
436 channel->size -= size; |
0 | 437 } |
438 // 読み終わったかつ使用しているのがが4K以下 | |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
439 if(channel->req_dma == TRUE){ |
0 | 440 channel->req_dma = FALSE ; |
441 wake_up(&channel->ptr->dma_wait_q); | |
442 } | |
443 mutex_unlock(&channel->lock); | |
444 return size ; | |
445 } | |
446 static int SetFreq(PT1_CHANNEL *channel, FREQUENCY *freq) | |
447 { | |
448 | |
449 switch(channel->type){ | |
450 case CHANNEL_TYPE_ISDB_S: | |
451 { | |
452 ISDB_S_TMCC tmcc ; | |
453 if(bs_tune(channel->ptr->regs, | |
454 &channel->ptr->lock, | |
455 channel->address, | |
456 freq->frequencyno, | |
457 &tmcc) < 0){ | |
458 return -EIO ; | |
459 } | |
460 | |
461 #if 0 | |
462 printk(KERN_INFO "clockmargin = (%x)\n", (tmcc.clockmargin & 0xFF)); | |
463 printk(KERN_INFO "carriermargin = (%x)\n", (tmcc.carriermargin & 0xFF)); | |
102
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
464 { |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
465 int lp; |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
466 for(lp = 0 ; lp < MAX_BS_TS_ID ; lp++){ |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
467 if(tmcc.ts_id[lp].ts_id == 0xFFFF){ |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
468 continue ; |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
469 } |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
470 printk(KERN_INFO "Slot(%d:%x)\n", lp, tmcc.ts_id[lp].ts_id); |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
471 printk(KERN_INFO "mode (low/high) = (%x:%x)\n", |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
472 tmcc.ts_id[lp].low_mode, tmcc.ts_id[lp].high_mode); |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
473 printk(KERN_INFO "slot (low/high) = (%x:%x)\n", |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
474 tmcc.ts_id[lp].low_slot, |
6e661e828b43
send tuners to sleep mode when they are inactive
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
95
diff
changeset
|
475 tmcc.ts_id[lp].high_slot); |
0 | 476 } |
477 } | |
478 #endif | |
479 ts_lock(channel->ptr->regs, | |
480 &channel->ptr->lock, | |
481 channel->address, | |
482 tmcc.ts_id[freq->slot].ts_id); | |
483 } | |
484 break ; | |
485 case CHANNEL_TYPE_ISDB_T: | |
486 { | |
487 if(isdb_t_frequency(channel->ptr->regs, | |
488 &channel->ptr->lock, | |
489 channel->address, | |
490 freq->frequencyno, freq->slot) < 0){ | |
491 return -EINVAL ; | |
492 } | |
493 } | |
494 } | |
495 return 0 ; | |
496 } | |
95
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
497 |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
498 static int count_used_bs_tuners(PT1_DEVICE *device) |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
499 { |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
500 int count = 0; |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
501 int i; |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
502 |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
503 for(i=0; i<MAX_CHANNEL; i++) { |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
504 if(device && device->channel[i] && |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
505 device->channel[i]->type == CHANNEL_TYPE_ISDB_S && |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
506 device->channel[i]->valid) |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
507 count++; |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
508 } |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
509 |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
510 printk(KERN_INFO "used bs tuners on %p = %d\n", device, count); |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
511 return count; |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
512 } |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
513 |
119
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
514 static long pt1_do_ioctl(struct file *file, unsigned int cmd, unsigned long arg0) |
0 | 515 { |
516 PT1_CHANNEL *channel = file->private_data; | |
95
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
517 int signal; |
36 | 518 unsigned long dummy; |
519 void *arg = (void *)arg0; | |
80
f336fd2dcf28
make LNB voltage can be specified from user application
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
79
diff
changeset
|
520 int lnb_eff, lnb_usr; |
f336fd2dcf28
make LNB voltage can be specified from user application
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
79
diff
changeset
|
521 char *voltage[] = {"0V", "11V", "15V"}; |
95
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
522 int count; |
0 | 523 |
524 switch(cmd){ | |
525 case SET_CHANNEL: | |
526 { | |
527 FREQUENCY freq ; | |
36 | 528 dummy = copy_from_user(&freq, arg, sizeof(FREQUENCY)); |
0 | 529 return SetFreq(channel, &freq); |
530 } | |
531 case START_REC: | |
532 SetStream(channel->ptr->regs, channel->channel, TRUE); | |
533 return 0 ; | |
534 case STOP_REC: | |
535 SetStream(channel->ptr->regs, channel->channel, FALSE); | |
120
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
536 schedule_timeout_interruptible(msecs_to_jiffies(100)); |
0 | 537 return 0 ; |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
538 case GET_SIGNAL_STRENGTH: |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
539 switch(channel->type){ |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
540 case CHANNEL_TYPE_ISDB_S: |
86 | 541 signal = isdb_s_read_signal_strength(channel->ptr->regs, |
542 &channel->ptr->lock, | |
543 channel->address); | |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
544 break ; |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
545 case CHANNEL_TYPE_ISDB_T: |
36 | 546 signal = isdb_t_read_signal_strength(channel->ptr->regs, |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
547 &channel->ptr->lock, channel->address); |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
548 break ; |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
549 } |
36 | 550 dummy = copy_to_user(arg, &signal, sizeof(int)); |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
551 return 0 ; |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
552 case LNB_ENABLE: |
95
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
553 count = count_used_bs_tuners(channel->ptr); |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
554 if(count <= 1) { |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
555 lnb_usr = (int)arg0; |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
556 lnb_eff = lnb_usr ? lnb_usr : lnb; |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
557 settuner_reset(channel->ptr->regs, channel->ptr->cardtype, lnb_eff, TUNER_POWER_ON_RESET_DISABLE); |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
558 printk(KERN_INFO "PT1:LNB on %s\n", voltage[lnb_eff]); |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
559 } |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
560 return 0 ; |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
561 case LNB_DISABLE: |
95
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
562 count = count_used_bs_tuners(channel->ptr); |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
563 if(count <= 1) { |
82
cfb2da5ee428
added LNB reference count to maintain power state during recording.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
80
diff
changeset
|
564 settuner_reset(channel->ptr->regs, channel->ptr->cardtype, LNB_OFF, TUNER_POWER_ON_RESET_DISABLE); |
95
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
565 printk(KERN_INFO "PT1:LNB off\n"); |
a201531113ca
implement decent LNB management
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
93
diff
changeset
|
566 } |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
567 return 0 ; |
0 | 568 } |
569 return -EINVAL; | |
570 } | |
571 | |
119
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
572 static long pt1_unlocked_ioctl(struct file *file, unsigned int cmd, unsigned long arg0) |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
573 { |
120
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
574 PT1_CHANNEL *channel = file->private_data; |
119
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
575 long ret; |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
576 |
120
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
577 mutex_lock(&channel->lock); |
119
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
578 ret = pt1_do_ioctl(file, cmd, arg0); |
120
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
579 mutex_unlock(&channel->lock); |
119
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
580 |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
581 return ret; |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
582 } |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
583 |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
584 static long pt1_compat_ioctl(struct file *file, unsigned int cmd, unsigned long arg0) |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
585 { |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
586 long ret; |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
587 /* should do 32bit <-> 64bit conversion here? --yaz */ |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
588 ret = pt1_unlocked_ioctl(file, cmd, arg0); |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
589 |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
590 return ret; |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
591 } |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
592 |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
593 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
594 static int pt1_ioctl(struct inode *inode, struct file *file, unsigned int cmd, unsigned long arg0) |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
595 { |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
596 int ret; |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
597 ret = (int)pt1_do_ioctl(file, cmd, arg0); |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
598 return ret; |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
599 } |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
600 #endif |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
601 |
0 | 602 /* |
603 */ | |
604 static const struct file_operations pt1_fops = { | |
605 .owner = THIS_MODULE, | |
606 .open = pt1_open, | |
607 .release = pt1_release, | |
608 .read = pt1_read, | |
119
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
609 #if LINUX_VERSION_CODE < KERNEL_VERSION(2,6,36) |
0 | 610 .ioctl = pt1_ioctl, |
120
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
611 #else |
119
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
612 .unlocked_ioctl = pt1_unlocked_ioctl, |
7662d0ecd74b
revised new ioctl functions
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
118
diff
changeset
|
613 .compat_ioctl = pt1_compat_ioctl, |
120
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
614 #endif |
0 | 615 .llseek = no_llseek, |
616 }; | |
617 | |
618 int pt1_makering(struct pci_dev *pdev, PT1_DEVICE *dev_conf) | |
619 { | |
620 int lp ; | |
621 int lp2 ; | |
622 DMA_CONTROL *dmactl; | |
623 __u32 *dmaptr ; | |
624 __u32 addr ; | |
625 __u32 *ptr ; | |
626 | |
627 //DMAリング作成 | |
628 for(lp = 0 ; lp < DMA_RING_SIZE ; lp++){ | |
629 ptr = dev_conf->dmaptr[lp]; | |
630 if(lp == (DMA_RING_SIZE - 1)){ | |
631 addr = (__u32)dev_conf->ring_dma[0]; | |
632 }else{ | |
633 addr = (__u32)dev_conf->ring_dma[(lp + 1)]; | |
634 } | |
635 addr >>= 12 ; | |
636 memcpy(ptr, &addr, sizeof(__u32)); | |
637 ptr += 1 ; | |
638 | |
40
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
639 dmactl = dev_conf->dmactl[lp]; |
0 | 640 for(lp2 = 0 ; lp2 < DMA_RING_MAX ; lp2++){ |
641 dmaptr = pci_alloc_consistent(pdev, DMA_SIZE, &dmactl->ring_dma[lp2]); | |
642 if(dmaptr == NULL){ | |
643 printk(KERN_INFO "PT1:DMA ALLOC ERROR\n"); | |
644 return -1 ; | |
645 } | |
646 dmactl->data[lp2] = dmaptr ; | |
647 // DMAデータエリア初期化 | |
648 dmaptr[(DMA_SIZE / sizeof(__u32)) - 2] = 0 ; | |
649 addr = (__u32)dmactl->ring_dma[lp2]; | |
650 addr >>= 12 ; | |
651 memcpy(ptr, &addr, sizeof(__u32)); | |
652 ptr += 1 ; | |
653 } | |
654 } | |
655 return 0 ; | |
656 } | |
657 int pt1_dma_init(struct pci_dev *pdev, PT1_DEVICE *dev_conf) | |
658 { | |
659 int lp ; | |
660 void *ptr ; | |
661 | |
662 for(lp = 0 ; lp < DMA_RING_SIZE ; lp++){ | |
663 ptr = pci_alloc_consistent(pdev, DMA_SIZE, &dev_conf->ring_dma[lp]); | |
664 if(ptr == NULL){ | |
665 printk(KERN_INFO "PT1:DMA ALLOC ERROR\n"); | |
666 return -1 ; | |
667 } | |
668 dev_conf->dmaptr[lp] = ptr ; | |
669 } | |
670 | |
671 return pt1_makering(pdev, dev_conf); | |
672 } | |
673 int pt1_dma_free(struct pci_dev *pdev, PT1_DEVICE *dev_conf) | |
674 { | |
675 | |
676 int lp ; | |
677 int lp2 ; | |
678 | |
679 for(lp = 0 ; lp < DMA_RING_SIZE ; lp++){ | |
680 if(dev_conf->dmaptr[lp] != NULL){ | |
681 pci_free_consistent(pdev, DMA_SIZE, | |
682 dev_conf->dmaptr[lp], dev_conf->ring_dma[lp]); | |
683 for(lp2 = 0 ; lp2 < DMA_RING_MAX ; lp2++){ | |
40
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
684 if((dev_conf->dmactl[lp])->data[lp2] != NULL){ |
0 | 685 pci_free_consistent(pdev, DMA_SIZE, |
40
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
686 (dev_conf->dmactl[lp])->data[lp2], |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
687 (dev_conf->dmactl[lp])->ring_dma[lp2]); |
0 | 688 } |
689 } | |
690 } | |
691 } | |
692 return 0 ; | |
693 } | |
694 static int __devinit pt1_pci_init_one (struct pci_dev *pdev, | |
695 const struct pci_device_id *ent) | |
696 { | |
697 int rc ; | |
698 int lp ; | |
699 int minor ; | |
700 u16 cmd ; | |
701 PT1_DEVICE *dev_conf ; | |
702 PT1_CHANNEL *channel ; | |
40
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
703 int i; |
36 | 704 struct resource *dummy; |
0 | 705 |
706 rc = pci_enable_device(pdev); | |
707 if (rc) | |
708 return rc; | |
64
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
709 rc = pci_set_dma_mask(pdev, DMA_BIT_MASK(32)); |
0 | 710 if (rc) { |
711 printk(KERN_ERR "PT1:DMA MASK ERROR"); | |
712 return rc; | |
713 } | |
714 | |
715 pci_read_config_word(pdev, PCI_COMMAND, &cmd); | |
716 if (!(cmd & PCI_COMMAND_MASTER)) { | |
717 printk(KERN_INFO "Attempting to enable Bus Mastering\n"); | |
718 pci_set_master(pdev); | |
719 pci_read_config_word(pdev, PCI_COMMAND, &cmd); | |
720 if (!(cmd & PCI_COMMAND_MASTER)) { | |
721 printk(KERN_ERR "Bus Mastering is not enabled\n"); | |
722 return -EIO; | |
723 } | |
724 } | |
725 printk(KERN_INFO "Bus Mastering Enabled.\n"); | |
726 | |
727 dev_conf = kzalloc(sizeof(PT1_DEVICE), GFP_KERNEL); | |
728 if(!dev_conf){ | |
729 printk(KERN_ERR "PT1:out of memory !"); | |
730 return -ENOMEM ; | |
731 } | |
40
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
732 for (i = 0; i < DMA_RING_SIZE; i++) { |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
733 dev_conf->dmactl[i] = kzalloc(sizeof(DMA_CONTROL), GFP_KERNEL); |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
734 if(!dev_conf->dmactl[i]){ |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
735 int j; |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
736 for (j = 0; j < i; j++) { |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
737 kfree(dev_conf->dmactl[j]); |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
738 } |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
739 kfree(dev_conf); |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
740 printk(KERN_ERR "PT1:out of memory !"); |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
741 return -ENOMEM ; |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
742 } |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
743 } |
64
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
744 |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
745 switch(ent->device) { |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
746 case PCI_PT1_ID: |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
747 dev_conf->cardtype = PT1; |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
748 break; |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
749 case PCI_PT2_ID: |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
750 dev_conf->cardtype = PT2; |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
751 break; |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
752 default: |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
753 break; |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
754 } |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
755 |
0 | 756 // PCIアドレスをマップする |
757 dev_conf->mmio_start = pci_resource_start(pdev, 0); | |
758 dev_conf->mmio_len = pci_resource_len(pdev, 0); | |
36 | 759 dummy = request_mem_region(dev_conf->mmio_start, dev_conf->mmio_len, DEV_NAME); |
760 if (!dummy) { | |
79 | 761 printk(KERN_ERR "PT1:cannot request iomem (0x%llx).\n", (unsigned long long) dev_conf->mmio_start); |
0 | 762 goto out_err_regbase; |
763 } | |
764 | |
765 dev_conf->regs = ioremap(dev_conf->mmio_start, dev_conf->mmio_len); | |
766 if (!dev_conf->regs){ | |
79 | 767 printk(KERN_ERR "pt1:Can't remap register area.\n"); |
0 | 768 goto out_err_regbase; |
769 } | |
770 // 初期化処理 | |
79 | 771 if(xc3s_init(dev_conf->regs, dev_conf->cardtype)){ |
0 | 772 printk(KERN_ERR "Error xc3s_init\n"); |
773 goto out_err_fpga; | |
774 } | |
775 // チューナリセット | |
64
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
776 settuner_reset(dev_conf->regs, dev_conf->cardtype, LNB_OFF, TUNER_POWER_ON_RESET_ENABLE); |
124 | 777 schedule_timeout_interruptible(msecs_to_jiffies(100)); |
0 | 778 |
64
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
779 settuner_reset(dev_conf->regs, dev_conf->cardtype, LNB_OFF, TUNER_POWER_ON_RESET_DISABLE); |
124 | 780 schedule_timeout_interruptible(msecs_to_jiffies(100)); |
0 | 781 mutex_init(&dev_conf->lock); |
782 | |
783 // Tuner 初期化処理 | |
784 for(lp = 0 ; lp < MAX_TUNER ; lp++){ | |
69
272a8fba970b
added very rough support for PT2.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
64
diff
changeset
|
785 rc = tuner_init(dev_conf->regs, dev_conf->cardtype, &dev_conf->lock, lp); |
0 | 786 if(rc < 0){ |
787 printk(KERN_ERR "Error tuner_init\n"); | |
788 goto out_err_fpga; | |
789 } | |
790 } | |
791 // 初期化完了 | |
792 for(lp = 0 ; lp < MAX_CHANNEL ; lp++){ | |
36 | 793 set_sleepmode(dev_conf->regs, &dev_conf->lock, |
111
c8cfd684fee8
re-enable set_sleepmode. backing out r109.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
109
diff
changeset
|
794 i2c_address[lp], channeltype[lp], TYPE_SLEEP); |
36 | 795 |
124 | 796 schedule_timeout_interruptible(msecs_to_jiffies(100)); |
0 | 797 } |
798 rc = alloc_chrdev_region(&dev_conf->dev, 0, MAX_CHANNEL, DEV_NAME); | |
799 if(rc < 0){ | |
800 goto out_err_fpga; | |
801 } | |
802 | |
803 // 初期化 | |
804 init_waitqueue_head(&dev_conf->dma_wait_q); | |
805 | |
806 minor = MINOR(dev_conf->dev) ; | |
807 dev_conf->base_minor = minor ; | |
808 for(lp = 0 ; lp < MAX_PCI_DEVICE ; lp++){ | |
79 | 809 printk(KERN_INFO "PT1:device[%d]=%p\n", lp, device[lp]); |
0 | 810 if(device[lp] == NULL){ |
811 device[lp] = dev_conf ; | |
31
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
812 dev_conf->card_number = lp; |
0 | 813 break ; |
814 } | |
815 } | |
816 for(lp = 0 ; lp < MAX_CHANNEL ; lp++){ | |
817 cdev_init(&dev_conf->cdev[lp], &pt1_fops); | |
30
eb694d8e4c7e
setup owner in initialization
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
9
diff
changeset
|
818 dev_conf->cdev[lp].owner = THIS_MODULE; |
31
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
819 cdev_add(&dev_conf->cdev[lp], |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
820 MKDEV(MAJOR(dev_conf->dev), (MINOR(dev_conf->dev) + lp)), 1); |
0 | 821 channel = kzalloc(sizeof(PT1_CHANNEL), GFP_KERNEL); |
822 if(!channel){ | |
823 printk(KERN_ERR "PT1:out of memory !"); | |
824 return -ENOMEM ; | |
825 } | |
826 | |
827 // 共通情報 | |
828 mutex_init(&channel->lock); | |
829 // 待ち状態を解除 | |
830 channel->req_dma = FALSE ; | |
831 // マイナー番号設定 | |
832 channel->minor = MINOR(dev_conf->dev) + lp ; | |
833 // 対象のI2Cデバイス | |
834 channel->address = i2c_address[lp] ; | |
835 channel->type = channeltype[lp] ; | |
836 // 実際のチューナ番号 | |
86 | 837 channel->channel = real_channel[lp] ; |
0 | 838 channel->ptr = dev_conf ; |
839 channel->size = 0 ; | |
840 dev_conf->channel[lp] = channel ; | |
841 | |
842 init_waitqueue_head(&channel->wait_q); | |
843 | |
844 switch(channel->type){ | |
845 case CHANNEL_TYPE_ISDB_T: | |
124 | 846 channel->maxsize = CHANNEL_DMA_SIZE ; |
847 channel->buf = vmalloc(CHANNEL_DMA_SIZE); | |
41
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
848 channel->pointer = 0; |
0 | 849 break ; |
850 case CHANNEL_TYPE_ISDB_S: | |
124 | 851 channel->maxsize = BS_CHANNEL_DMA_SIZE ; |
852 channel->buf = vmalloc(BS_CHANNEL_DMA_SIZE); | |
41
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
853 channel->pointer = 0; |
0 | 854 break ; |
855 } | |
856 if(channel->buf == NULL){ | |
857 goto out_err_v4l; | |
858 } | |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
859 #if LINUX_VERSION_CODE >= KERNEL_VERSION(2,6,27) |
79 | 860 printk(KERN_INFO "PT1:card_number = %d\n", |
31
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
861 dev_conf->card_number); |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
862 device_create(pt1video_class, |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
863 NULL, |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
864 MKDEV(MAJOR(dev_conf->dev), |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
865 (MINOR(dev_conf->dev) + lp)), |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
866 NULL, |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
867 "pt1video%u", |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
868 MINOR(dev_conf->dev) + lp + |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
869 dev_conf->card_number * MAX_CHANNEL); |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
870 #else |
31
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
871 device_create(pt1video_class, |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
872 NULL, |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
873 MKDEV(MAJOR(dev_conf->dev), |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
874 (MINOR(dev_conf->dev) + lp)), |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
875 "pt1video%u", |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
876 MINOR(dev_conf->dev) + lp + |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
877 dev_conf->card_number * MAX_CHANNEL); |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
878 #endif |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
879 |
0 | 880 #if 0 |
881 dev_conf->vdev[lp] = video_device_alloc(); | |
882 memcpy(dev_conf->vdev[lp], &pt1_template, sizeof(pt1_template)); | |
883 video_set_drvdata(dev_conf->vdev[lp], channel); | |
884 video_register_device(dev_conf->vdev[lp], VFL_TYPE_GRABBER, -1); | |
885 #endif | |
886 } | |
31
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
887 |
0 | 888 if(pt1_dma_init(pdev, dev_conf) < 0){ |
889 goto out_err_dma; | |
890 } | |
891 dev_conf->kthread = kthread_run(pt1_thread, dev_conf, "pt1"); | |
892 pci_set_drvdata(pdev, dev_conf); | |
893 return 0; | |
894 | |
895 out_err_dma: | |
896 pt1_dma_free(pdev, dev_conf); | |
897 out_err_v4l: | |
898 for(lp = 0 ; lp < MAX_CHANNEL ; lp++){ | |
899 if(dev_conf->channel[lp] != NULL){ | |
900 if(dev_conf->channel[lp]->buf != NULL){ | |
41
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
901 vfree(dev_conf->channel[lp]->buf); |
0 | 902 } |
903 kfree(dev_conf->channel[lp]); | |
904 } | |
905 } | |
906 out_err_fpga: | |
907 writel(0xb0b0000, dev_conf->regs); | |
64
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
908 writel(0, dev_conf->regs + CFG_REGS_ADDR); |
0 | 909 iounmap(dev_conf->regs); |
910 release_mem_region(dev_conf->mmio_start, dev_conf->mmio_len); | |
40
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
911 for (i = 0; i < DMA_RING_SIZE; i++) { |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
912 kfree(dev_conf->dmactl[i]); |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
913 } |
0 | 914 kfree(dev_conf); |
915 out_err_regbase: | |
916 return -EIO; | |
917 | |
918 } | |
919 | |
920 static void __devexit pt1_pci_remove_one(struct pci_dev *pdev) | |
921 { | |
922 | |
923 int lp ; | |
924 __u32 val ; | |
925 PT1_DEVICE *dev_conf = (PT1_DEVICE *)pci_get_drvdata(pdev); | |
40
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
926 int i; |
0 | 927 |
928 if(dev_conf){ | |
929 if(dev_conf->kthread) { | |
930 kthread_stop(dev_conf->kthread); | |
931 dev_conf->kthread = NULL; | |
932 } | |
933 | |
934 // DMA終了 | |
935 writel(0x08080000, dev_conf->regs); | |
936 for(lp = 0 ; lp < 10 ; lp++){ | |
937 val = readl(dev_conf->regs); | |
938 if(!(val & (1 << 6))){ | |
939 break ; | |
940 } | |
124 | 941 schedule_timeout_interruptible(msecs_to_jiffies(100)); |
0 | 942 } |
943 pt1_dma_free(pdev, dev_conf); | |
944 for(lp = 0 ; lp < MAX_CHANNEL ; lp++){ | |
945 if(dev_conf->channel[lp] != NULL){ | |
946 cdev_del(&dev_conf->cdev[lp]); | |
41
51a006a8d843
imported patch ringbuf-vmalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
40
diff
changeset
|
947 vfree(dev_conf->channel[lp]->buf); |
0 | 948 kfree(dev_conf->channel[lp]); |
949 } | |
31
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
950 device_destroy(pt1video_class, |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
951 MKDEV(MAJOR(dev_conf->dev), |
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
952 (MINOR(dev_conf->dev) + lp))); |
0 | 953 } |
31
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
954 |
0 | 955 unregister_chrdev_region(dev_conf->dev, MAX_CHANNEL); |
956 writel(0xb0b0000, dev_conf->regs); | |
64
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
957 writel(0, dev_conf->regs + CFG_REGS_ADDR); |
98a92ce5382e
added fake support code for PT2. the PT2 part is not expected to work. be careful!
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
51
diff
changeset
|
958 settuner_reset(dev_conf->regs, dev_conf->cardtype, LNB_OFF, TUNER_POWER_OFF); |
0 | 959 release_mem_region(dev_conf->mmio_start, dev_conf->mmio_len); |
960 iounmap(dev_conf->regs); | |
40
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
961 for (i = 0; i < DMA_RING_SIZE; i++) { |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
962 kfree(dev_conf->dmactl[i]); |
8f30a05cded2
imported patch dmactlalloc
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
37
diff
changeset
|
963 } |
31
289794dc265f
adapted to use of multiple number of pt1:
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
30
diff
changeset
|
964 device[dev_conf->card_number] = NULL; |
0 | 965 kfree(dev_conf); |
966 } | |
967 pci_set_drvdata(pdev, NULL); | |
968 } | |
969 #ifdef CONFIG_PM | |
970 | |
971 static int pt1_pci_suspend (struct pci_dev *pdev, pm_message_t state) | |
972 { | |
973 return 0; | |
974 } | |
975 | |
976 static int pt1_pci_resume (struct pci_dev *pdev) | |
977 { | |
978 return 0; | |
979 } | |
980 | |
981 #endif /* CONFIG_PM */ | |
982 | |
983 | |
984 static struct pci_driver pt1_driver = { | |
985 .name = DRV_NAME, | |
986 .probe = pt1_pci_init_one, | |
987 .remove = __devexit_p(pt1_pci_remove_one), | |
988 .id_table = pt1_pci_tbl, | |
989 #ifdef CONFIG_PM | |
990 .suspend = pt1_pci_suspend, | |
991 .resume = pt1_pci_resume, | |
992 #endif /* CONFIG_PM */ | |
993 | |
994 }; | |
995 | |
996 | |
997 static int __init pt1_pci_init(void) | |
998 { | |
93 | 999 printk(KERN_INFO "%s", version); |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
1000 pt1video_class = class_create(THIS_MODULE, DRIVERNAME); |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
1001 if (IS_ERR(pt1video_class)) |
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
1002 return PTR_ERR(pt1video_class); |
0 | 1003 return pci_register_driver(&pt1_driver); |
1004 } | |
1005 | |
1006 | |
1007 static void __exit pt1_pci_cleanup(void) | |
1008 { | |
120
3914cc1b2375
- adapted to 3.x kernels
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
119
diff
changeset
|
1009 pci_unregister_driver(&pt1_driver); |
9
07b2fc07ff48
updated to current driver to support signal strength.
Yoshiki Yazawa <yaz@honeyplanet.jp>
parents:
0
diff
changeset
|
1010 class_destroy(pt1video_class); |
0 | 1011 } |
1012 | |
1013 module_init(pt1_pci_init); | |
1014 module_exit(pt1_pci_cleanup); |