public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH] pmic: pca9450: Add PCA9450C compatible string
@ 2022-02-26  3:37 ` Marek Vasut
  2022-02-26 12:55   ` Fabio Estevam
                     ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Marek Vasut @ 2022-02-26  3:37 UTC (permalink / raw)
  To: u-boot; +Cc: Marek Vasut, Fabio Estevam, Peng Fan, Stefano Babic

Add DT compatible string for PCA9450C PMIC. This is a variant of the
PCA9450 PMIC with 6 A dual-phase buck regulator and 3 A buck regulator,
and is software-wise compatible with the PCA9450B. This variant of the
PCA9450 is designed for use as companion PMIC for i.MX8MP.

Signed-off-by: Marek Vasut <marex@denx.de>
Cc: Fabio Estevam <festevam@denx.de>
Cc: Peng Fan <peng.fan@nxp.com>
Cc: Stefano Babic <sbabic@denx.de>
---
 drivers/power/pmic/pca9450.c | 1 +
 1 file changed, 1 insertion(+)

diff --git a/drivers/power/pmic/pca9450.c b/drivers/power/pmic/pca9450.c
index a886647f193..2394b196c56 100644
--- a/drivers/power/pmic/pca9450.c
+++ b/drivers/power/pmic/pca9450.c
@@ -83,6 +83,7 @@ static struct dm_pmic_ops pca9450_ops = {
 static const struct udevice_id pca9450_ids[] = {
 	{ .compatible = "nxp,pca9450a", .data = 0x25, },
 	{ .compatible = "nxp,pca9450b", .data = 0x25, },
+	{ .compatible = "nxp,pca9450c", .data = 0x25, },
 	{ }
 };
 
-- 
2.34.1


^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] pmic: pca9450: Add PCA9450C compatible string
  2022-02-26  3:37 ` [PATCH] pmic: pca9450: Add PCA9450C compatible string Marek Vasut
@ 2022-02-26 12:55   ` Fabio Estevam
  2022-03-06 23:14   ` Jaehoon Chung
  2022-04-12 18:42   ` sbabic
  2 siblings, 0 replies; 4+ messages in thread
From: Fabio Estevam @ 2022-02-26 12:55 UTC (permalink / raw)
  To: Marek Vasut; +Cc: u-boot, Peng Fan, Stefano Babic

On 26/02/2022 00:37, Marek Vasut wrote:
> Add DT compatible string for PCA9450C PMIC. This is a variant of the
> PCA9450 PMIC with 6 A dual-phase buck regulator and 3 A buck regulator,
> and is software-wise compatible with the PCA9450B. This variant of the
> PCA9450 is designed for use as companion PMIC for i.MX8MP.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Fabio Estevam <festevam@denx.de>
> Cc: Peng Fan <peng.fan@nxp.com>
> Cc: Stefano Babic <sbabic@denx.de>

Reviewed-by: Fabio Estevam <festevam@denx.de>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] pmic: pca9450: Add PCA9450C compatible string
  2022-02-26  3:37 ` [PATCH] pmic: pca9450: Add PCA9450C compatible string Marek Vasut
  2022-02-26 12:55   ` Fabio Estevam
@ 2022-03-06 23:14   ` Jaehoon Chung
  2022-04-12 18:42   ` sbabic
  2 siblings, 0 replies; 4+ messages in thread
From: Jaehoon Chung @ 2022-03-06 23:14 UTC (permalink / raw)
  To: Marek Vasut, u-boot; +Cc: Fabio Estevam, Peng Fan, Stefano Babic

On 2/26/22 12:37, Marek Vasut wrote:
> Add DT compatible string for PCA9450C PMIC. This is a variant of the
> PCA9450 PMIC with 6 A dual-phase buck regulator and 3 A buck regulator,
> and is software-wise compatible with the PCA9450B. This variant of the
> PCA9450 is designed for use as companion PMIC for i.MX8MP.
> 
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Fabio Estevam <festevam@denx.de>
> Cc: Peng Fan <peng.fan@nxp.com>
> Cc: Stefano Babic <sbabic@denx.de>

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

Best Regards,
Jaehoon Chung

> ---
>  drivers/power/pmic/pca9450.c | 1 +
>  1 file changed, 1 insertion(+)
> 
> diff --git a/drivers/power/pmic/pca9450.c b/drivers/power/pmic/pca9450.c
> index a886647f193..2394b196c56 100644
> --- a/drivers/power/pmic/pca9450.c
> +++ b/drivers/power/pmic/pca9450.c
> @@ -83,6 +83,7 @@ static struct dm_pmic_ops pca9450_ops = {
>  static const struct udevice_id pca9450_ids[] = {
>  	{ .compatible = "nxp,pca9450a", .data = 0x25, },
>  	{ .compatible = "nxp,pca9450b", .data = 0x25, },
> +	{ .compatible = "nxp,pca9450c", .data = 0x25, },
>  	{ }
>  };
>  


^ permalink raw reply	[flat|nested] 4+ messages in thread

* [PATCH] pmic: pca9450: Add PCA9450C compatible string
  2022-02-26  3:37 ` [PATCH] pmic: pca9450: Add PCA9450C compatible string Marek Vasut
  2022-02-26 12:55   ` Fabio Estevam
  2022-03-06 23:14   ` Jaehoon Chung
@ 2022-04-12 18:42   ` sbabic
  2 siblings, 0 replies; 4+ messages in thread
From: sbabic @ 2022-04-12 18:42 UTC (permalink / raw)
  To: Marek Vasut, u-boot

> Add DT compatible string for PCA9450C PMIC. This is a variant of the
> PCA9450 PMIC with 6 A dual-phase buck regulator and 3 A buck regulator,
> and is software-wise compatible with the PCA9450B. This variant of the
> PCA9450 is designed for use as companion PMIC for i.MX8MP.
> Signed-off-by: Marek Vasut <marex@denx.de>
> Cc: Fabio Estevam <festevam@denx.de>
> Cc: Peng Fan <peng.fan@nxp.com>
> Cc: Stefano Babic <sbabic@denx.de>
> Reviewed-by: Fabio Estevam <festevam@denx.de>
> Reviewed-by: Jaehoon Chung <jh80.chung@samsung.com>
Applied to u-boot-imx, master, thanks !

Best regards,
Stefano Babic

-- 
=====================================================================
DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic@denx.de
=====================================================================

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2022-04-12 18:45 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
     [not found] <CGME20220226033729epcas1p3f843a804d53598329810ae39030fc80f@epcas1p3.samsung.com>
2022-02-26  3:37 ` [PATCH] pmic: pca9450: Add PCA9450C compatible string Marek Vasut
2022-02-26 12:55   ` Fabio Estevam
2022-03-06 23:14   ` Jaehoon Chung
2022-04-12 18:42   ` sbabic

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox