* [PATCH 0/3] iio: adc: meson-axg: add saradc driver support
@ 2018-03-26 8:46 Yixun Lan
2018-03-26 8:46 ` [PATCH 1/3] iio: adc: meson-saradc: squash and share the common adc platform data Yixun Lan
` (2 more replies)
0 siblings, 3 replies; 13+ messages in thread
From: Yixun Lan @ 2018-03-26 8:46 UTC (permalink / raw)
To: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen,
Peter Meerwald-Stadler
Cc: Yixun Lan, Martin Blumenstingl, Heiner Kallweit, Rob Herring,
Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione,
Xingyu Chen, linux-iio, linux-amlogic, linux-arm-kernel,
linux-kernel, devicetree
The patch 1 is a general small improvement, no function changed!
The last two patches try to add saradc support for Amlogic'S Meson-AXG
SoC platfrom.
I will send the DTS part patch in another thread, since it depend on
the clock AO driver[0].
[0] https://lkml.kernel.org/r/20180323143816.200573-1-yixun.lan@amlogic.com
Xingyu Chen (2):
dt-bindings: iio: adc: document the Meson AXG support
iio: adc: meson-axg: add saradc driver
Yixun Lan (1):
iio: adc: meson-saradc: squash and share the common adc platform data
.../bindings/iio/adc/amlogic,meson-saradc.txt | 1 +
drivers/iio/adc/meson_saradc.c | 83 +++++++++++++---------
2 files changed, 51 insertions(+), 33 deletions(-)
--
2.15.1
^ permalink raw reply [flat|nested] 13+ messages in thread* [PATCH 1/3] iio: adc: meson-saradc: squash and share the common adc platform data 2018-03-26 8:46 [PATCH 0/3] iio: adc: meson-axg: add saradc driver support Yixun Lan @ 2018-03-26 8:46 ` Yixun Lan 2018-03-30 9:48 ` Jonathan Cameron 2018-03-30 11:06 ` Martin Blumenstingl 2018-03-26 8:46 ` [PATCH 2/3] dt-bindings: iio: adc: document the Meson AXG support Yixun Lan 2018-03-26 8:46 ` [PATCH 3/3] iio: adc: meson-axg: add saradc driver Yixun Lan 2 siblings, 2 replies; 13+ messages in thread From: Yixun Lan @ 2018-03-26 8:46 UTC (permalink / raw) To: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler Cc: Yixun Lan, Martin Blumenstingl, Heiner Kallweit, Rob Herring, Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione, Xingyu Chen, linux-iio, linux-amlogic, linux-arm-kernel, linux-kernel Extract and promote common adc platform data into a new structure, to make it better share the info between several SoCs, this will avoid duplicating the code all over the place, Save a few memory and make the code more maintainable. Signed-off-by: Yixun Lan <yixun.lan@amlogic.com> --- drivers/iio/adc/meson_saradc.c | 75 +++++++++++++++++++++++------------------- 1 file changed, 42 insertions(+), 33 deletions(-) diff --git a/drivers/iio/adc/meson_saradc.c b/drivers/iio/adc/meson_saradc.c index 29fa7736d80c..799ed929ab99 100644 --- a/drivers/iio/adc/meson_saradc.c +++ b/drivers/iio/adc/meson_saradc.c @@ -219,15 +219,19 @@ enum meson_sar_adc_chan7_mux_sel { CHAN7_MUX_CH7_INPUT = 0x7, }; -struct meson_sar_adc_data { +struct meson_sar_adc_param { bool has_bl30_integration; unsigned long clock_rate; u32 bandgap_reg; unsigned int resolution; - const char *name; const struct regmap_config *regmap_config; }; +struct meson_sar_adc_data { + const struct meson_sar_adc_param *param; + const char *name; +}; + struct meson_sar_adc_priv { struct regmap *regmap; struct regulator *vref; @@ -276,7 +280,7 @@ static int meson_sar_adc_calib_val(struct iio_dev *indio_dev, int val) /* use val_calib = scale * val_raw + offset calibration function */ tmp = div_s64((s64)val * priv->calibscale, MILLION) + priv->calibbias; - return clamp(tmp, 0, (1 << priv->data->resolution) - 1); + return clamp(tmp, 0, (1 << priv->data->param->resolution) - 1); } static int meson_sar_adc_wait_busy_clear(struct iio_dev *indio_dev) @@ -328,7 +332,7 @@ static int meson_sar_adc_read_raw_sample(struct iio_dev *indio_dev, } fifo_val = FIELD_GET(MESON_SAR_ADC_FIFO_RD_SAMPLE_VALUE_MASK, regval); - fifo_val &= GENMASK(priv->data->resolution - 1, 0); + fifo_val &= GENMASK(priv->data->param->resolution - 1, 0); *val = meson_sar_adc_calib_val(indio_dev, fifo_val); return 0; @@ -447,7 +451,7 @@ static int meson_sar_adc_lock(struct iio_dev *indio_dev) mutex_lock(&indio_dev->mlock); - if (priv->data->has_bl30_integration) { + if (priv->data->param->has_bl30_integration) { /* prevent BL30 from using the SAR ADC while we are using it */ regmap_update_bits(priv->regmap, MESON_SAR_ADC_DELAY, MESON_SAR_ADC_DELAY_KERNEL_BUSY, @@ -473,7 +477,7 @@ static void meson_sar_adc_unlock(struct iio_dev *indio_dev) { struct meson_sar_adc_priv *priv = iio_priv(indio_dev); - if (priv->data->has_bl30_integration) + if (priv->data->param->has_bl30_integration) /* allow BL30 to use the SAR ADC again */ regmap_update_bits(priv->regmap, MESON_SAR_ADC_DELAY, MESON_SAR_ADC_DELAY_KERNEL_BUSY, 0); @@ -557,7 +561,7 @@ static int meson_sar_adc_iio_info_read_raw(struct iio_dev *indio_dev, } *val = ret / 1000; - *val2 = priv->data->resolution; + *val2 = priv->data->param->resolution; return IIO_VAL_FRACTIONAL_LOG2; case IIO_CHAN_INFO_CALIBBIAS: @@ -630,7 +634,7 @@ static int meson_sar_adc_init(struct iio_dev *indio_dev) */ meson_sar_adc_set_chan7_mux(indio_dev, CHAN7_MUX_CH7_INPUT); - if (priv->data->has_bl30_integration) { + if (priv->data->param->has_bl30_integration) { /* * leave sampling delay and the input clocks as configured by * BL30 to make sure BL30 gets the values it expects when @@ -710,7 +714,7 @@ static int meson_sar_adc_init(struct iio_dev *indio_dev) return ret; } - ret = clk_set_rate(priv->adc_clk, priv->data->clock_rate); + ret = clk_set_rate(priv->adc_clk, priv->data->param->clock_rate); if (ret) { dev_err(indio_dev->dev.parent, "failed to set adc clock rate\n"); @@ -723,14 +727,15 @@ static int meson_sar_adc_init(struct iio_dev *indio_dev) static void meson_sar_adc_set_bandgap(struct iio_dev *indio_dev, bool on_off) { struct meson_sar_adc_priv *priv = iio_priv(indio_dev); + const struct meson_sar_adc_param *param = priv->data->param; u32 enable_mask; - if (priv->data->bandgap_reg == MESON_SAR_ADC_REG11) + if (param->bandgap_reg == MESON_SAR_ADC_REG11) enable_mask = MESON_SAR_ADC_REG11_BANDGAP_EN; else enable_mask = MESON_SAR_ADC_DELTA_10_TS_VBG_EN; - regmap_update_bits(priv->regmap, priv->data->bandgap_reg, enable_mask, + regmap_update_bits(priv->regmap, param->bandgap_reg, enable_mask, on_off ? enable_mask : 0); } @@ -842,8 +847,8 @@ static int meson_sar_adc_calib(struct iio_dev *indio_dev) int ret, nominal0, nominal1, value0, value1; /* use points 25% and 75% for calibration */ - nominal0 = (1 << priv->data->resolution) / 4; - nominal1 = (1 << priv->data->resolution) * 3 / 4; + nominal0 = (1 << priv->data->param->resolution) / 4; + nominal1 = (1 << priv->data->param->resolution) * 3 / 4; meson_sar_adc_set_chan7_mux(indio_dev, CHAN7_MUX_VDD_DIV4); usleep_range(10, 20); @@ -881,48 +886,52 @@ static const struct iio_info meson_sar_adc_iio_info = { .read_raw = meson_sar_adc_iio_info_read_raw, }; -static const struct meson_sar_adc_data meson_sar_adc_meson8_data = { - .has_bl30_integration = false, - .clock_rate = 1150000, - .bandgap_reg = MESON_SAR_ADC_DELTA_10, - .regmap_config = &meson_sar_adc_regmap_config_meson8, - .resolution = 10, - .name = "meson-meson8-saradc", -}; - -static const struct meson_sar_adc_data meson_sar_adc_meson8b_data = { +static const struct meson_sar_adc_param meson_sar_adc_meson8_param = { .has_bl30_integration = false, .clock_rate = 1150000, .bandgap_reg = MESON_SAR_ADC_DELTA_10, .regmap_config = &meson_sar_adc_regmap_config_meson8, .resolution = 10, - .name = "meson-meson8b-saradc", }; -static const struct meson_sar_adc_data meson_sar_adc_gxbb_data = { +static const struct meson_sar_adc_param meson_sar_adc_gxbb_param = { .has_bl30_integration = true, .clock_rate = 1200000, .bandgap_reg = MESON_SAR_ADC_REG11, .regmap_config = &meson_sar_adc_regmap_config_gxbb, .resolution = 10, - .name = "meson-gxbb-saradc", }; -static const struct meson_sar_adc_data meson_sar_adc_gxl_data = { +static const struct meson_sar_adc_param meson_sar_adc_gxl_param = { .has_bl30_integration = true, .clock_rate = 1200000, .bandgap_reg = MESON_SAR_ADC_REG11, .regmap_config = &meson_sar_adc_regmap_config_gxbb, .resolution = 12, +}; + +static const struct meson_sar_adc_data meson_sar_adc_meson8_data = { + .param = &meson_sar_adc_meson8_param, + .name = "meson-meson8-saradc", +}; + +static const struct meson_sar_adc_data meson_sar_adc_meson8b_data = { + .param = &meson_sar_adc_meson8_param, + .name = "meson-meson8b-saradc", +}; + +static const struct meson_sar_adc_data meson_sar_adc_gxbb_data = { + .param = &meson_sar_adc_gxbb_param, + .name = "meson-gxbb-saradc", +}; + +static const struct meson_sar_adc_data meson_sar_adc_gxl_data = { + .param = &meson_sar_adc_gxl_param, .name = "meson-gxl-saradc", }; static const struct meson_sar_adc_data meson_sar_adc_gxm_data = { - .has_bl30_integration = true, - .clock_rate = 1200000, - .bandgap_reg = MESON_SAR_ADC_REG11, - .regmap_config = &meson_sar_adc_regmap_config_gxbb, - .resolution = 12, + .param = &meson_sar_adc_gxl_param, .name = "meson-gxm-saradc", }; @@ -999,7 +1008,7 @@ static int meson_sar_adc_probe(struct platform_device *pdev) return ret; priv->regmap = devm_regmap_init_mmio(&pdev->dev, base, - priv->data->regmap_config); + priv->data->param->regmap_config); if (IS_ERR(priv->regmap)) return PTR_ERR(priv->regmap); -- 2.15.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 1/3] iio: adc: meson-saradc: squash and share the common adc platform data 2018-03-26 8:46 ` [PATCH 1/3] iio: adc: meson-saradc: squash and share the common adc platform data Yixun Lan @ 2018-03-30 9:48 ` Jonathan Cameron 2018-03-30 10:37 ` Yixun Lan 2018-03-30 11:06 ` Martin Blumenstingl 1 sibling, 1 reply; 13+ messages in thread From: Jonathan Cameron @ 2018-03-30 9:48 UTC (permalink / raw) To: Yixun Lan Cc: Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler, Martin Blumenstingl, Heiner Kallweit, Rob Herring, Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione, Xingyu Chen, linux-iio, linux-amlogic, linux-arm-kernel, linux-kernel On Mon, 26 Mar 2018 16:46:27 +0800 Yixun Lan <yixun.lan@amlogic.com> wrote: > Extract and promote common adc platform data into a new structure, > to make it better share the info between several SoCs, > this will avoid duplicating the code all over the place, > Save a few memory and make the code more maintainable. > > Signed-off-by: Yixun Lan <yixun.lan@amlogic.com> Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to play with it. Thanks, Jonathan > --- > drivers/iio/adc/meson_saradc.c | 75 +++++++++++++++++++++++------------------- > 1 file changed, 42 insertions(+), 33 deletions(-) > > diff --git a/drivers/iio/adc/meson_saradc.c b/drivers/iio/adc/meson_saradc.c > index 29fa7736d80c..799ed929ab99 100644 > --- a/drivers/iio/adc/meson_saradc.c > +++ b/drivers/iio/adc/meson_saradc.c > @@ -219,15 +219,19 @@ enum meson_sar_adc_chan7_mux_sel { > CHAN7_MUX_CH7_INPUT = 0x7, > }; > > -struct meson_sar_adc_data { > +struct meson_sar_adc_param { > bool has_bl30_integration; > unsigned long clock_rate; > u32 bandgap_reg; > unsigned int resolution; > - const char *name; > const struct regmap_config *regmap_config; > }; > > +struct meson_sar_adc_data { > + const struct meson_sar_adc_param *param; > + const char *name; > +}; > + > struct meson_sar_adc_priv { > struct regmap *regmap; > struct regulator *vref; > @@ -276,7 +280,7 @@ static int meson_sar_adc_calib_val(struct iio_dev *indio_dev, int val) > /* use val_calib = scale * val_raw + offset calibration function */ > tmp = div_s64((s64)val * priv->calibscale, MILLION) + priv->calibbias; > > - return clamp(tmp, 0, (1 << priv->data->resolution) - 1); > + return clamp(tmp, 0, (1 << priv->data->param->resolution) - 1); > } > > static int meson_sar_adc_wait_busy_clear(struct iio_dev *indio_dev) > @@ -328,7 +332,7 @@ static int meson_sar_adc_read_raw_sample(struct iio_dev *indio_dev, > } > > fifo_val = FIELD_GET(MESON_SAR_ADC_FIFO_RD_SAMPLE_VALUE_MASK, regval); > - fifo_val &= GENMASK(priv->data->resolution - 1, 0); > + fifo_val &= GENMASK(priv->data->param->resolution - 1, 0); > *val = meson_sar_adc_calib_val(indio_dev, fifo_val); > > return 0; > @@ -447,7 +451,7 @@ static int meson_sar_adc_lock(struct iio_dev *indio_dev) > > mutex_lock(&indio_dev->mlock); > > - if (priv->data->has_bl30_integration) { > + if (priv->data->param->has_bl30_integration) { > /* prevent BL30 from using the SAR ADC while we are using it */ > regmap_update_bits(priv->regmap, MESON_SAR_ADC_DELAY, > MESON_SAR_ADC_DELAY_KERNEL_BUSY, > @@ -473,7 +477,7 @@ static void meson_sar_adc_unlock(struct iio_dev *indio_dev) > { > struct meson_sar_adc_priv *priv = iio_priv(indio_dev); > > - if (priv->data->has_bl30_integration) > + if (priv->data->param->has_bl30_integration) > /* allow BL30 to use the SAR ADC again */ > regmap_update_bits(priv->regmap, MESON_SAR_ADC_DELAY, > MESON_SAR_ADC_DELAY_KERNEL_BUSY, 0); > @@ -557,7 +561,7 @@ static int meson_sar_adc_iio_info_read_raw(struct iio_dev *indio_dev, > } > > *val = ret / 1000; > - *val2 = priv->data->resolution; > + *val2 = priv->data->param->resolution; > return IIO_VAL_FRACTIONAL_LOG2; > > case IIO_CHAN_INFO_CALIBBIAS: > @@ -630,7 +634,7 @@ static int meson_sar_adc_init(struct iio_dev *indio_dev) > */ > meson_sar_adc_set_chan7_mux(indio_dev, CHAN7_MUX_CH7_INPUT); > > - if (priv->data->has_bl30_integration) { > + if (priv->data->param->has_bl30_integration) { > /* > * leave sampling delay and the input clocks as configured by > * BL30 to make sure BL30 gets the values it expects when > @@ -710,7 +714,7 @@ static int meson_sar_adc_init(struct iio_dev *indio_dev) > return ret; > } > > - ret = clk_set_rate(priv->adc_clk, priv->data->clock_rate); > + ret = clk_set_rate(priv->adc_clk, priv->data->param->clock_rate); > if (ret) { > dev_err(indio_dev->dev.parent, > "failed to set adc clock rate\n"); > @@ -723,14 +727,15 @@ static int meson_sar_adc_init(struct iio_dev *indio_dev) > static void meson_sar_adc_set_bandgap(struct iio_dev *indio_dev, bool on_off) > { > struct meson_sar_adc_priv *priv = iio_priv(indio_dev); > + const struct meson_sar_adc_param *param = priv->data->param; > u32 enable_mask; > > - if (priv->data->bandgap_reg == MESON_SAR_ADC_REG11) > + if (param->bandgap_reg == MESON_SAR_ADC_REG11) > enable_mask = MESON_SAR_ADC_REG11_BANDGAP_EN; > else > enable_mask = MESON_SAR_ADC_DELTA_10_TS_VBG_EN; > > - regmap_update_bits(priv->regmap, priv->data->bandgap_reg, enable_mask, > + regmap_update_bits(priv->regmap, param->bandgap_reg, enable_mask, > on_off ? enable_mask : 0); > } > > @@ -842,8 +847,8 @@ static int meson_sar_adc_calib(struct iio_dev *indio_dev) > int ret, nominal0, nominal1, value0, value1; > > /* use points 25% and 75% for calibration */ > - nominal0 = (1 << priv->data->resolution) / 4; > - nominal1 = (1 << priv->data->resolution) * 3 / 4; > + nominal0 = (1 << priv->data->param->resolution) / 4; > + nominal1 = (1 << priv->data->param->resolution) * 3 / 4; > > meson_sar_adc_set_chan7_mux(indio_dev, CHAN7_MUX_VDD_DIV4); > usleep_range(10, 20); > @@ -881,48 +886,52 @@ static const struct iio_info meson_sar_adc_iio_info = { > .read_raw = meson_sar_adc_iio_info_read_raw, > }; > > -static const struct meson_sar_adc_data meson_sar_adc_meson8_data = { > - .has_bl30_integration = false, > - .clock_rate = 1150000, > - .bandgap_reg = MESON_SAR_ADC_DELTA_10, > - .regmap_config = &meson_sar_adc_regmap_config_meson8, > - .resolution = 10, > - .name = "meson-meson8-saradc", > -}; > - > -static const struct meson_sar_adc_data meson_sar_adc_meson8b_data = { > +static const struct meson_sar_adc_param meson_sar_adc_meson8_param = { > .has_bl30_integration = false, > .clock_rate = 1150000, > .bandgap_reg = MESON_SAR_ADC_DELTA_10, > .regmap_config = &meson_sar_adc_regmap_config_meson8, > .resolution = 10, > - .name = "meson-meson8b-saradc", > }; > > -static const struct meson_sar_adc_data meson_sar_adc_gxbb_data = { > +static const struct meson_sar_adc_param meson_sar_adc_gxbb_param = { > .has_bl30_integration = true, > .clock_rate = 1200000, > .bandgap_reg = MESON_SAR_ADC_REG11, > .regmap_config = &meson_sar_adc_regmap_config_gxbb, > .resolution = 10, > - .name = "meson-gxbb-saradc", > }; > > -static const struct meson_sar_adc_data meson_sar_adc_gxl_data = { > +static const struct meson_sar_adc_param meson_sar_adc_gxl_param = { > .has_bl30_integration = true, > .clock_rate = 1200000, > .bandgap_reg = MESON_SAR_ADC_REG11, > .regmap_config = &meson_sar_adc_regmap_config_gxbb, > .resolution = 12, > +}; > + > +static const struct meson_sar_adc_data meson_sar_adc_meson8_data = { > + .param = &meson_sar_adc_meson8_param, > + .name = "meson-meson8-saradc", > +}; > + > +static const struct meson_sar_adc_data meson_sar_adc_meson8b_data = { > + .param = &meson_sar_adc_meson8_param, > + .name = "meson-meson8b-saradc", > +}; > + > +static const struct meson_sar_adc_data meson_sar_adc_gxbb_data = { > + .param = &meson_sar_adc_gxbb_param, > + .name = "meson-gxbb-saradc", > +}; > + > +static const struct meson_sar_adc_data meson_sar_adc_gxl_data = { > + .param = &meson_sar_adc_gxl_param, > .name = "meson-gxl-saradc", > }; > > static const struct meson_sar_adc_data meson_sar_adc_gxm_data = { > - .has_bl30_integration = true, > - .clock_rate = 1200000, > - .bandgap_reg = MESON_SAR_ADC_REG11, > - .regmap_config = &meson_sar_adc_regmap_config_gxbb, > - .resolution = 12, > + .param = &meson_sar_adc_gxl_param, > .name = "meson-gxm-saradc", > }; > > @@ -999,7 +1008,7 @@ static int meson_sar_adc_probe(struct platform_device *pdev) > return ret; > > priv->regmap = devm_regmap_init_mmio(&pdev->dev, base, > - priv->data->regmap_config); > + priv->data->param->regmap_config); > if (IS_ERR(priv->regmap)) > return PTR_ERR(priv->regmap); > ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/3] iio: adc: meson-saradc: squash and share the common adc platform data 2018-03-30 9:48 ` Jonathan Cameron @ 2018-03-30 10:37 ` Yixun Lan 0 siblings, 0 replies; 13+ messages in thread From: Yixun Lan @ 2018-03-30 10:37 UTC (permalink / raw) To: Jonathan Cameron Cc: yixun.lan, Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler, Martin Blumenstingl, Heiner Kallweit, Rob Herring, Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione, Xingyu Chen, linux-iio, linux-amlogic, linux-arm-kernel, linux-kernel On 03/30/18 17:48, Jonathan Cameron wrote: > On Mon, 26 Mar 2018 16:46:27 +0800 > Yixun Lan <yixun.lan@amlogic.com> wrote: > >> Extract and promote common adc platform data into a new structure, >> to make it better share the info between several SoCs, >> this will avoid duplicating the code all over the place, >> Save a few memory and make the code more maintainable. >> >> Signed-off-by: Yixun Lan <yixun.lan@amlogic.com> > Applied to the togreg branch of iio.git and pushed out as testing > for the autobuilders to play with it. Hi Jonathan Great! Thanks for taking these Yixun ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 1/3] iio: adc: meson-saradc: squash and share the common adc platform data 2018-03-26 8:46 ` [PATCH 1/3] iio: adc: meson-saradc: squash and share the common adc platform data Yixun Lan 2018-03-30 9:48 ` Jonathan Cameron @ 2018-03-30 11:06 ` Martin Blumenstingl 1 sibling, 0 replies; 13+ messages in thread From: Martin Blumenstingl @ 2018-03-30 11:06 UTC (permalink / raw) To: Yixun Lan Cc: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler, Heiner Kallweit, Rob Herring, Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione, Xingyu Chen, linux-iio, linux-amlogic, linux-arm-kernel, linux-kernel On Mon, Mar 26, 2018 at 10:46 AM, Yixun Lan <yixun.lan@amlogic.com> wrote: > Extract and promote common adc platform data into a new structure, > to make it better share the info between several SoCs, > this will avoid duplicating the code all over the place, > Save a few memory and make the code more maintainable. > > Signed-off-by: Yixun Lan <yixun.lan@amlogic.com> Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> this will also help me when I add support for the internal temperature sensor (as Meson8b and Meson8m2 share the same settings, except the name) > --- > drivers/iio/adc/meson_saradc.c | 75 +++++++++++++++++++++++------------------- > 1 file changed, 42 insertions(+), 33 deletions(-) > > diff --git a/drivers/iio/adc/meson_saradc.c b/drivers/iio/adc/meson_saradc.c > index 29fa7736d80c..799ed929ab99 100644 > --- a/drivers/iio/adc/meson_saradc.c > +++ b/drivers/iio/adc/meson_saradc.c > @@ -219,15 +219,19 @@ enum meson_sar_adc_chan7_mux_sel { > CHAN7_MUX_CH7_INPUT = 0x7, > }; > > -struct meson_sar_adc_data { > +struct meson_sar_adc_param { > bool has_bl30_integration; > unsigned long clock_rate; > u32 bandgap_reg; > unsigned int resolution; > - const char *name; > const struct regmap_config *regmap_config; > }; > > +struct meson_sar_adc_data { > + const struct meson_sar_adc_param *param; > + const char *name; > +}; > + > struct meson_sar_adc_priv { > struct regmap *regmap; > struct regulator *vref; > @@ -276,7 +280,7 @@ static int meson_sar_adc_calib_val(struct iio_dev *indio_dev, int val) > /* use val_calib = scale * val_raw + offset calibration function */ > tmp = div_s64((s64)val * priv->calibscale, MILLION) + priv->calibbias; > > - return clamp(tmp, 0, (1 << priv->data->resolution) - 1); > + return clamp(tmp, 0, (1 << priv->data->param->resolution) - 1); > } > > static int meson_sar_adc_wait_busy_clear(struct iio_dev *indio_dev) > @@ -328,7 +332,7 @@ static int meson_sar_adc_read_raw_sample(struct iio_dev *indio_dev, > } > > fifo_val = FIELD_GET(MESON_SAR_ADC_FIFO_RD_SAMPLE_VALUE_MASK, regval); > - fifo_val &= GENMASK(priv->data->resolution - 1, 0); > + fifo_val &= GENMASK(priv->data->param->resolution - 1, 0); > *val = meson_sar_adc_calib_val(indio_dev, fifo_val); > > return 0; > @@ -447,7 +451,7 @@ static int meson_sar_adc_lock(struct iio_dev *indio_dev) > > mutex_lock(&indio_dev->mlock); > > - if (priv->data->has_bl30_integration) { > + if (priv->data->param->has_bl30_integration) { > /* prevent BL30 from using the SAR ADC while we are using it */ > regmap_update_bits(priv->regmap, MESON_SAR_ADC_DELAY, > MESON_SAR_ADC_DELAY_KERNEL_BUSY, > @@ -473,7 +477,7 @@ static void meson_sar_adc_unlock(struct iio_dev *indio_dev) > { > struct meson_sar_adc_priv *priv = iio_priv(indio_dev); > > - if (priv->data->has_bl30_integration) > + if (priv->data->param->has_bl30_integration) > /* allow BL30 to use the SAR ADC again */ > regmap_update_bits(priv->regmap, MESON_SAR_ADC_DELAY, > MESON_SAR_ADC_DELAY_KERNEL_BUSY, 0); > @@ -557,7 +561,7 @@ static int meson_sar_adc_iio_info_read_raw(struct iio_dev *indio_dev, > } > > *val = ret / 1000; > - *val2 = priv->data->resolution; > + *val2 = priv->data->param->resolution; > return IIO_VAL_FRACTIONAL_LOG2; > > case IIO_CHAN_INFO_CALIBBIAS: > @@ -630,7 +634,7 @@ static int meson_sar_adc_init(struct iio_dev *indio_dev) > */ > meson_sar_adc_set_chan7_mux(indio_dev, CHAN7_MUX_CH7_INPUT); > > - if (priv->data->has_bl30_integration) { > + if (priv->data->param->has_bl30_integration) { > /* > * leave sampling delay and the input clocks as configured by > * BL30 to make sure BL30 gets the values it expects when > @@ -710,7 +714,7 @@ static int meson_sar_adc_init(struct iio_dev *indio_dev) > return ret; > } > > - ret = clk_set_rate(priv->adc_clk, priv->data->clock_rate); > + ret = clk_set_rate(priv->adc_clk, priv->data->param->clock_rate); > if (ret) { > dev_err(indio_dev->dev.parent, > "failed to set adc clock rate\n"); > @@ -723,14 +727,15 @@ static int meson_sar_adc_init(struct iio_dev *indio_dev) > static void meson_sar_adc_set_bandgap(struct iio_dev *indio_dev, bool on_off) > { > struct meson_sar_adc_priv *priv = iio_priv(indio_dev); > + const struct meson_sar_adc_param *param = priv->data->param; > u32 enable_mask; > > - if (priv->data->bandgap_reg == MESON_SAR_ADC_REG11) > + if (param->bandgap_reg == MESON_SAR_ADC_REG11) > enable_mask = MESON_SAR_ADC_REG11_BANDGAP_EN; > else > enable_mask = MESON_SAR_ADC_DELTA_10_TS_VBG_EN; > > - regmap_update_bits(priv->regmap, priv->data->bandgap_reg, enable_mask, > + regmap_update_bits(priv->regmap, param->bandgap_reg, enable_mask, > on_off ? enable_mask : 0); > } > > @@ -842,8 +847,8 @@ static int meson_sar_adc_calib(struct iio_dev *indio_dev) > int ret, nominal0, nominal1, value0, value1; > > /* use points 25% and 75% for calibration */ > - nominal0 = (1 << priv->data->resolution) / 4; > - nominal1 = (1 << priv->data->resolution) * 3 / 4; > + nominal0 = (1 << priv->data->param->resolution) / 4; > + nominal1 = (1 << priv->data->param->resolution) * 3 / 4; > > meson_sar_adc_set_chan7_mux(indio_dev, CHAN7_MUX_VDD_DIV4); > usleep_range(10, 20); > @@ -881,48 +886,52 @@ static const struct iio_info meson_sar_adc_iio_info = { > .read_raw = meson_sar_adc_iio_info_read_raw, > }; > > -static const struct meson_sar_adc_data meson_sar_adc_meson8_data = { > - .has_bl30_integration = false, > - .clock_rate = 1150000, > - .bandgap_reg = MESON_SAR_ADC_DELTA_10, > - .regmap_config = &meson_sar_adc_regmap_config_meson8, > - .resolution = 10, > - .name = "meson-meson8-saradc", > -}; > - > -static const struct meson_sar_adc_data meson_sar_adc_meson8b_data = { > +static const struct meson_sar_adc_param meson_sar_adc_meson8_param = { > .has_bl30_integration = false, > .clock_rate = 1150000, > .bandgap_reg = MESON_SAR_ADC_DELTA_10, > .regmap_config = &meson_sar_adc_regmap_config_meson8, > .resolution = 10, > - .name = "meson-meson8b-saradc", > }; > > -static const struct meson_sar_adc_data meson_sar_adc_gxbb_data = { > +static const struct meson_sar_adc_param meson_sar_adc_gxbb_param = { > .has_bl30_integration = true, > .clock_rate = 1200000, > .bandgap_reg = MESON_SAR_ADC_REG11, > .regmap_config = &meson_sar_adc_regmap_config_gxbb, > .resolution = 10, > - .name = "meson-gxbb-saradc", > }; > > -static const struct meson_sar_adc_data meson_sar_adc_gxl_data = { > +static const struct meson_sar_adc_param meson_sar_adc_gxl_param = { > .has_bl30_integration = true, > .clock_rate = 1200000, > .bandgap_reg = MESON_SAR_ADC_REG11, > .regmap_config = &meson_sar_adc_regmap_config_gxbb, > .resolution = 12, > +}; > + > +static const struct meson_sar_adc_data meson_sar_adc_meson8_data = { > + .param = &meson_sar_adc_meson8_param, > + .name = "meson-meson8-saradc", > +}; > + > +static const struct meson_sar_adc_data meson_sar_adc_meson8b_data = { > + .param = &meson_sar_adc_meson8_param, > + .name = "meson-meson8b-saradc", > +}; > + > +static const struct meson_sar_adc_data meson_sar_adc_gxbb_data = { > + .param = &meson_sar_adc_gxbb_param, > + .name = "meson-gxbb-saradc", > +}; > + > +static const struct meson_sar_adc_data meson_sar_adc_gxl_data = { > + .param = &meson_sar_adc_gxl_param, > .name = "meson-gxl-saradc", > }; > > static const struct meson_sar_adc_data meson_sar_adc_gxm_data = { > - .has_bl30_integration = true, > - .clock_rate = 1200000, > - .bandgap_reg = MESON_SAR_ADC_REG11, > - .regmap_config = &meson_sar_adc_regmap_config_gxbb, > - .resolution = 12, > + .param = &meson_sar_adc_gxl_param, > .name = "meson-gxm-saradc", > }; > > @@ -999,7 +1008,7 @@ static int meson_sar_adc_probe(struct platform_device *pdev) > return ret; > > priv->regmap = devm_regmap_init_mmio(&pdev->dev, base, > - priv->data->regmap_config); > + priv->data->param->regmap_config); > if (IS_ERR(priv->regmap)) > return PTR_ERR(priv->regmap); > > -- > 2.15.1 > ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 2/3] dt-bindings: iio: adc: document the Meson AXG support 2018-03-26 8:46 [PATCH 0/3] iio: adc: meson-axg: add saradc driver support Yixun Lan 2018-03-26 8:46 ` [PATCH 1/3] iio: adc: meson-saradc: squash and share the common adc platform data Yixun Lan @ 2018-03-26 8:46 ` Yixun Lan 2018-03-27 15:07 ` Rob Herring 2018-03-30 11:05 ` Martin Blumenstingl 2018-03-26 8:46 ` [PATCH 3/3] iio: adc: meson-axg: add saradc driver Yixun Lan 2 siblings, 2 replies; 13+ messages in thread From: Yixun Lan @ 2018-03-26 8:46 UTC (permalink / raw) To: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler Cc: Xingyu Chen, Martin Blumenstingl, Heiner Kallweit, Rob Herring, Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione, Yixun Lan, linux-iio, linux-amlogic, linux-arm-kernel, linux-kernel, devicetree From: Xingyu Chen <xingyu.chen@amlogic.com> Update the documentation to expicitly support the Meson-AXG SoC. Signed-off-by: Xingyu Chen <xingyu.chen@amlogic.com> --- Documentation/devicetree/bindings/iio/adc/amlogic,meson-saradc.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/Documentation/devicetree/bindings/iio/adc/amlogic,meson-saradc.txt b/Documentation/devicetree/bindings/iio/adc/amlogic,meson-saradc.txt index 1e6ee3deb4fa..d1acd5ea2737 100644 --- a/Documentation/devicetree/bindings/iio/adc/amlogic,meson-saradc.txt +++ b/Documentation/devicetree/bindings/iio/adc/amlogic,meson-saradc.txt @@ -7,6 +7,7 @@ Required properties: - "amlogic,meson-gxbb-saradc" for GXBB - "amlogic,meson-gxl-saradc" for GXL - "amlogic,meson-gxm-saradc" for GXM + - "amlogic,meson-axg-saradc" for AXG along with the generic "amlogic,meson-saradc" - reg: the physical base address and length of the registers - interrupts: the interrupt indicating end of sampling -- 2.15.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 2/3] dt-bindings: iio: adc: document the Meson AXG support 2018-03-26 8:46 ` [PATCH 2/3] dt-bindings: iio: adc: document the Meson AXG support Yixun Lan @ 2018-03-27 15:07 ` Rob Herring 2018-03-30 9:50 ` Jonathan Cameron 2018-03-30 11:05 ` Martin Blumenstingl 1 sibling, 1 reply; 13+ messages in thread From: Rob Herring @ 2018-03-27 15:07 UTC (permalink / raw) To: Yixun Lan Cc: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler, Xingyu Chen, Martin Blumenstingl, Heiner Kallweit, Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione, linux-iio, linux-amlogic, linux-arm-kernel, linux-kernel, devicetree On Mon, Mar 26, 2018 at 04:46:28PM +0800, Yixun Lan wrote: > From: Xingyu Chen <xingyu.chen@amlogic.com> > > Update the documentation to expicitly support the Meson-AXG SoC. > > Signed-off-by: Xingyu Chen <xingyu.chen@amlogic.com> > --- > Documentation/devicetree/bindings/iio/adc/amlogic,meson-saradc.txt | 1 + > 1 file changed, 1 insertion(+) Reviewed-by: Rob Herring <robh@kernel.org> ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 2/3] dt-bindings: iio: adc: document the Meson AXG support 2018-03-27 15:07 ` Rob Herring @ 2018-03-30 9:50 ` Jonathan Cameron 0 siblings, 0 replies; 13+ messages in thread From: Jonathan Cameron @ 2018-03-30 9:50 UTC (permalink / raw) To: Rob Herring Cc: Yixun Lan, Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler, Xingyu Chen, Martin Blumenstingl, Heiner Kallweit, Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione, linux-iio, linux-amlogic, linux-arm-kernel, linux-kernel, devicetree On Tue, 27 Mar 2018 10:07:30 -0500 Rob Herring <robh@kernel.org> wrote: > On Mon, Mar 26, 2018 at 04:46:28PM +0800, Yixun Lan wrote: > > From: Xingyu Chen <xingyu.chen@amlogic.com> > > > > Update the documentation to expicitly support the Meson-AXG SoC. > > > > Signed-off-by: Xingyu Chen <xingyu.chen@amlogic.com> > > --- > > Documentation/devicetree/bindings/iio/adc/amlogic,meson-saradc.txt | 1 + > > 1 file changed, 1 insertion(+) > > Reviewed-by: Rob Herring <robh@kernel.org> Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to ignore it ;) Thanks, Jonathan ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 2/3] dt-bindings: iio: adc: document the Meson AXG support 2018-03-26 8:46 ` [PATCH 2/3] dt-bindings: iio: adc: document the Meson AXG support Yixun Lan 2018-03-27 15:07 ` Rob Herring @ 2018-03-30 11:05 ` Martin Blumenstingl 1 sibling, 0 replies; 13+ messages in thread From: Martin Blumenstingl @ 2018-03-30 11:05 UTC (permalink / raw) To: Yixun Lan Cc: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler, Xingyu Chen, Heiner Kallweit, Rob Herring, Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione, linux-iio, linux-amlogic, linux-arm-kernel, linux-kernel, devicetree On Mon, Mar 26, 2018 at 10:46 AM, Yixun Lan <yixun.lan@amlogic.com> wrote: > From: Xingyu Chen <xingyu.chen@amlogic.com> > > Update the documentation to expicitly support the Meson-AXG SoC. > > Signed-off-by: Xingyu Chen <xingyu.chen@amlogic.com> Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> > --- > Documentation/devicetree/bindings/iio/adc/amlogic,meson-saradc.txt | 1 + > 1 file changed, 1 insertion(+) > > diff --git a/Documentation/devicetree/bindings/iio/adc/amlogic,meson-saradc.txt b/Documentation/devicetree/bindings/iio/adc/amlogic,meson-saradc.txt > index 1e6ee3deb4fa..d1acd5ea2737 100644 > --- a/Documentation/devicetree/bindings/iio/adc/amlogic,meson-saradc.txt > +++ b/Documentation/devicetree/bindings/iio/adc/amlogic,meson-saradc.txt > @@ -7,6 +7,7 @@ Required properties: > - "amlogic,meson-gxbb-saradc" for GXBB > - "amlogic,meson-gxl-saradc" for GXL > - "amlogic,meson-gxm-saradc" for GXM > + - "amlogic,meson-axg-saradc" for AXG > along with the generic "amlogic,meson-saradc" > - reg: the physical base address and length of the registers > - interrupts: the interrupt indicating end of sampling > -- > 2.15.1 > ^ permalink raw reply [flat|nested] 13+ messages in thread
* [PATCH 3/3] iio: adc: meson-axg: add saradc driver 2018-03-26 8:46 [PATCH 0/3] iio: adc: meson-axg: add saradc driver support Yixun Lan 2018-03-26 8:46 ` [PATCH 1/3] iio: adc: meson-saradc: squash and share the common adc platform data Yixun Lan 2018-03-26 8:46 ` [PATCH 2/3] dt-bindings: iio: adc: document the Meson AXG support Yixun Lan @ 2018-03-26 8:46 ` Yixun Lan 2018-03-30 9:50 ` Jonathan Cameron 2018-03-30 11:09 ` Martin Blumenstingl 2 siblings, 2 replies; 13+ messages in thread From: Yixun Lan @ 2018-03-26 8:46 UTC (permalink / raw) To: Jonathan Cameron, Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler Cc: Xingyu Chen, Martin Blumenstingl, Heiner Kallweit, Rob Herring, Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione, Yixun Lan, linux-iio, linux-amlogic, linux-arm-kernel, linux-kernel From: Xingyu Chen <xingyu.chen@amlogic.com> Add the SAR ADC driver for the Amlogic Meson-AXG SoC. Signed-off-by: Xingyu Chen <xingyu.chen@amlogic.com> --- drivers/iio/adc/meson_saradc.c | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/drivers/iio/adc/meson_saradc.c b/drivers/iio/adc/meson_saradc.c index 799ed929ab99..a5d481a2b4ef 100644 --- a/drivers/iio/adc/meson_saradc.c +++ b/drivers/iio/adc/meson_saradc.c @@ -935,6 +935,11 @@ static const struct meson_sar_adc_data meson_sar_adc_gxm_data = { .name = "meson-gxm-saradc", }; +static const struct meson_sar_adc_data meson_sar_adc_axg_data = { + .param = &meson_sar_adc_gxl_param, + .name = "meson-axg-saradc", +}; + static const struct of_device_id meson_sar_adc_of_match[] = { { .compatible = "amlogic,meson8-saradc", @@ -953,6 +958,9 @@ static const struct of_device_id meson_sar_adc_of_match[] = { }, { .compatible = "amlogic,meson-gxm-saradc", .data = &meson_sar_adc_gxm_data, + }, { + .compatible = "amlogic,meson-axg-saradc", + .data = &meson_sar_adc_axg_data, }, {}, }; -- 2.15.1 ^ permalink raw reply related [flat|nested] 13+ messages in thread
* Re: [PATCH 3/3] iio: adc: meson-axg: add saradc driver 2018-03-26 8:46 ` [PATCH 3/3] iio: adc: meson-axg: add saradc driver Yixun Lan @ 2018-03-30 9:50 ` Jonathan Cameron 2018-03-30 11:09 ` Martin Blumenstingl 1 sibling, 0 replies; 13+ messages in thread From: Jonathan Cameron @ 2018-03-30 9:50 UTC (permalink / raw) To: Yixun Lan Cc: Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler, Xingyu Chen, Martin Blumenstingl, Heiner Kallweit, Rob Herring, Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione, linux-iio, linux-amlogic, linux-arm-kernel, linux-kernel On Mon, 26 Mar 2018 16:46:29 +0800 Yixun Lan <yixun.lan@amlogic.com> wrote: > From: Xingyu Chen <xingyu.chen@amlogic.com> > > Add the SAR ADC driver for the Amlogic Meson-AXG SoC. > > Signed-off-by: Xingyu Chen <xingyu.chen@amlogic.com> Applied to the togreg branch of iio.git and pushed out as testing for the autobuilders to play with it. Thanks, Jonathan > --- > drivers/iio/adc/meson_saradc.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/drivers/iio/adc/meson_saradc.c b/drivers/iio/adc/meson_saradc.c > index 799ed929ab99..a5d481a2b4ef 100644 > --- a/drivers/iio/adc/meson_saradc.c > +++ b/drivers/iio/adc/meson_saradc.c > @@ -935,6 +935,11 @@ static const struct meson_sar_adc_data meson_sar_adc_gxm_data = { > .name = "meson-gxm-saradc", > }; > > +static const struct meson_sar_adc_data meson_sar_adc_axg_data = { > + .param = &meson_sar_adc_gxl_param, > + .name = "meson-axg-saradc", > +}; > + > static const struct of_device_id meson_sar_adc_of_match[] = { > { > .compatible = "amlogic,meson8-saradc", > @@ -953,6 +958,9 @@ static const struct of_device_id meson_sar_adc_of_match[] = { > }, { > .compatible = "amlogic,meson-gxm-saradc", > .data = &meson_sar_adc_gxm_data, > + }, { > + .compatible = "amlogic,meson-axg-saradc", > + .data = &meson_sar_adc_axg_data, > }, > {}, > }; ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 3/3] iio: adc: meson-axg: add saradc driver 2018-03-26 8:46 ` [PATCH 3/3] iio: adc: meson-axg: add saradc driver Yixun Lan 2018-03-30 9:50 ` Jonathan Cameron @ 2018-03-30 11:09 ` Martin Blumenstingl 2018-03-30 12:51 ` Jonathan Cameron 1 sibling, 1 reply; 13+ messages in thread From: Martin Blumenstingl @ 2018-03-30 11:09 UTC (permalink / raw) To: Yixun Lan, Jonathan Cameron Cc: Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler, Xingyu Chen, Heiner Kallweit, Rob Herring, Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione, linux-iio, linux-amlogic, linux-arm-kernel, linux-kernel On Mon, Mar 26, 2018 at 10:46 AM, Yixun Lan <yixun.lan@amlogic.com> wrote: > From: Xingyu Chen <xingyu.chen@amlogic.com> > > Add the SAR ADC driver for the Amlogic Meson-AXG SoC. > > Signed-off-by: Xingyu Chen <xingyu.chen@amlogic.com> I suggest changing the subject of this patch to: iio: adc: meson-saradc: add support for Meson AXG (because "iio: adc: meson-axg" does not point to the "meson-saradc" driver and no new driver is added with this patch) with that: Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> > --- > drivers/iio/adc/meson_saradc.c | 8 ++++++++ > 1 file changed, 8 insertions(+) > > diff --git a/drivers/iio/adc/meson_saradc.c b/drivers/iio/adc/meson_saradc.c > index 799ed929ab99..a5d481a2b4ef 100644 > --- a/drivers/iio/adc/meson_saradc.c > +++ b/drivers/iio/adc/meson_saradc.c > @@ -935,6 +935,11 @@ static const struct meson_sar_adc_data meson_sar_adc_gxm_data = { > .name = "meson-gxm-saradc", > }; > > +static const struct meson_sar_adc_data meson_sar_adc_axg_data = { > + .param = &meson_sar_adc_gxl_param, > + .name = "meson-axg-saradc", > +}; > + > static const struct of_device_id meson_sar_adc_of_match[] = { > { > .compatible = "amlogic,meson8-saradc", > @@ -953,6 +958,9 @@ static const struct of_device_id meson_sar_adc_of_match[] = { > }, { > .compatible = "amlogic,meson-gxm-saradc", > .data = &meson_sar_adc_gxm_data, > + }, { > + .compatible = "amlogic,meson-axg-saradc", > + .data = &meson_sar_adc_axg_data, > }, > {}, > }; > -- > 2.15.1 > ^ permalink raw reply [flat|nested] 13+ messages in thread
* Re: [PATCH 3/3] iio: adc: meson-axg: add saradc driver 2018-03-30 11:09 ` Martin Blumenstingl @ 2018-03-30 12:51 ` Jonathan Cameron 0 siblings, 0 replies; 13+ messages in thread From: Jonathan Cameron @ 2018-03-30 12:51 UTC (permalink / raw) To: Martin Blumenstingl Cc: Yixun Lan, Hartmut Knaack, Lars-Peter Clausen, Peter Meerwald-Stadler, Xingyu Chen, Heiner Kallweit, Rob Herring, Neil Armstrong, Jerome Brunet, Kevin Hilman, Carlo Caione, linux-iio, linux-amlogic, linux-arm-kernel, linux-kernel On Fri, 30 Mar 2018 13:09:31 +0200 Martin Blumenstingl <martin.blumenstingl@googlemail.com> wrote: > On Mon, Mar 26, 2018 at 10:46 AM, Yixun Lan <yixun.lan@amlogic.com> wrote: > > From: Xingyu Chen <xingyu.chen@amlogic.com> > > > > Add the SAR ADC driver for the Amlogic Meson-AXG SoC. > > > > Signed-off-by: Xingyu Chen <xingyu.chen@amlogic.com> > I suggest changing the subject of this patch to: > iio: adc: meson-saradc: add support for Meson AXG > Good point - updated. > (because "iio: adc: meson-axg" does not point to the "meson-saradc" > driver and no new driver is added with this patch) > > with that: > Acked-by: Martin Blumenstingl <martin.blumenstingl@googlemail.com> Thanks, acks added to all 3 patches. Jonathan > > > --- > > drivers/iio/adc/meson_saradc.c | 8 ++++++++ > > 1 file changed, 8 insertions(+) > > > > diff --git a/drivers/iio/adc/meson_saradc.c b/drivers/iio/adc/meson_saradc.c > > index 799ed929ab99..a5d481a2b4ef 100644 > > --- a/drivers/iio/adc/meson_saradc.c > > +++ b/drivers/iio/adc/meson_saradc.c > > @@ -935,6 +935,11 @@ static const struct meson_sar_adc_data meson_sar_adc_gxm_data = { > > .name = "meson-gxm-saradc", > > }; > > > > +static const struct meson_sar_adc_data meson_sar_adc_axg_data = { > > + .param = &meson_sar_adc_gxl_param, > > + .name = "meson-axg-saradc", > > +}; > > + > > static const struct of_device_id meson_sar_adc_of_match[] = { > > { > > .compatible = "amlogic,meson8-saradc", > > @@ -953,6 +958,9 @@ static const struct of_device_id meson_sar_adc_of_match[] = { > > }, { > > .compatible = "amlogic,meson-gxm-saradc", > > .data = &meson_sar_adc_gxm_data, > > + }, { > > + .compatible = "amlogic,meson-axg-saradc", > > + .data = &meson_sar_adc_axg_data, > > }, > > {}, > > }; > > -- > > 2.15.1 > > ^ permalink raw reply [flat|nested] 13+ messages in thread
end of thread, other threads:[~2018-03-30 12:51 UTC | newest] Thread overview: 13+ messages (download: mbox.gz follow: Atom feed -- links below jump to the message on this page -- 2018-03-26 8:46 [PATCH 0/3] iio: adc: meson-axg: add saradc driver support Yixun Lan 2018-03-26 8:46 ` [PATCH 1/3] iio: adc: meson-saradc: squash and share the common adc platform data Yixun Lan 2018-03-30 9:48 ` Jonathan Cameron 2018-03-30 10:37 ` Yixun Lan 2018-03-30 11:06 ` Martin Blumenstingl 2018-03-26 8:46 ` [PATCH 2/3] dt-bindings: iio: adc: document the Meson AXG support Yixun Lan 2018-03-27 15:07 ` Rob Herring 2018-03-30 9:50 ` Jonathan Cameron 2018-03-30 11:05 ` Martin Blumenstingl 2018-03-26 8:46 ` [PATCH 3/3] iio: adc: meson-axg: add saradc driver Yixun Lan 2018-03-30 9:50 ` Jonathan Cameron 2018-03-30 11:09 ` Martin Blumenstingl 2018-03-30 12:51 ` Jonathan Cameron
This is a public inbox, see mirroring instructions for how to clone and mirror all data and code used for this inbox; as well as URLs for NNTP newsgroup(s).