X-Git-Url: https://git.zerfleddert.de/cgi-bin/gitweb.cgi/rsbs2/blobdiff_plain/7f52e04004f9e6147790d674600e0eed5a5e8448..87f4338b452dea4fdebba3eac573bec999642eb9:/bmc/i2c.c diff --git a/bmc/i2c.c b/bmc/i2c.c index 214d410..f0816f0 100644 --- a/bmc/i2c.c +++ b/bmc/i2c.c @@ -2,28 +2,140 @@ #include #include #include "i2c.h" +#include "bmc.h" +#include "ipmb.h" #define TWCR_ACK TWCR = (1<= sizeof(i2c_databuf)) { + TWCR_RESET; + i2c_pos = 0x00; + break; + } + i2c_databuf[i2c_pos] = TWDR; + i2c_pos++; + TWCR_ACK; + break; + + case TW_SR_STOP: +#ifdef DEBUG + printf("I2C: STOP received\n"); +#endif + 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<