?? mga_vid.c
字號:
} weight = ofstop * (regs.besviscal >> 2); weights = weight < 0 ? 1 : 0; regs.besv2wght = regs.besv1wght = (weights << 16) + ((weight & 0x3FFF) << 2); regs.besv2srclst = regs.besv1srclst = sh - 1 - (((ofstop * regs.besviscal) >> 16) & 0x03FF);#ifdef CRTC2 // pridat hlavni registry - tj. casovani ... cregs.c2ctl = 1 // CRTC2 enabled | (1<<1) // p2pixclksel - external clock (VDOCLK pin) | (0<<3) // p2pixclkdis - pixel clock is enable //| (5<<4) // c2hiprilvl - high priority req | (2<<4) // c2hiprilvl - high priority req for YUV | (0<<8) // c2maxhipri - high priority req max for YUV //| (2<<8) // c2maxhipri - high priority req max | (0<<20) // crtcdacsel - CRTC1 output to DAC | (0<<24) // csvcdbcrsingle - single chroma line for 420 mode | (0<<25) // c2interlace - interlace mode | (0<<26) // c2fieldlength - field legth polariry | (0<<27) // c2fieldpol - field identification polariry | (1<<28) // c2vidrstmod - VIDRST detection mode (raising) | (1<<30) // c2hploaden - horizontal counter preload | (1<<31) // c2vploaden - vertical counter preload ; cregs.c2datactl = 1 // disable dither - propably not needed, we are already in YUV mode | (1<<1) // Y filter enable | (1<<2) // CbCr filter enable | (0<<3) // subpicture enable (disabled) //| (0<<4) // NTSC enable (disabled - PAL) | (0<<4) // NTSC enable (disabled - PAL) | (0<<5) // C2 static subpicture enable (disabled) | (0<<6) // C2 subpicture offset division (disabled) | (0<<7) // 422 uyvy subformat selection ! /* | (0<<8) // 15 bpp high alpha | (0<<16) // 15 bpp low alpha | (0<<24) // static subpicture key */ ; switch(config->fourcc){ case IMGFMT_YV12: case IMGFMT_I420: case IMGFMT_IYUV: cregs.c2ctl |= (7 << 21); // 420 mode break; case IMGFMT_UYVY: //+ (1<<24) // single chroma line for 420 mode - need to be corrected cregs.c2datactl |= (1<<7); // 422 subformat selection ! /* fall through */ case IMGFMT_YUY2: cregs.c2ctl |= (5 << 21); // 422 mode break; } cregs.c2misc=0 // CRTCV2 656 togg f0 +(0<<1) // CRTCV2 656 togg f0 +(0<<2) // CRTCV2 656 togg f0 +(0<<4) // CRTCV2 656 togg f1 +(0<<5) // CRTCV2 656 togg f1 +(0<<6) // CRTCV2 656 togg f1 +(0<<8) // Hsync active high +(0<<9) // Vsync active high // 16-27 c2vlinecomp - nevim co tam dat ; //cregs.c2offset=(regs.bespitch << 1); cregs.c2offset = regs.bespitch; printf("COFF %d %x %x %x\n", cregs.c2offset, regs.besa1org, regs.besa1corg, regs.besa1c3org); cregs.c2startadd0=regs.besa1org; //cregs.c2startadd1=regs.besa2org; cregs.c2pl2startadd0=regs.besa1corg; //cregs.c2pl2startadd1=regs.besa2corg; cregs.c2pl3startadd0=regs.besa1c3org; //cregs.c2pl3startadd1=regs.besa2c3org; cregs.c2spicstartadd0=0; // not used //cregs.c2spicstartadd1=0; // not used cregs.c2subpiclut=0; //not used cregs.c2hparam = (((hdispend - 8) & ~7) << 16) | ((htotal - 8) & ~7); cregs.c2hsync = (((hsyncend - 8) & ~7) << 16) | ((hsyncstart - 8) & ~7); cregs.c2preload=((vsyncstart & ~7) << 16) | hsyncstart; // from cregs.c2vparam=((vdispend - 1) << 16) | (vtotal - 1); cregs.c2vsync=((vsyncend - 1) << 16) | (vsyncstart - 1); printf("VTotal: %d VDispEnd: %d ctl:%x\n",vtotal, vdispend, cregs.c2ctl);#endif /* CRTC2 */ mga_vid_write_regs(0); return(0);}int VIDIX_NAME(vixPlaybackOn)(void){ if (mga_verbose) printf("[mga] playback on\n"); vid_src_ready = 1; if(vid_overlay_on) { regs.besctl |= 1; mga_vid_write_regs(0); }#ifdef MGA_ALLOW_IRQ if (mga_irq != -1) enable_irq();#endif mga_next_frame=0; return(0);}int VIDIX_NAME(vixPlaybackOff)(void){ if (mga_verbose) printf("[mga] playback off\n"); vid_src_ready = 0;#ifdef MGA_ALLOW_IRQ if (mga_irq != -1) disable_irq();#endif regs.besctl &= ~1; regs.besglobctl &= ~(1<<6); /* UYVY format selected */ mga_vid_write_regs(0); return(0);}int VIDIX_NAME(vixProbe)(int verbose,int force){ pciinfo_t lst[MAX_PCI_DEVICES]; unsigned int i, num_pci; int err; if (verbose) printf("[mga] probe\n"); mga_verbose = verbose; is_g400 = -1; err = pci_scan(lst, &num_pci); if (err) { printf("[mga] Error occured during pci scan: %s\n", strerror(err)); return(err); } if (mga_verbose) printf("[mga] found %d pci devices\n", num_pci); for (i = 0; i < num_pci; i++) { if (mga_verbose > 1) printf("[mga] pci[%d] vendor: %d device: %d\n", i, lst[i].vendor, lst[i].device); if (lst[i].vendor == VENDOR_MATROX) { switch(lst[i].device) { case DEVICE_MATROX_MGA_G550_AGP: printf("[mga] Found MGA G550\n"); is_g400 = 1; goto card_found; case DEVICE_MATROX_MGA_G400_AGP: printf("[mga] Found MGA G400/G450\n"); is_g400 = 1; goto card_found; case DEVICE_MATROX_MGA_G200_AGP: printf("[mga] Found MGA G200 AGP\n"); is_g400 = 0; goto card_found; case DEVICE_MATROX_MGA_G200: printf("[mga] Found MGA G200 PCI\n"); is_g400 = 0; goto card_found; } } } if (is_g400 == -1) { printf("[mga] No supported cards found\n"); return(ENXIO); }card_found: probed = 1; memcpy(&pci_info, &lst[i], sizeof(pciinfo_t)); mga_cap.device_id = pci_info.device; /* set device id in capabilites */ return(0);}int VIDIX_NAME(vixInit)(const char *args){ unsigned int card_option = 0; int err; /* reset Brightness & Constrast here */ regs.beslumactl = (0x0 << 16) + 0x80; if (mga_verbose) printf("[mga] init\n"); mga_vid_in_use = 0; printf("Matrox MGA G200/G400/G450 YUV Video interface v2.01 (c) Aaron Holtzman & A'rpi\n");#ifdef CRTC2 printf("Driver compiled with TV-out (second-head) support\n");#endif if (!probed) { printf("[mga] driver was not probed but is being initializing\n"); return(EINTR); }#ifdef MGA_PCICONFIG_MEMDETECT pci_config_read(pci_info.bus, pci_info.card, pci_info.func, 0x40, 4, &card_option); if (mga_verbose > 1) printf("[mga] OPTION word: 0x%08X mem: 0x%02X %s\n", card_option, (card_option>>10)&0x17, ((card_option>>14)&1)?"SGRAM":"SDRAM");#endif if (mga_ram_size) { printf("[mga] RAMSIZE forced to %d MB\n", mga_ram_size); } else {#ifdef MGA_MEMORY_SIZE mga_ram_size = MGA_MEMORY_SIZE; printf("[mga] hard-coded RAMSIZE is %d MB\n", (unsigned int) mga_ram_size);#else if (is_g400) { switch((card_option>>10)&0x17) { // SDRAM: case 0x00: case 0x04: mga_ram_size = 16; break; case 0x03: mga_ram_size = 32; break; // SGRAM: case 0x10: case 0x14: mga_ram_size = 32; break; case 0x11: case 0x12: mga_ram_size = 16; break; default: mga_ram_size = 16; printf("[mga] Couldn't detect RAMSIZE, assuming 16MB!\n"); } } else { switch((card_option>>10)&0x17) { // case 0x10: // case 0x13: mga_ram_size = 8; break; default: mga_ram_size = 8; } }#if 0 // printf("List resources -----------\n"); for(temp=0;temp<DEVICE_COUNT_RESOURCE;temp++){ struct resource *res=&pci_dev->resource[temp]; if(res->flags){ int size=(1+res->end-res->start)>>20; printf("res %d: start: 0x%X end: 0x%X (%d MB) flags=0x%X\n",temp,res->start,res->end,size,res->flags); if(res->flags&(IORESOURCE_MEM|IORESOURCE_PREFETCH)){ if(size>mga_ram_size && size<=64) mga_ram_size=size; } } }#endif printf("[mga] detected RAMSIZE is %d MB\n", (unsigned int) mga_ram_size);#endif } if (mga_ram_size) { if ((mga_ram_size < 4) || (mga_ram_size > 64)) { printf("[mga] invalid RAMSIZE: %d MB\n", mga_ram_size); return(EINVAL); } } if (mga_verbose > 1) printf("[mga] hardware addresses: mmio: 0x%x, framebuffer: 0x%x\n", pci_info.base1, pci_info.base0); mga_mmio_base = map_phys_mem(pci_info.base1,0x4000); mga_mem_base = map_phys_mem(pci_info.base0,mga_ram_size*1024*1024); if (mga_verbose > 1) printf("[mga] MMIO at %p, IRQ: %d, framebuffer: %p\n", mga_mmio_base, mga_irq, mga_mem_base); err = mtrr_set_type(pci_info.base0,mga_ram_size*1024*1024,MTRR_TYPE_WRCOMB); if(!err) printf("[mga] Set write-combining type of video memory\n");#ifdef MGA_ALLOW_IRQ if (mga_irq != -1) { int tmp = request_irq(mga_irq, mga_handle_irq, SA_INTERRUPT | SA_SHIRQ, "Syncfb Time Base", &mga_irq); if (tmp) { printf("syncfb (mga): cannot register irq %d (Err: %d)\n", mga_irq, tmp); mga_irq=-1; } else { printf("syncfb (mga): registered irq %d\n", mga_irq); } } else { printf("syncfb (mga): No valid irq was found\n"); mga_irq=-1; }#else printf("syncfb (mga): IRQ disabled in mga_vid.c\n"); mga_irq=-1;#endif#ifdef CRTC2 memset(&cregs_save, 0, sizeof(cregs_save));#endif return(0);}void VIDIX_NAME(vixDestroy)(void){ if (mga_verbose) printf("[mga] destroy\n"); /* FIXME turn off BES */ vid_src_ready = 0; regs.besctl &= ~1; regs.besglobctl &= ~(1<<6); // UYVY format selected // mga_config.colkey_on=0; //!!! mga_vid_write_regs(1); mga_vid_in_use = 0;#ifdef MGA_ALLOW_IRQ if (mga_irq != -1) free_irq(mga_irq, &mga_irq);#endif if (mga_mmio_base) unmap_phys_mem(mga_mmio_base, 0x4000); if (mga_mem_base) unmap_phys_mem(mga_mem_base, mga_ram_size); return;}int VIDIX_NAME(vixQueryFourcc)(vidix_fourcc_t *to){ int supports=0; if (mga_verbose) printf("[mga] query fourcc (%x)\n", to->fourcc); switch(to->fourcc) { case IMGFMT_YV12: case IMGFMT_IYUV: case IMGFMT_I420: supports = is_g400 ? 1 : 0; case IMGFMT_NV12: supports = is_g400 ? 0 : 1; case IMGFMT_YUY2: case IMGFMT_UYVY: supports = 1; break; default: supports = 0; } if(!supports) { to->depth = to->flags = 0; return(ENOTSUP); } to->depth = VID_DEPTH_12BPP | VID_DEPTH_15BPP | VID_DEPTH_16BPP | VID_DEPTH_24BPP | VID_DEPTH_32BPP; to->flags = VID_CAP_EXPAND | VID_CAP_SHRINK | VID_CAP_COLORKEY; return(0);}unsigned int VIDIX_NAME(vixGetVersion)(void){ return(VIDIX_VERSION);}int VIDIX_NAME(vixGetCapability)(vidix_capability_t *to){ memcpy(to, &mga_cap, sizeof(vidix_capability_t)); return(0);}int VIDIX_NAME(vixGetGrKeys)(vidix_grkey_t *grkey){ memcpy(grkey, &mga_grkey, sizeof(vidix_grkey_t)); return(0);}int VIDIX_NAME(vixSetGrKeys)(const vidix_grkey_t *grkey){ memcpy(&mga_grkey, grkey, sizeof(vidix_grkey_t)); return(0);}int VIDIX_NAME(vixPlaybackSetEq)( const vidix_video_eq_t * eq){ uint32_t luma; float factor = 255.0 / 2000; /* contrast and brightness control isn't supported on G200 - alex */ if (!is_g400) { if (mga_verbose) printf("[mga] equalizer isn't supported with G200\n"); return(ENOTSUP); } luma = regs.beslumactl; if (eq->cap & VEQ_CAP_BRIGHTNESS) { luma &= 0xffff; luma |= (((int)(eq->brightness * factor) & 0xff) << 16); } if (eq->cap & VEQ_CAP_CONTRAST) { luma &= 0xffff << 16; luma |= ((int)((eq->contrast + 1000) * factor) & 0xff); } regs.beslumactl = luma; writel(BESLUMACTL, regs.beslumactl); return(0);}int VIDIX_NAME(vixPlaybackGetEq)( vidix_video_eq_t * eq){ float factor = 2000.0 / 255; /* contrast and brightness control isn't supported on G200 - alex */ if (!is_g400) { if (mga_verbose) printf("[mga] equalizer isn't supported with G200\n"); return(ENOTSUP); } // BESLUMACTL is WO only registr! // this will not work: regs.beslumactl = readl(BESLUMACTL); eq->brightness = ((signed char)((regs.beslumactl >> 16) & 0xff)) * factor; eq->contrast = (regs.beslumactl & 0xFF) * factor - 1000; eq->cap = VEQ_CAP_BRIGHTNESS | VEQ_CAP_CONTRAST; return(0);}
?? 快捷鍵說明
復制代碼
Ctrl + C
搜索代碼
Ctrl + F
全屏模式
F11
切換主題
Ctrl + Shift + D
顯示快捷鍵
?
增大字號
Ctrl + =
減小字號
Ctrl + -