All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 00/16] Fix i.MXRT1020/50
@ 2021-04-07 19:02 Giulio Benetti
  2021-04-07 19:02 ` [PATCH 01/16] arm: imxrt: soc: make mpu regions generic Giulio Benetti
                   ` (12 more replies)
  0 siblings, 13 replies; 38+ messages in thread
From: Giulio Benetti @ 2021-04-07 19:02 UTC (permalink / raw)
  To: u-boot

This patchset adds imx-gpt-timer driver that is supported by i.MXRT and also
a lot of other i.MX* SoCs. This driver is needed for i.MXRT SoC family that is
lacking at the moment the timer at all and that makes u-boot to fail running on
i.MXRT.
There are also some fixes in imxrt10*0-evk.dts and other minor fixed and
improvements.

Giulio Benetti (16):
  arm: imxrt: soc: make mpu regions generic
  timer: imx-gpt: Add timer support for i.MX SoCs family
  ARM: dts: imxrt1020: add alias to osc
  ARM: dts: imxrt1020: add gpt1 node
  ARM: dts: imxrt1020-evk: enable gpt1 timer
  ARM: dts: imxrt1020-evk: set gpt1 as tick-timer for u-boot
  ARM: dts: imxrt1020-evk-u-boot: make gpt1 present for SPL
  ARM: dts: imxrt1020-evk: add device_type = "memory" to memory node
  configs: imxrt1020-evk: enable imx gpt timer as tick-timer
  ARM: dts: imxrt1050: add alias to osc
  ARM: dts: imxrt1050: add gpt1 node
  ARM: dts: imxrt1050-evk: enable gpt1 timer
  ARM: dts: imxrt1050-evk: set gpt1 as tick-timer for u-boot
  ARM: dts: imxrt1050-evk-u-boot: make gpt1 present for SPL
  ARM: dts: imxrt1050-evk: add device_type = "memory" to memory node
  configs: imxrt1050-evk: enable imx gpt timer as tick-timer

 arch/arm/dts/imxrt1020-evk-u-boot.dtsi |   4 +
 arch/arm/dts/imxrt1020-evk.dts         |   6 +
 arch/arm/dts/imxrt1020.dtsi            |  10 +-
 arch/arm/dts/imxrt1050-evk-u-boot.dtsi |   4 +
 arch/arm/dts/imxrt1050-evk.dts         |   6 +
 arch/arm/dts/imxrt1050.dtsi            |  10 +-
 arch/arm/mach-imx/imxrt/soc.c          |   6 +-
 configs/imxrt1020-evk_defconfig        |   1 +
 configs/imxrt1050-evk_defconfig        |   1 +
 drivers/timer/Kconfig                  |   7 ++
 drivers/timer/Makefile                 |   1 +
 drivers/timer/imx-gpt-timer.c          | 162 +++++++++++++++++++++++++
 12 files changed, 213 insertions(+), 5 deletions(-)
 create mode 100644 drivers/timer/imx-gpt-timer.c

-- 
2.25.1

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

end of thread, other threads:[~2021-05-03 19:03 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2021-04-07 19:02 [PATCH 00/16] Fix i.MXRT1020/50 Giulio Benetti
2021-04-07 19:02 ` [PATCH 01/16] arm: imxrt: soc: make mpu regions generic Giulio Benetti
2021-04-07 19:02 ` [PATCH 02/16] timer: imx-gpt: Add timer support for i.MX SoCs family Giulio Benetti
2021-04-07 19:20   ` Giulio Benetti
2021-04-08  1:06     ` Jesse T
2021-04-08  3:05       ` Giulio Benetti
2021-04-08  1:55   ` Sean Anderson
2021-04-07 19:02 ` [PATCH 03/16] ARM: dts: imxrt1020: add alias to osc Giulio Benetti
2021-05-03 14:00   ` Fabio Estevam
2021-05-03 17:51     ` Giulio Benetti
2021-05-03 18:21       ` Fabio Estevam
2021-05-03 19:03         ` Giulio Benetti
2021-04-07 19:02 ` [PATCH 04/16] ARM: dts: imxrt1020: add gpt1 node Giulio Benetti
2021-04-07 19:02 ` [PATCH 05/16] ARM: dts: imxrt1020-evk: enable gpt1 timer Giulio Benetti
2021-04-07 19:02 ` [PATCH 06/16] ARM: dts: imxrt1020-evk: set gpt1 as tick-timer for u-boot Giulio Benetti
2021-04-07 19:02 ` [PATCH 07/16] ARM: dts: imxrt1020-evk-u-boot: make gpt1 present for SPL Giulio Benetti
2021-04-07 19:02 ` [PATCH 08/16] ARM: dts: imxrt1020-evk: add device_type = "memory" to memory node Giulio Benetti
2021-04-07 19:02 ` [PATCH 09/16] configs: imxrt1020-evk: enable imx gpt timer as tick-timer Giulio Benetti
2021-04-07 19:02 ` [PATCH 10/16] ARM: dts: imxrt1050: add alias to osc Giulio Benetti
2021-04-07 19:02 ` [PATCH 11/16] ARM: dts: imxrt1050: add gpt1 node Giulio Benetti
2021-04-07 19:03 ` [PATCH 12/16] ARM: dts: imxrt1050-evk: enable gpt1 timer Giulio Benetti
2021-05-01 23:42 ` [PATCH v2 00/16] Fix i.MXRT1020/50 Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 01/16] arm: imxrt: soc: make mpu regions generic Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 02/16] timer: imx-gpt: Add timer support for i.MX SoCs family Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 03/16] ARM: dts: imxrt1020: add alias to osc Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 04/16] ARM: dts: imxrt1020: add gpt1 node Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 05/16] ARM: dts: imxrt1020-evk: enable gpt1 timer Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 06/16] ARM: dts: imxrt1020-evk: set gpt1 as tick-timer for u-boot Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 07/16] ARM: dts: imxrt1020-evk-u-boot: make gpt1 present for SPL Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 08/16] ARM: dts: imxrt1020-evk: add device_type = "memory" to memory node Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 09/16] configs: imxrt1020-evk: enable imx gpt timer as tick-timer Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 10/16] ARM: dts: imxrt1050: add alias to osc Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 11/16] ARM: dts: imxrt1050: add gpt1 node Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 12/16] ARM: dts: imxrt1050-evk: enable gpt1 timer Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 13/16] ARM: dts: imxrt1050-evk: set gpt1 as tick-timer for u-boot Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 14/16] ARM: dts: imxrt1050-evk-u-boot: make gpt1 present for SPL Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 15/16] ARM: dts: imxrt1050-evk: add device_type = "memory" to memory node Giulio Benetti
2021-05-01 23:42   ` [PATCH v2 16/16] configs: imxrt1050-evk: enable imx gpt timer as tick-timer Giulio Benetti

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.