All of lore.kernel.org
 help / color / mirror / Atom feed
From: Jaehoon Chung <jh80.chung@samsung.com>
To: u-boot@lists.denx.de
Subject: [PATCH 2/6] adc: meson-saradc: add G12A variant
Date: Tue, 15 Dec 2020 06:50:12 +0900	[thread overview]
Message-ID: <3342a152-e6ad-5e2f-bc98-9fdc2155cd2f@samsung.com> (raw)
In-Reply-To: <cf38019c-b65a-ead2-cfd1-f58a2cd0f97f@baylibre.com>

On 12/15/20 3:54 AM, Neil Armstrong wrote:
> On 14/12/2020 12:24, Marek Szyprowski wrote:
>> Add support for the SARADC variant found on the G12A SoCs family.
>>
>> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
>> Change-Id: If519d333e9773d089f37a8c7b4ccb144be68925b
> 
> Ditto
> 
>> ---
>>  drivers/adc/meson-saradc.c | 2 ++
>>  1 file changed, 2 insertions(+)
>>
>> diff --git a/drivers/adc/meson-saradc.c b/drivers/adc/meson-saradc.c
>> index 72b0cc4e5bd..998cef24d88 100644
>> --- a/drivers/adc/meson-saradc.c
>> +++ b/drivers/adc/meson-saradc.c
>> @@ -711,6 +711,8 @@ static const struct udevice_id meson_saradc_ids[] = {
>>  	  .data = (ulong)&gxl_saradc_data },
>>  	{ .compatible = "amlogic,meson-gxm-saradc",
>>  	  .data = (ulong)&gxl_saradc_data },
>> +	{ .compatible = "amlogic,meson-g12a-saradc",
>> +	  .data = (ulong)&gxl_saradc_data },
>>  	{ }
>>  };
>>  
>>
> 
> 
> Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>

Tested-by: Jaehoon Chung <jh80.chung@samsung.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>

> 

WARNING: multiple messages have this Message-ID (diff)
From: Jaehoon Chung <jh80.chung@samsung.com>
To: Neil Armstrong <narmstrong@baylibre.com>,
	Marek Szyprowski <m.szyprowski@samsung.com>,
	u-boot@lists.denx.de, u-boot-amlogic@groups.io
Cc: Lukasz Majewski <lukma@denx.de>,
	Philippe Reynes <philippe.reynes@softathome.com>,
	Simon Glass <sjg@chromium.org>,
	Heinrich Schuchardt <xypron.glpk@gmx.de>,
	Bartlomiej Zolnierkiewicz <b.zolnierkie@samsung.com>
Subject: Re: [PATCH 2/6] adc: meson-saradc: add G12A variant
Date: Tue, 15 Dec 2020 06:50:12 +0900	[thread overview]
Message-ID: <3342a152-e6ad-5e2f-bc98-9fdc2155cd2f@samsung.com> (raw)
In-Reply-To: <cf38019c-b65a-ead2-cfd1-f58a2cd0f97f@baylibre.com>

On 12/15/20 3:54 AM, Neil Armstrong wrote:
> On 14/12/2020 12:24, Marek Szyprowski wrote:
>> Add support for the SARADC variant found on the G12A SoCs family.
>>
>> Signed-off-by: Marek Szyprowski <m.szyprowski@samsung.com>
>> Change-Id: If519d333e9773d089f37a8c7b4ccb144be68925b
> 
> Ditto
> 
>> ---
>>  drivers/adc/meson-saradc.c | 2 ++
>>  1 file changed, 2 insertions(+)
>>
>> diff --git a/drivers/adc/meson-saradc.c b/drivers/adc/meson-saradc.c
>> index 72b0cc4e5bd..998cef24d88 100644
>> --- a/drivers/adc/meson-saradc.c
>> +++ b/drivers/adc/meson-saradc.c
>> @@ -711,6 +711,8 @@ static const struct udevice_id meson_saradc_ids[] = {
>>  	  .data = (ulong)&gxl_saradc_data },
>>  	{ .compatible = "amlogic,meson-gxm-saradc",
>>  	  .data = (ulong)&gxl_saradc_data },
>> +	{ .compatible = "amlogic,meson-g12a-saradc",
>> +	  .data = (ulong)&gxl_saradc_data },
>>  	{ }
>>  };
>>  
>>
> 
> 
> Reviewed-by: Neil Armstrong <narmstrong@baylibre.com>

Tested-by: Jaehoon Chung <jh80.chung@samsung.com>
Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>

> 


  reply	other threads:[~2020-12-14 21:50 UTC|newest]

Thread overview: 40+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
     [not found] <CGME20201214112449eucas1p28f3ade12253fb8b60c1396c706a65220@eucas1p2.samsung.com>
2020-12-14 11:24 ` [PATCH 0/6] VIM3: add support for checking 'Function' button state Marek Szyprowski
2020-12-14 11:24   ` Marek Szyprowski
     [not found]   ` <CGME20201214112449eucas1p2ce0ef939e0d7f468e64be3555f29ea04@eucas1p2.samsung.com>
2020-12-14 11:24     ` [PATCH 1/6] clk: meson: add minimal driver for g12a-ao clocks Marek Szyprowski
2020-12-14 11:24       ` Marek Szyprowski
2020-12-14 18:53       ` Neil Armstrong
2020-12-14 18:53         ` Neil Armstrong
2020-12-14 21:50         ` Jaehoon Chung
2020-12-14 21:50           ` Jaehoon Chung
     [not found]   ` <CGME20201214112449eucas1p1ebcf51e2b91ed2bac7fc4d309a174499@eucas1p1.samsung.com>
2020-12-14 11:24     ` [PATCH 2/6] adc: meson-saradc: add G12A variant Marek Szyprowski
2020-12-14 11:24       ` Marek Szyprowski
2020-12-14 18:54       ` Neil Armstrong
2020-12-14 18:54         ` Neil Armstrong
2020-12-14 21:50         ` Jaehoon Chung [this message]
2020-12-14 21:50           ` Jaehoon Chung
     [not found]   ` <CGME20201214112450eucas1p1e7ad389bceaaf1082c9afdcb0733e9c0@eucas1p1.samsung.com>
2020-12-14 11:24     ` [PATCH 3/6] adc: meson-saradc: skip hardware init only if ADC is enabled Marek Szyprowski
2020-12-14 11:24       ` Marek Szyprowski
2020-12-14 18:54       ` Neil Armstrong
2020-12-14 18:54         ` Neil Armstrong
2020-12-14 21:50         ` Jaehoon Chung
2020-12-14 21:50           ` Jaehoon Chung
     [not found]   ` <CGME20201214112450eucas1p18b98479811b98d883196c72b0f6deebd@eucas1p1.samsung.com>
2020-12-14 11:24     ` [PATCH 4/6] button: add a simple ADC-based button driver Marek Szyprowski
2020-12-14 11:24       ` Marek Szyprowski
2020-12-19  2:28       ` Simon Glass
2020-12-19  2:28         ` Simon Glass
2020-12-21  9:33         ` Marek Szyprowski
2020-12-21  9:33           ` Marek Szyprowski
2020-12-21 16:46           ` Simon Glass
2020-12-21 16:46             ` Simon Glass
     [not found]   ` <CGME20201214112451eucas1p2ace7794301c6791761fd130c158f3d08@eucas1p2.samsung.com>
2020-12-14 11:24     ` [PATCH 5/6] cmd: button: store button state in the 'button' env Marek Szyprowski
2020-12-14 11:24       ` Marek Szyprowski
2020-12-19  2:28       ` Simon Glass
2020-12-19  2:28         ` Simon Glass
     [not found]   ` <CGME20201214112452eucas1p2ceb557dffa15ea073f922bf59afb8578@eucas1p2.samsung.com>
2020-12-14 11:24     ` [PATCH 6/6] configs: khadas-vim3: enable Function button support Marek Szyprowski
2020-12-14 11:24       ` Marek Szyprowski
2020-12-14 18:55       ` Neil Armstrong
2020-12-14 18:55         ` Neil Armstrong
2020-12-14 20:17         ` Marek Szyprowski
2020-12-14 20:17           ` Marek Szyprowski
2020-12-14 21:51         ` Jaehoon Chung
2020-12-14 21:51           ` Jaehoon Chung

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=3342a152-e6ad-5e2f-bc98-9fdc2155cd2f@samsung.com \
    --to=jh80.chung@samsung.com \
    --cc=u-boot@lists.denx.de \
    /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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.