X-Git-Url: http://git.zerfleddert.de/cgi-bin/gitweb.cgi/rsbs2/blobdiff_plain/d51930558a73dd1083b924159971d4c77df411e6..989281f290d774ce78f71c8a420870987407a831:/bmc/i2c.c diff --git a/bmc/i2c.c b/bmc/i2c.c index 6550c92..bd4d69c 100644 --- a/bmc/i2c.c +++ b/bmc/i2c.c @@ -2,23 +2,36 @@ #include #include #include "i2c.h" +#include "bmc.h" #include "ipmb.h" #define TWCR_ACK TWCR = (1< + * TWBR = (F_CPU/(2 * SCL)) - 8 + */ + TWBR = (F_CPU/(2*I2C_FREQ))-8; TWAR = BMC_ADDR & 0xfe; TWDR = 0x00; TWCR &= ~((1<= sizeof(i2c_databuf)) { + TWCR_RESET; + i2c_pos = 0x00; + break; + } + i2c_databuf[i2c_pos] = TWDR; + i2c_pos++; TWCR_ACK; break; @@ -88,13 +123,23 @@ ISR (TWI_vect, ISR_BLOCK) #ifdef DEBUG printf("I2C: STOP received\n"); #endif - decode_ipmb_pkt((unsigned char*)databuf, pos); - pos = 0x00; + i2c_len = i2c_pos; + i2c_pos = 0x00; + i2c_done = 0x01; TWCR_RESET; break; + case TW_NO_INFO: +#ifdef DEBUG + printf("I2C: TW_NO_INFO received status 0x%2x\n", TW_STATUS); +#endif + TWCR |= (1<