Home
last modified time | relevance | path

Searched refs:tw_writeb (Results 1 – 3 of 3) sorted by relevance

/openbmc/linux/drivers/media/pci/tw68/
H A Dtw68-core.c93 tw_writeb(TW68_ACNTL, 0x80); /* 218 soft reset */ in tw68_hw_init1()
96 tw_writeb(TW68_INFORM, 0x40); /* 208 mux0, 27mhz xtal */ in tw68_hw_init1()
97 tw_writeb(TW68_OPFORM, 0x04); /* 20C analog line-lock */ in tw68_hw_init1()
98 tw_writeb(TW68_HSYNC, 0); /* 210 color-killer high sens */ in tw68_hw_init1()
99 tw_writeb(TW68_ACNTL, 0x42); /* 218 int vref #2, chroma adc off */ in tw68_hw_init1()
101 tw_writeb(TW68_CROP_HI, 0x02); /* 21C Hactive m.s. bits */ in tw68_hw_init1()
102 tw_writeb(TW68_VDELAY_LO, 0x12);/* 220 Mfg specified reset value */ in tw68_hw_init1()
103 tw_writeb(TW68_VACTIVE_LO, 0xf0); in tw68_hw_init1()
104 tw_writeb(TW68_HDELAY_LO, 0x0f); in tw68_hw_init1()
105 tw_writeb(TW68_HACTIVE_LO, 0xd0); in tw68_hw_init1()
[all …]
H A Dtw68-video.c302 tw_writeb(TW68_CROP_HI, comb); in tw68_set_scale()
303 tw_writeb(TW68_VDELAY_LO, vdelay & 0xff); in tw68_set_scale()
304 tw_writeb(TW68_VACTIVE_LO, vactive & 0xff); in tw68_set_scale()
305 tw_writeb(TW68_HDELAY_LO, hdelay & 0xff); in tw68_set_scale()
306 tw_writeb(TW68_HACTIVE_LO, hactive & 0xff); in tw68_set_scale()
311 tw_writeb(TW68_SCALE_HI, comb); in tw68_set_scale()
312 tw_writeb(TW68_VSCALE_LO, vscale); in tw68_set_scale()
313 tw_writeb(TW68_HSCALE_LO, hscale); in tw68_set_scale()
539 tw_writeb(TW68_BRIGHT, ctrl->val); in tw68_s_ctrl()
542 tw_writeb(TW68_HUE, ctrl->val); in tw68_s_ctrl()
[all …]
H A Dtw68.h170 #define tw_writeb(reg, value) writeb((value), dev->bmmio + (reg)) macro