Commit 5893f4d1 authored by Xu Yilun's avatar Xu Yilun Committed by Lee Jones

mfd: intel-m10-bmc: Simplify the legacy version reg definition

The version register is the only one in the legacy I/O space to be
accessed, so it is not necessary to define the legacy base & version
register offset. A direct definition of the legacy version register
address would be fine.
Signed-off-by: default avatarXu Yilun <yilun.xu@intel.com>
Reviewed-by: default avatarTom Rix <trix@redhat.com>
Signed-off-by: default avatarLee Jones <lee.jones@linaro.org>
parent d9b326b2
...@@ -116,17 +116,14 @@ static int check_m10bmc_version(struct intel_m10bmc *ddata) ...@@ -116,17 +116,14 @@ static int check_m10bmc_version(struct intel_m10bmc *ddata)
int ret; int ret;
/* /*
* This check is to filter out the very old legacy BMC versions, * This check is to filter out the very old legacy BMC versions. In the
* M10BMC_LEGACY_SYS_BASE is the offset to this old block of mmio * old BMC chips, the BMC version info is stored in the old version
* registers. In the old BMC chips, the BMC version info is stored * register (M10BMC_LEGACY_BUILD_VER), so its read out value would have
* in this old version register (M10BMC_LEGACY_SYS_BASE + * not been M10BMC_VER_LEGACY_INVALID (0xffffffff). But in new BMC
* M10BMC_BUILD_VER), so its read out value would have not been * chips that the driver supports, the value of this register should be
* LEGACY_INVALID (0xffffffff). But in new BMC chips that the * M10BMC_VER_LEGACY_INVALID.
* driver supports, the value of this register should be
* LEGACY_INVALID.
*/ */
ret = m10bmc_raw_read(ddata, ret = m10bmc_raw_read(ddata, M10BMC_LEGACY_BUILD_VER, &v);
M10BMC_LEGACY_SYS_BASE + M10BMC_BUILD_VER, &v);
if (ret) if (ret)
return -ENODEV; return -ENODEV;
......
...@@ -9,7 +9,7 @@ ...@@ -9,7 +9,7 @@
#include <linux/regmap.h> #include <linux/regmap.h>
#define M10BMC_LEGACY_SYS_BASE 0x300400 #define M10BMC_LEGACY_BUILD_VER 0x300468
#define M10BMC_SYS_BASE 0x300800 #define M10BMC_SYS_BASE 0x300800
#define M10BMC_MEM_END 0x1fffffff #define M10BMC_MEM_END 0x1fffffff
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment