Searched defs:bit_id (Results 1 - 8 of 8) sorted by relevance
| /vbox/src/VBox/Devices/PC/ipxe/src/drivers/bitbash/ |
| H A D | bitbash.c | 33 * @v bit_id Bit number 39 void write_bit ( struct bit_basher *basher, unsigned int bit_id, argument 41 basher->op->write ( basher, bit_id, ( data ? -1UL : 0 ) ); 48 * @v bit_id Bit number 55 int read_bit ( struct bit_basher *basher, unsigned int bit_id ) { 56 return ( basher->op->read ( basher, bit_id ) ? -1UL : 0 );
|
| /vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/ |
| H A D | natsemi.c | 78 * @v bit_id Bit number 83 unsigned int bit_id ) { 86 uint32_t mask = natsemi_eeprom_bits[bit_id]; 99 * @v bit_id Bit number 103 unsigned int bit_id, unsigned long data ) { 106 uint32_t mask = natsemi_eeprom_bits[bit_id]; 102 natsemi_spi_write_bit( struct bit_basher *basher, unsigned int bit_id, unsigned long data ) argument
|
| H A D | realtek.c | 79 * @v bit_id Bit number 84 unsigned int bit_id ) { 87 uint8_t mask = realtek_eeprom_bits[bit_id]; 100 * @v bit_id Bit number 104 unsigned int bit_id, unsigned long data ) { 107 uint8_t mask = realtek_eeprom_bits[bit_id]; 103 realtek_spi_write_bit( struct bit_basher *basher, unsigned int bit_id, unsigned long data ) argument
|
| H A D | eepro100.c | 491 * @v bit_id Line to be read 494 unsigned int bit_id ) 504 mask = ifec_ee_bits[bit_id]; 515 * @v bit_id Line to write to 519 unsigned int bit_id, 526 uint16_t mask = ifec_ee_bits[bit_id]; 518 ifec_spi_write_bit( struct bit_basher *basher, unsigned int bit_id, unsigned long data ) argument
|
| H A D | etherfabric.c | 1503 falcon_i2c_bit_write ( struct bit_basher *basher, unsigned int bit_id, argument 1511 switch ( bit_id ) { 1519 EFAB_ERR ( "%s bit=%d\n", __func__, bit_id ); 1527 falcon_i2c_bit_read ( struct bit_basher *basher, unsigned int bit_id ) 1534 switch ( bit_id ) { 1542 EFAB_ERR ( "%s bit=%d\n", __func__, bit_id );
|
| /vbox/src/VBox/Devices/PC/ipxe/src/drivers/net/rtl818x/ |
| H A D | rtl818x.c | 601 static int rtl818x_spi_read_bit(struct bit_basher *basher, unsigned int bit_id) argument 607 return reg & rtl818x_eeprom_bits[bit_id]; 611 unsigned int bit_id, unsigned long data) 617 u8 mask = rtl818x_eeprom_bits[bit_id]; 610 rtl818x_spi_write_bit(struct bit_basher *basher, unsigned int bit_id, unsigned long data) argument
|
| /vbox/src/VBox/Devices/PC/ipxe/src/drivers/infiniband/ |
| H A D | linda.c | 1521 * @v bit_id Bit number 1526 unsigned int bit_id ) { 1535 status = ( BIT_GET ( &extstatus, GPIOIn ) & linda_i2c_bits[bit_id] ); 1546 * @v bit_id Bit number 1550 unsigned int bit_id, unsigned long data ) { 1555 unsigned int bit = linda_i2c_bits[bit_id]; 1549 linda_i2c_write_bit( struct bit_basher *basher, unsigned int bit_id, unsigned long data ) argument
|
| H A D | qib7322.c | 1831 * @v bit_id Bit number 1836 unsigned int bit_id ) { 1845 status = ( BIT_GET ( &extstatus, GPIOIn ) & qib7322_i2c_bits[bit_id] ); 1856 * @v bit_id Bit number 1860 unsigned int bit_id, unsigned long data ) { 1865 unsigned int bit = qib7322_i2c_bits[bit_id]; 1859 qib7322_i2c_write_bit( struct bit_basher *basher, unsigned int bit_id, unsigned long data ) argument
|
Completed in 82 milliseconds