u-boot.lists.denx.de archive mirror
 help / color / mirror / Atom feed
* [PATCH 00/20] i.MX8ULP misc update
@ 2021-10-29  1:46 Peng Fan (OSS)
  2021-10-29  1:46 ` [PATCH 01/20] imx8ulp: soc: Check the DBD_EN fuse before setting RDC Peng Fan (OSS)
                   ` (18 more replies)
  0 siblings, 19 replies; 39+ messages in thread
From: Peng Fan (OSS) @ 2021-10-29  1:46 UTC (permalink / raw)
  To: sbabic, festevam; +Cc: u-boot, Peng Fan

From: Peng Fan <peng.fan@nxp.com>

This is to upstream NXP downstream i.MX8ULP patches including
ADC/DRAM/LPAV/FUSE/ENET update/fix

Alice Guo (3):
  imx8ulp: clock: Support to enable/disable the ADC1 clock
  imx8ulp: measure die temperature using PMC Temperature Sensor
  imx8ulp: implement to obtain the SoC current temperature

Jacky Bai (1):
  imx8ulp:ddr: saving the dram config timing data into sram

Peng Fan (1):
  imx8ulp: assign PXP/HIFI4/EPDC to APD domain

Ye Li (15):
  imx8ulp: soc: Check the DBD_EN fuse before setting RDC
  arm: imx8ulp: Allocate LPAV resources to AP domain
  imx8ulp: clock: Support LPAV clocks in cgc and pcc
  imx8ulp: clock: Add MIPI DSI clock and DCNano clock
  imx8ulp: rdc: allow A35 access flexspi0 mem
  imx8ulp_evk: Control LPI2C0 PCA6416 and TPM0 for display
  imx8ulp: Set DCNANO read QoS on NIC_LPAV to highest
  imx8ulp: Fix DCNANO QoS setting
  imx8ulp: Remove freescale name from CPU revision
  imx8ulp: Workaround LPOSC_TRIM fuse load issue
  imx8ulp: clock: Reset DDR controller before clock enable
  imx8ulp: clock: Support to reset DCNano and MIPI DSI
  imx8ulp: Update ethernet mac to get from fuse
  imx8ulp: clock: Handle the DDRLOCKED when setting DDR clock
  imx8ulp: ddr: Fix DDR frequency request issue

 arch/arm/include/asm/arch-imx8ulp/cgc.h       |  37 +-
 arch/arm/include/asm/arch-imx8ulp/clock.h     |   4 +
 arch/arm/include/asm/arch-imx8ulp/imx-regs.h  |  63 +++-
 .../include/asm/arch-imx8ulp/imx8ulp-pins.h   |   4 +
 arch/arm/include/asm/arch-imx8ulp/pcc.h       |  70 +++-
 arch/arm/include/asm/arch-imx8ulp/sys_proto.h |   2 +
 arch/arm/mach-imx/imx8ulp/cgc.c               | 325 +++++++++++++++---
 arch/arm/mach-imx/imx8ulp/clock.c             | 156 ++++++++-
 arch/arm/mach-imx/imx8ulp/pcc.c               | 158 ++++++++-
 arch/arm/mach-imx/imx8ulp/soc.c               | 117 ++++++-
 board/freescale/imx8ulp_evk/imx8ulp_evk.c     |  56 +++
 board/freescale/imx8ulp_evk/spl.c             |   9 +
 drivers/ddr/imx/imx8ulp/Kconfig               |   7 +
 drivers/ddr/imx/imx8ulp/ddr_init.c            |  55 ++-
 drivers/thermal/Kconfig                       |   7 +
 drivers/thermal/Makefile                      |   1 +
 drivers/thermal/imx_pmc_temperature.c         | 174 ++++++++++
 17 files changed, 1148 insertions(+), 97 deletions(-)
 create mode 100644 drivers/thermal/imx_pmc_temperature.c

-- 
2.30.0


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

end of thread, other threads:[~2022-02-05 16:53 UTC | newest]

Thread overview: 39+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-10-29  1:46 [PATCH 00/20] i.MX8ULP misc update Peng Fan (OSS)
2021-10-29  1:46 ` [PATCH 01/20] imx8ulp: soc: Check the DBD_EN fuse before setting RDC Peng Fan (OSS)
2022-02-05 16:42   ` sbabic
2021-10-29  1:46 ` [PATCH 02/20] arm: imx8ulp: Allocate LPAV resources to AP domain Peng Fan (OSS)
2022-02-05 16:39   ` sbabic
2021-10-29  1:46 ` [PATCH 03/20] imx8ulp: assign PXP/HIFI4/EPDC to APD domain Peng Fan (OSS)
2022-02-05 16:43   ` sbabic
2021-10-29  1:46 ` [PATCH 04/20] imx8ulp: clock: Support LPAV clocks in cgc and pcc Peng Fan (OSS)
2022-02-05 16:39   ` sbabic
2021-10-29  1:46 ` [PATCH 05/20] imx8ulp: clock: Add MIPI DSI clock and DCNano clock Peng Fan (OSS)
2022-02-05 16:44   ` sbabic
2021-10-29  1:46 ` [PATCH 06/20] imx8ulp: rdc: allow A35 access flexspi0 mem Peng Fan (OSS)
2022-02-05 16:43   ` sbabic
2021-10-29  1:46 ` [PATCH 07/20] imx8ulp_evk: Control LPI2C0 PCA6416 and TPM0 for display Peng Fan (OSS)
2022-02-05 16:43   ` sbabic
2021-10-29  1:46 ` [PATCH 08/20] imx8ulp: Set DCNANO read QoS on NIC_LPAV to highest Peng Fan (OSS)
2022-02-05 16:39   ` sbabic
2021-10-29  1:46 ` [PATCH 09/20] imx8ulp: Fix DCNANO QoS setting Peng Fan (OSS)
2022-02-05 16:42   ` sbabic
2021-10-29  1:46 ` [PATCH 10/20] imx8ulp: Remove freescale name from CPU revision Peng Fan (OSS)
2022-02-05 16:41   ` sbabic
2021-10-29  1:46 ` [PATCH 11/20] imx8ulp: Workaround LPOSC_TRIM fuse load issue Peng Fan (OSS)
2022-02-05 16:40   ` sbabic
2021-10-29  1:46 ` [PATCH 12/20] imx8ulp: clock: Reset DDR controller before clock enable Peng Fan (OSS)
2022-02-05 16:41   ` sbabic
2021-10-29  1:46 ` [PATCH 13/20] imx8ulp: clock: Support to reset DCNano and MIPI DSI Peng Fan (OSS)
2022-02-05 16:41   ` sbabic
2021-10-29  1:46 ` [PATCH 14/20] imx8ulp: Update ethernet mac to get from fuse Peng Fan (OSS)
2022-02-05 16:40   ` sbabic
2021-10-29  1:46 ` [PATCH 15/20] imx8ulp: clock: Support to enable/disable the ADC1 clock Peng Fan (OSS)
2022-02-05 16:43   ` sbabic
2021-10-29  1:46 ` [PATCH 16/20] imx8ulp: clock: Handle the DDRLOCKED when setting DDR clock Peng Fan (OSS)
2022-02-05 16:43   ` sbabic
2021-10-29  1:46 ` [PATCH 18/20] imx8ulp: implement to obtain the SoC current temperature Peng Fan (OSS)
2022-02-05 16:42   ` sbabic
2021-10-29  1:46 ` [PATCH 19/20] imx8ulp:ddr: saving the dram config timing data into sram Peng Fan (OSS)
2022-02-05 16:40   ` sbabic
2021-10-29  1:46 ` [PATCH 20/20] imx8ulp: ddr: Fix DDR frequency request issue Peng Fan (OSS)
2022-02-05 16:40   ` sbabic

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).