From: Jonathan Cameron <jic23@kernel.org>
To: Lorenzo Bianconi <lorenzo@kernel.org>
Cc: linux-iio@vger.kernel.org, lorenzo.bianconi@redhat.com
Subject: Re: [PATCH 4/6] iio: imu: st_lsm6dsx: check if shub_output reg is located in primary page
Date: Mon, 23 Dec 2019 17:00:13 +0000 [thread overview]
Message-ID: <20191223170013.0da75bd1@archlinux> (raw)
In-Reply-To: <55683f1c690d0d750526eeb10e72abecf452401c.1576341963.git.lorenzo@kernel.org>
On Sat, 14 Dec 2019 17:52:57 +0100
Lorenzo Bianconi <lorenzo@kernel.org> wrote:
> Check if the sensor hub output 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: Lorenzo Bianconi <lorenzo@kernel.org>
Applied.
Thanks,
Jonathan
> ---
> drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h | 5 +++-
> drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c | 10 +++++--
> drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_shub.c | 28 +++++++++++---------
> 3 files changed, 28 insertions(+), 15 deletions(-)
>
> diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h
> index b4bd02df2900..c2d00c3dd044 100644
> --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h
> +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx.h
> @@ -197,7 +197,10 @@ struct st_lsm6dsx_shub_settings {
> struct st_lsm6dsx_reg aux_sens;
> struct st_lsm6dsx_reg wr_once;
> u8 num_ext_dev;
> - u8 shub_out;
> + struct {
> + bool sec_page;
> + u8 addr;
> + } shub_out;
> u8 slv0_addr;
> u8 dw_slv0_addr;
> u8 batch_en;
> diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
> index 6adfc53ef8d0..679831d84d78 100644
> --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
> +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_core.c
> @@ -885,7 +885,10 @@ static const struct st_lsm6dsx_settings st_lsm6dsx_sensor_settings[] = {
> .mask = BIT(6),
> },
> .num_ext_dev = 3,
> - .shub_out = 0x02,
> + .shub_out = {
> + .sec_page = true,
> + .addr = 0x02,
> + },
> .slv0_addr = 0x15,
> .dw_slv0_addr = 0x21,
> .batch_en = BIT(3),
> @@ -1262,7 +1265,10 @@ static const struct st_lsm6dsx_settings st_lsm6dsx_sensor_settings[] = {
> .mask = BIT(6),
> },
> .num_ext_dev = 3,
> - .shub_out = 0x02,
> + .shub_out = {
> + .sec_page = true,
> + .addr = 0x02,
> + },
> .slv0_addr = 0x15,
> .dw_slv0_addr = 0x21,
> .batch_en = BIT(3),
> diff --git a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_shub.c b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_shub.c
> index 767482e61a1e..ccc59682cb66 100644
> --- a/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_shub.c
> +++ b/drivers/iio/imu/st_lsm6dsx/st_lsm6dsx_shub.c
> @@ -105,20 +105,27 @@ static void st_lsm6dsx_shub_wait_complete(struct st_lsm6dsx_hw *hw)
> *
> * Read st_lsm6dsx i2c controller register
> */
> -static int st_lsm6dsx_shub_read_reg(struct st_lsm6dsx_hw *hw, u8 addr,
> - u8 *data, int len)
> +static int
> +st_lsm6dsx_shub_read_reg(struct st_lsm6dsx_hw *hw, u8 *data,
> + int len)
> {
> + const struct st_lsm6dsx_shub_settings *hub_settings;
> int err;
>
> mutex_lock(&hw->page_lock);
>
> - err = st_lsm6dsx_set_page(hw, true);
> - if (err < 0)
> - goto out;
> + hub_settings = &hw->settings->shub_settings;
> + if (hub_settings->shub_out.sec_page) {
> + err = st_lsm6dsx_set_page(hw, true);
> + if (err < 0)
> + goto out;
> + }
>
> - err = regmap_bulk_read(hw->regmap, addr, data, len);
> + err = regmap_bulk_read(hw->regmap, hub_settings->shub_out.addr,
> + data, len);
>
> - st_lsm6dsx_set_page(hw, false);
> + if (hub_settings->shub_out.sec_page)
> + st_lsm6dsx_set_page(hw, false);
> out:
> mutex_unlock(&hw->page_lock);
>
> @@ -236,8 +243,7 @@ st_lsm6dsx_shub_read(struct st_lsm6dsx_sensor *sensor, u8 addr,
>
> st_lsm6dsx_shub_wait_complete(hw);
>
> - err = st_lsm6dsx_shub_read_reg(hw, hub_settings->shub_out, data,
> - len & ST_LS6DSX_READ_OP_MASK);
> + err = st_lsm6dsx_shub_read_reg(hw, data, len & ST_LS6DSX_READ_OP_MASK);
>
> st_lsm6dsx_shub_master_enable(sensor, false);
>
> @@ -719,9 +725,7 @@ st_lsm6dsx_shub_check_wai(struct st_lsm6dsx_hw *hw, u8 *i2c_addr,
>
> st_lsm6dsx_shub_wait_complete(hw);
>
> - err = st_lsm6dsx_shub_read_reg(hw,
> - hub_settings->shub_out,
> - &data, sizeof(data));
> + err = st_lsm6dsx_shub_read_reg(hw, &data, sizeof(data));
>
> st_lsm6dsx_shub_master_enable(sensor, false);
>
next prev parent reply other threads:[~2019-12-23 17:01 UTC|newest]
Thread overview: 15+ messages / expand[flat|nested] mbox.gz Atom feed top
2019-12-14 16:52 [PATCH 0/6] introduce i2c master controller support for LSM6DSM Lorenzo Bianconi
2019-12-14 16:52 ` [PATCH 1/6] iio: imu: st_lsm6dsx: export max num of slave devices in st_lsm6dsx_shub_settings Lorenzo Bianconi
2019-12-23 16:50 ` Jonathan Cameron
2019-12-14 16:52 ` [PATCH 2/6] iio: imu: st_lsm6dsx: check if master_enable is located in primary page Lorenzo Bianconi
2019-12-23 16:51 ` Jonathan Cameron
2019-12-14 16:52 ` [PATCH 3/6] iio: imu: st_lsm6dsx: check if pull_up " Lorenzo Bianconi
2019-12-23 16:51 ` Jonathan Cameron
2019-12-23 16:59 ` Jonathan Cameron
2019-12-14 16:52 ` [PATCH 4/6] iio: imu: st_lsm6dsx: check if shub_output reg " Lorenzo Bianconi
2019-12-23 17:00 ` Jonathan Cameron [this message]
2019-12-14 16:52 ` [PATCH 5/6] iio: imu: st_lsm6dsx: rename st_lsm6dsx_shub_read_reg in st_lsm6dsx_shub_read_output Lorenzo Bianconi
2019-12-23 17:01 ` Jonathan Cameron
2019-12-14 16:52 ` [PATCH 6/6] iio: imu: st_lsm6dsx: enable sensor-hub support for lsm6dsm Lorenzo Bianconi
2019-12-23 16:49 ` Jonathan Cameron
2019-12-23 17:25 ` Lorenzo Bianconi
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=20191223170013.0da75bd1@archlinux \
--to=jic23@kernel.org \
--cc=linux-iio@vger.kernel.org \
--cc=lorenzo.bianconi@redhat.com \
--cc=lorenzo@kernel.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox