Commit 007f2ebb authored by Lorenzo Bianconi's avatar Lorenzo Bianconi Committed by Jonathan Cameron

iio: imu: st_lsm6dsx: check if master_enable is located in primary page

Check if the master enable register is located in the primary or in the
secondary memory page. This is a preliminary patch to support i2c master
controller on lsm6dsm devices
Signed-off-by: default avatarLorenzo Bianconi <lorenzo@kernel.org>
Signed-off-by: default avatarJonathan Cameron <Jonathan.Cameron@huawei.com>
parent ee978bb8
...@@ -184,7 +184,11 @@ struct st_lsm6dsx_hw_ts_settings { ...@@ -184,7 +184,11 @@ struct st_lsm6dsx_hw_ts_settings {
*/ */
struct st_lsm6dsx_shub_settings { struct st_lsm6dsx_shub_settings {
struct st_lsm6dsx_reg page_mux; struct st_lsm6dsx_reg page_mux;
struct st_lsm6dsx_reg master_en; struct {
bool sec_page;
u8 addr;
u8 mask;
} master_en;
struct st_lsm6dsx_reg pullup_en; struct st_lsm6dsx_reg pullup_en;
struct st_lsm6dsx_reg aux_sens; struct st_lsm6dsx_reg aux_sens;
struct st_lsm6dsx_reg wr_once; struct st_lsm6dsx_reg wr_once;
......
...@@ -868,6 +868,7 @@ static const struct st_lsm6dsx_settings st_lsm6dsx_sensor_settings[] = { ...@@ -868,6 +868,7 @@ static const struct st_lsm6dsx_settings st_lsm6dsx_sensor_settings[] = {
.mask = BIT(6), .mask = BIT(6),
}, },
.master_en = { .master_en = {
.sec_page = true,
.addr = 0x14, .addr = 0x14,
.mask = BIT(2), .mask = BIT(2),
}, },
...@@ -1243,6 +1244,7 @@ static const struct st_lsm6dsx_settings st_lsm6dsx_sensor_settings[] = { ...@@ -1243,6 +1244,7 @@ static const struct st_lsm6dsx_settings st_lsm6dsx_sensor_settings[] = {
.mask = BIT(6), .mask = BIT(6),
}, },
.master_en = { .master_en = {
.sec_page = true,
.addr = 0x14, .addr = 0x14,
.mask = BIT(2), .mask = BIT(2),
}, },
......
...@@ -185,14 +185,17 @@ static int st_lsm6dsx_shub_master_enable(struct st_lsm6dsx_sensor *sensor, ...@@ -185,14 +185,17 @@ static int st_lsm6dsx_shub_master_enable(struct st_lsm6dsx_sensor *sensor,
mutex_lock(&hw->page_lock); mutex_lock(&hw->page_lock);
hub_settings = &hw->settings->shub_settings; hub_settings = &hw->settings->shub_settings;
if (hub_settings->master_en.sec_page) {
err = st_lsm6dsx_set_page(hw, true); err = st_lsm6dsx_set_page(hw, true);
if (err < 0) if (err < 0)
goto out; goto out;
}
data = ST_LSM6DSX_SHIFT_VAL(enable, hub_settings->master_en.mask); data = ST_LSM6DSX_SHIFT_VAL(enable, hub_settings->master_en.mask);
err = regmap_update_bits(hw->regmap, hub_settings->master_en.addr, err = regmap_update_bits(hw->regmap, hub_settings->master_en.addr,
hub_settings->master_en.mask, data); hub_settings->master_en.mask, data);
if (hub_settings->master_en.sec_page)
st_lsm6dsx_set_page(hw, false); st_lsm6dsx_set_page(hw, false);
out: out:
mutex_unlock(&hw->page_lock); mutex_unlock(&hw->page_lock);
......
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