From 96032dc90447da45f096e57a7751b91d1db09052 Mon Sep 17 00:00:00 2001 From: Vikram Bodireddy Date: Tue, 12 Nov 2019 16:26:29 +0530 Subject: PFR: CPLD mailbox i2c address change to 0x38 This commit change the PFR mailbox i2c address as the earlier address 0x70 had got conflicts with HSBP. Tested: tested on platform with debug CPLD. Change-Id: I99a2d89c7d558f5c7c2890151474afc647406aed Signed-off-by: Vikram Bodireddy --- intel-pfr-manager/libpfr/src/pfr.cpp | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/intel-pfr-manager/libpfr/src/pfr.cpp b/intel-pfr-manager/libpfr/src/pfr.cpp index a61f72e..5e43d48 100644 --- a/intel-pfr-manager/libpfr/src/pfr.cpp +++ b/intel-pfr-manager/libpfr/src/pfr.cpp @@ -29,7 +29,8 @@ namespace pfr // TODO: Dynamically pull these values from configuration // entity-manager, when needed static constexpr int i2cBusNumber = 4; -static constexpr int i2cSlaveAddress = 0x70; +// below given is 7bit address. Its 8bit addr is 0x70 +static constexpr int i2cSlaveAddress = 0x38; // CPLD mailbox registers static constexpr uint8_t cpldROTVersion = 0x01; -- cgit v1.2.3