| /xsrc/external/mit/xf86-video-geode/dist/src/ |
| geode_ddc.c | 100 geode_ddc_putbits(I2CBusPtr b, int scl, int sda) 105 dat = scl ? DDC_CLK_HIGH : DDC_CLK_LOW; 112 geode_ddc_getbits(I2CBusPtr b, int *scl, int *sda) 117 *scl = (dat & DDC_CLK_HIGH) ? 1 : 0;
|
| /xsrc/external/mit/xorg-server/dist/hw/xfree86/i2c/ |
| xf86i2c.h | 26 void (*I2CPutBits) (I2CBusPtr b, int scl, int sda); 27 void (*I2CGetBits) (I2CBusPtr b, int *scl, int *sda);
|
| xf86i2c.c | 77 /* Some devices will hold SCL low to slow down the bus or until 81 * the SCL line. You can set the timeout to zero if the slave device 88 int i, scl; local 94 b->I2CGetBits(b, &scl, &sda); 95 if (scl) 193 int scl; local 198 b->I2CGetBits(b, &scl, psda); 213 * if the slave pulls SCL to slow down the bus more than ByteTimeout usecs, 226 int i, scl, sda; local 244 b->I2CGetBits(b, &scl, &sda) [all...] |
| /xsrc/external/mit/xorg-server.old/dist/hw/xfree86/i2c/ |
| xf86i2c.h | 25 void (*I2CPutBits)(I2CBusPtr b, int scl, int sda); 26 void (*I2CGetBits)(I2CBusPtr b, int *scl, int *sda);
|
| xf86i2c.c | 78 /* Some devices will hold SCL low to slow down the bus or until 82 * the SCL line. You can set the timeout to zero if the slave device 89 int i, scl; local 95 b->I2CGetBits(b, &scl, &sda); 96 if (scl) break; 191 int scl; local 196 b->I2CGetBits(b, &scl, psda); 211 * if the slave pulls SCL to slow down the bus more than ByteTimeout usecs, 224 int i, scl, sda; local 242 b->I2CGetBits(b, &scl, &sda) [all...] |
| /xsrc/external/mit/xf86-video-intel-old/dist/src/ |
| i830_i2c.c | 123 int scl = 0; local 130 i830_getscl(b, &scl); 131 if (scl) break; 187 int i, scl, sda; local
|
| /xsrc/external/mit/xf86-video-glint/dist/src/ |
| pm2_dac.c | 476 Permedia2I2CPutBits(I2CBusPtr b, int scl, int sda) 483 if (scl > 0) v |= ClkOut; 490 Permedia2I2CGetBits(I2CBusPtr b, int *scl, int *sda) 496 *scl = (v & ClkIn) > 0;
|
| glint.h | 329 void Permedia2I2CPutBits(I2CBusPtr b, int scl, int sda); 330 void Permedia2I2CGetBits(I2CBusPtr b, int *scl, int *sda);
|
| /xsrc/external/mit/xf86-video-ati/dist/src/ |
| radeon_probe.h | 436 uint32_t scl[6]; member in struct:dce4_main_block_state
|
| radeon_driver.c | 4633 state->scl[i] = INREG(offset + dce4_scl_regs[i]); 4645 OUTREG(offset + dce4_scl_regs[i], state->scl[i]);
|
| /xsrc/external/mit/xf86-video-tdfx/dist/src/ |
| tdfx_driver.c | 721 TDFXPutBits(I2CBusPtr b, int scl, int sda) 728 (scl ? VSP_SCL0_OUT : 0) | 734 TDFXGetBits(I2CBusPtr b, int *scl, int *sda) 741 *scl = (reg & VSP_SCL0_IN) ? 1 : 0;
|