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