HomeSort by: relevance | last modified time | path
    Searched defs:i2c (Results 1 - 7 of 7) sorted by relevancy

  /xsrc/external/mit/xf86-video-nv/dist/src/
g80_output.h 9 I2CBusPtr i2c; member in struct:G80OutputPrivRec
20 void G80OutputPartnersDetect(xf86OutputPtr dac, xf86OutputPtr sor, I2CBusPtr i2c);
g80_output.c 78 /* Clear the i2c map to invalid */
191 xf86DrvMsg(scrnIndex, X_INFO, "LVDS has no I2C port\n");
290 I2CBusPtr i2c; local
292 /* Allocate the I2C bus structure */
293 i2c = xf86CreateI2CBusRec();
294 if(!i2c) return NULL;
296 i2c->BusName = strdup(name);
297 i2c->scrnIndex = pScrn->scrnIndex;
299 i2c->pScrn = pScrn;
301 i2c->I2CPutBits = G80_I2CPutBits
464 I2CBusPtr i2c; local
    [all...]
  /xsrc/external/mit/xf86-video-r128/dist/src/
r128_output.c 339 xf86DrvMsg(pScrn->scrnIndex, X_WARNING, "DDC2/I2C is not properly initialized\n");
542 R128I2CBusRec i2c; local
571 i2c.ddc_reg = R128_GPIO_MONID;
573 i2c.put_clk_mask = R128_GPIO_MONID_EN_2;
574 i2c.get_clk_mask = R128_GPIO_MONID_Y_2;
576 i2c.put_clk_mask = R128_GPIO_MONID_EN_3;
577 i2c.get_clk_mask = R128_GPIO_MONID_Y_3;
580 i2c.put_data_mask = R128_GPIO_MONID_EN_1;
581 i2c.get_data_mask = R128_GPIO_MONID_Y_1;
583 i2c.put_data_mask = R128_GPIO_MONID_EN_0
    [all...]
  /xsrc/external/mit/xf86-video-ati/dist/src/
radeon_video.h 39 /* i2c bus and devices */
40 I2CBusPtr i2c; member in struct:__anon6877
radeon_bios.c 1288 RADEONI2CBusRec i2c; local
1290 memset(&i2c, 0, sizeof(RADEONI2CBusRec));
1291 i2c.valid = FALSE;
1302 i2c.mask_clk_mask = (1 << clock_shift);
1303 i2c.mask_data_mask = (1 << data_shift);
1304 i2c.a_clk_mask = (1 << clock_shift);
1305 i2c.a_data_mask = (1 << data_shift);
1306 i2c.put_clk_mask = (1 << clock_shift);
1307 i2c.put_data_mask = (1 << data_shift);
1308 i2c.get_clk_mask = (1 << clock_shift)
    [all...]
radeon_output.c 390 * XXX wrong. need to infer based on whether we got DDC from I2C
1887 /* RV410 appears to have a bug where the hw i2c in reset
1888 * holds the i2c port in a bad state - switch hw i2c away before
1999 RADEONI2CBusRec i2c; local
2001 i2c.hw_line = 0;
2002 i2c.hw_capable = FALSE;
2003 i2c.mask_clk_mask = RADEON_GPIO_EN_1;
2004 i2c.mask_data_mask = RADEON_GPIO_EN_0;
2005 i2c.a_clk_mask = RADEON_GPIO_A_1
2043 RADEONI2CBusRec i2c; local
    [all...]
radeon_atombios.c 1519 RADEONI2CBusRec i2c; local
1524 memset(&i2c, 0, sizeof(RADEONI2CBusRec));
1525 i2c.valid = FALSE;
1533 return i2c;
1554 i2c.mask_clk_reg = le16_to_cpu(gpio->usClkMaskRegisterIndex) * 4;
1555 i2c.mask_data_reg = le16_to_cpu(gpio->usDataMaskRegisterIndex) * 4;
1556 i2c.put_clk_reg = le16_to_cpu(gpio->usClkEnRegisterIndex) * 4;
1557 i2c.put_data_reg = le16_to_cpu(gpio->usDataEnRegisterIndex) * 4;
1558 i2c.get_clk_reg = le16_to_cpu(gpio->usClkY_RegisterIndex) * 4;
1559 i2c.get_data_reg = le16_to_cpu(gpio->usDataY_RegisterIndex) * 4
    [all...]

Completed in 7 milliseconds