public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [PATCH v5 0/2 RESEND]  imx93: add ADC support
@ 2023-07-05 12:56 Luca Ellero
  2023-07-05 12:56 ` [PATCH 1/2] dm: adc: add iMX93 " Luca Ellero
  2023-07-05 12:56 ` [PATCH 2/2] imx93_evk: defconfig: add adc support Luca Ellero
  0 siblings, 2 replies; 11+ messages in thread
From: Luca Ellero @ 2023-07-05 12:56 UTC (permalink / raw)
  To: u-boot, sbabic, festevam, uboot-imx, luca.ellero, ye.li, peng.fan,
	haibo.chen
  Cc: Luca Ellero

Add ADC support for NXP iMX93

Changes for v2:
- add "static" to functions
- enable ADC in iMX93 EVK

Changes for v3:
- split in 3 commits
- keep dts file in sync with Linux devicetree
- add comments to commits

Changes for v4:
- add imx93_adc_power_down() in imx93_adc_stop()

Changes for v5:
- simplify code
- remove redundant code
- add clock handling

Luca Ellero (2):
  dm: adc: add iMX93 ADC support
  imx93_evk: defconfig: add adc support

 configs/imx93_11x11_evk_defconfig |   1 +
 drivers/adc/Kconfig               |   8 +
 drivers/adc/Makefile              |   1 +
 drivers/adc/imx93-adc.c           | 290 ++++++++++++++++++++++++++++++
 4 files changed, 300 insertions(+)
 create mode 100644 drivers/adc/imx93-adc.c

-- 
2.25.1


^ permalink raw reply	[flat|nested] 11+ messages in thread
* [RESEND PATCH v5 0/2]  imx93: add ADC support
@ 2023-07-03 13:02 Luca Ellero
  2023-07-03 13:02 ` [PATCH 2/2] imx93_evk: defconfig: add adc support Luca Ellero
  0 siblings, 1 reply; 11+ messages in thread
From: Luca Ellero @ 2023-07-03 13:02 UTC (permalink / raw)
  To: u-boot, sbabic, festevam, uboot-imx, luca.ellero, ye.li, peng.fan,
	haibo.chen
  Cc: Luca Ellero

Add ADC support for NXP iMX93

Changes for v2:
- add "static" to functions
- enable ADC in iMX93 EVK

Changes for v3:
- split in 3 commits
- keep dts file in sync with Linux devicetree
- add comments to commits

Changes for v4:
- add imx93_adc_power_down() in imx93_adc_stop()

Changes for v5:
- simplify code
- remove redundant code
- add clock handling

Luca Ellero (2):
  dm: adc: add iMX93 ADC support
  imx93_evk: defconfig: add adc support

 configs/imx93_11x11_evk_defconfig |   1 +
 drivers/adc/Kconfig               |   8 +
 drivers/adc/Makefile              |   1 +
 drivers/adc/imx93-adc.c           | 290 ++++++++++++++++++++++++++++++
 4 files changed, 300 insertions(+)
 create mode 100644 drivers/adc/imx93-adc.c

-- 
2.25.1


^ permalink raw reply	[flat|nested] 11+ messages in thread
* [PATCH v5 0/2 RESEND]  imx93: add ADC support
@ 2023-06-21 14:00 Luca Ellero
  2023-06-21 14:00 ` [PATCH 2/2] imx93_evk: defconfig: add adc support Luca Ellero
  0 siblings, 1 reply; 11+ messages in thread
From: Luca Ellero @ 2023-06-21 14:00 UTC (permalink / raw)
  To: u-boot, sbabic, festevam, uboot-imx, luca.ellero, ye.li, peng.fan,
	haibo.chen
  Cc: Luca Ellero

Add ADC support for NXP iMX93

Changes for v2:
- add "static" to functions
- enable ADC in iMX93 EVK

Changes for v3:
- split in 3 commits
- keep dts file in sync with Linux devicetree
- add comments to commits

Changes for v4:
- add imx93_adc_power_down() in imx93_adc_stop()

Changes for v5:
- simplify code
- remove redundant code
- add clock handling

Luca Ellero (2):
  dm: adc: add iMX93 ADC support
  imx93_evk: defconfig: add adc support

 configs/imx93_11x11_evk_defconfig |   1 +
 drivers/adc/Kconfig               |   8 +
 drivers/adc/Makefile              |   1 +
 drivers/adc/imx93-adc.c           | 290 ++++++++++++++++++++++++++++++
 4 files changed, 300 insertions(+)
 create mode 100644 drivers/adc/imx93-adc.c

-- 
2.25.1


^ permalink raw reply	[flat|nested] 11+ messages in thread
* [PATCH v5 0/2 RESEND]  imx93: add ADC support
@ 2023-06-19 12:01 Luca Ellero
  2023-06-19 12:01 ` [PATCH 2/2] imx93_evk: defconfig: add adc support Luca Ellero
  0 siblings, 1 reply; 11+ messages in thread
From: Luca Ellero @ 2023-06-19 12:01 UTC (permalink / raw)
  To: u-boot, sbabic, festevam, uboot-imx, luca.ellero, ye.li, peng.fan,
	haibo.chen
  Cc: Luca Ellero

Add ADC support for NXP iMX93

Changes for v2:
- add "static" to functions
- enable ADC in iMX93 EVK

Changes for v3:
- split in 3 commits
- keep dts file in sync with Linux devicetree
- add comments to commits

Changes for v4:
- add imx93_adc_power_down() in imx93_adc_stop()

Changes for v5:
- simplify code
- remove redundant code
- add clock handling

Luca Ellero (2):
  dm: adc: add iMX93 ADC support
  imx93_evk: defconfig: add adc support

 configs/imx93_11x11_evk_defconfig |   1 +
 drivers/adc/Kconfig               |   8 +
 drivers/adc/Makefile              |   1 +
 drivers/adc/imx93-adc.c           | 290 ++++++++++++++++++++++++++++++
 4 files changed, 300 insertions(+)
 create mode 100644 drivers/adc/imx93-adc.c

-- 
2.25.1


^ permalink raw reply	[flat|nested] 11+ messages in thread
* [PATCH v5 0/2 RESEND]  imx93: add ADC support
@ 2023-06-13 14:32 Luca Ellero
  2023-06-13 14:32 ` [PATCH 2/2] imx93_evk: defconfig: add adc support Luca Ellero
  0 siblings, 1 reply; 11+ messages in thread
From: Luca Ellero @ 2023-06-13 14:32 UTC (permalink / raw)
  To: u-boot, sbabic, festevam, uboot-imx, luca.ellero, ye.li, peng.fan,
	haibo.chen
  Cc: Luca Ellero

Add ADC support for NXP iMX93

Changes for v2:
- add "static" to functions
- enable ADC in iMX93 EVK

Changes for v3:
- split in 3 commits
- keep dts file in sync with Linux devicetree
- add comments to commits

Changes for v4:
- add imx93_adc_power_down() in imx93_adc_stop()

Changes for v5:
- simplify code
- remove redundant code
- add clock handling

Luca Ellero (2):
  dm: adc: add iMX93 ADC support
  imx93_evk: defconfig: add adc support

 configs/imx93_11x11_evk_defconfig |   1 +
 drivers/adc/Kconfig               |   8 +
 drivers/adc/Makefile              |   1 +
 drivers/adc/imx93-adc.c           | 290 ++++++++++++++++++++++++++++++
 4 files changed, 300 insertions(+)
 create mode 100644 drivers/adc/imx93-adc.c

-- 
2.25.1


^ permalink raw reply	[flat|nested] 11+ messages in thread
* [PATCH v5 0/2 RESEND]  imx93: add ADC support
@ 2023-06-07  9:58 Luca Ellero
  2023-06-07  9:58 ` [PATCH 2/2] imx93_evk: defconfig: add adc support Luca Ellero
  0 siblings, 1 reply; 11+ messages in thread
From: Luca Ellero @ 2023-06-07  9:58 UTC (permalink / raw)
  To: u-boot, sbabic, festevam, uboot-imx, luca.ellero, ye.li, peng.fan,
	haibo.chen
  Cc: Luca Ellero

Add ADC support for NXP iMX93

Changes for v2:
- add "static" to functions
- enable ADC in iMX93 EVK

Changes for v3:
- split in 3 commits
- keep dts file in sync with Linux devicetree
- add comments to commits

Changes for v4:
- add imx93_adc_power_down() in imx93_adc_stop()

Changes for v5:
- simplify code
- remove redundant code
- add clock handling

Luca Ellero (2):
  dm: adc: add iMX93 ADC support
  imx93_evk: defconfig: add adc support

 configs/imx93_11x11_evk_defconfig |   1 +
 drivers/adc/Kconfig               |   8 +
 drivers/adc/Makefile              |   1 +
 drivers/adc/imx93-adc.c           | 290 ++++++++++++++++++++++++++++++
 4 files changed, 300 insertions(+)
 create mode 100644 drivers/adc/imx93-adc.c

-- 
2.25.1


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

end of thread, other threads:[~2023-07-11 19:57 UTC | newest]

Thread overview: 11+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2023-07-05 12:56 [PATCH v5 0/2 RESEND] imx93: add ADC support Luca Ellero
2023-07-05 12:56 ` [PATCH 1/2] dm: adc: add iMX93 " Luca Ellero
2023-07-06  2:09   ` Bough Chen
2023-07-11 19:47   ` sbabic
2023-07-05 12:56 ` [PATCH 2/2] imx93_evk: defconfig: add adc support Luca Ellero
2023-07-11 19:44   ` sbabic
  -- strict thread matches above, loose matches on Subject: below --
2023-07-03 13:02 [RESEND PATCH v5 0/2] imx93: add ADC support Luca Ellero
2023-07-03 13:02 ` [PATCH 2/2] imx93_evk: defconfig: add adc support Luca Ellero
2023-06-21 14:00 [PATCH v5 0/2 RESEND] imx93: add ADC support Luca Ellero
2023-06-21 14:00 ` [PATCH 2/2] imx93_evk: defconfig: add adc support Luca Ellero
2023-06-19 12:01 [PATCH v5 0/2 RESEND] imx93: add ADC support Luca Ellero
2023-06-19 12:01 ` [PATCH 2/2] imx93_evk: defconfig: add adc support Luca Ellero
2023-06-13 14:32 [PATCH v5 0/2 RESEND] imx93: add ADC support Luca Ellero
2023-06-13 14:32 ` [PATCH 2/2] imx93_evk: defconfig: add adc support Luca Ellero
2023-06-07  9:58 [PATCH v5 0/2 RESEND] imx93: add ADC support Luca Ellero
2023-06-07  9:58 ` [PATCH 2/2] imx93_evk: defconfig: add adc support Luca Ellero

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