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