},
[EM2800_BOARD_TERRATEC_CINERGY_200] = {
.name = "Terratec Cinergy 200 USB",
- .chip_id = 0x4,
.is_em2800 = 1,
.vchannels = 3,
.norm = VIDEO_MODE_PAL,
},
[EM2800_BOARD_LEADTEK_WINFAST_USBII] = {
.name = "Leadtek Winfast USB II",
- .chip_id = 0x2,
.is_em2800 = 1,
.vchannels = 3,
.norm = VIDEO_MODE_PAL,
},
[EM2800_BOARD_KWORLD_USB2800] = {
.name = "Kworld USB2800",
- .chip_id = 0x7,
.is_em2800 = 1,
.vchannels = 3,
.norm = VIDEO_MODE_PAL,
buf[0] = v;
buf[1] = v >> 8;
em2820_write_regs(dev, VSCALELOW_REG, (char *)buf, 2);
+ if(dev->is_em2800){
+ /* FIXME */
+ /* random ratio scaling and 720x567 doesn't seem to work */
+ /* the maximum we can get is 640x480 with disabled scaler */
+ /* and norm_maxw set to 640 */
+ if(dev->width == 640 && dev->height == 480)
+ return em2820_write_regs(dev, COMPR_REG,"\x00",1);
+ if(dev->height > 288)
+ return em2820_write_regs(dev, COMPR_REG,"\x10",1);
+ if(dev->width > 360)
+ return em2820_write_regs(dev, COMPR_REG,"\x20",1);
+ }
/* when H and V mixershould be used? */
/* return em2820_write_reg_bits(dev, COMPR_REG, (h ? 0x20 : 0x00) | (v ? 0x10 : 0x00), 0x30); */
/* it seems that both H and V scalers must be active to work correctly */
if (width > maxw)
width = maxw;
+ /* FIXME*/
+ if(dev->is_em2800){
+ /* we only know how to scale to 50% */
+ if(height % (maxh / 2))
+ height=maxh;
+ if(width % (maxw / 2))
+ width=maxw;
+ /* larger resoltion don't seem to work either */
+ if(width == maxw && height == maxh)
+ width /= 2;
+ }
+
if ((hscale =
(((unsigned long)maxw) << 12) / width - 4096L) >=
0x4000)