public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH V3 00/27] i.MX8MM support
@ 2019-08-27  6:24 Peng Fan
  2019-08-27  6:24 ` [U-Boot] [PATCH V3 01/27] imx: mkimage_fit_atf: Fix FIT image for correct boot order Peng Fan
                   ` (26 more replies)
  0 siblings, 27 replies; 41+ messages in thread
From: Peng Fan @ 2019-08-27  6:24 UTC (permalink / raw)
  To: u-boot


V3:
Added a new patch from Frieder:
imx: mkimage_fit_atf: Fix FIT image for correct boot order
Tag fixes for Frieder
Drop rom_pointer use in patch 27/27 and clean up included files.
4bytes-> 4 bytes in patch 2/27

V2:
Fixed comments from Lukasz and Frieder
The following was newly added.
imx8m: imx-regs: drop unused register definitions
imx8m: restrict reset_cpu
imx: mmc_env: update runtime SD/MMC boot env device
imx8m: soc: probe clock device in arch_cpu_init_dm

V1:
https://patchwork.ozlabs.org/cover/1144326/
This is a splitted and updated patch from
https://patchwork.ozlabs.org/cover/1128799/ which is to support both
i.MX8MM and i.MX8MN.

There is a README added, following that to test if you would like to.


Frieder Schrempf (1):
  imx: mkimage_fit_atf: Fix FIT image for correct boot order

Peng Fan (25):
  tools: imx8m_image: align spl bin image size
  ddr: imx8m: fix ddr firmware location when enable SPL OF
  imx8m: add image cfg for i.MX8MM lpddr4
  imx: add IMX8MQ kconfig entry
  imx: add IMX8MM kconfig entry
  imx: imx8mm: add clock bindings header
  imx: add i.MX8MM cpu type
  imx: spl: add spl_board_boot_device for i.MX8MM
  imx8m: imx-regs: drop unused register definitions
  imx8m: update imx-regs for i.MX8MM
  imx: add get_cpu_rev support for i.MX8MM
  imx8m: add pin header for i.MX8MM
  imx: add i.MX8MM PE property
  imx8m: Fix MMU table issue for OPTEE memory
  imx8m: set BYPASS ID SWAP to avoid AXI bus errors
  imx8m: soc: enable SCTR clock before timer init
  imx8m: restrict reset_cpu
  imx8m: rename clock to clock_imx8mq
  imx8m: restructure clock.h
  imx8m: add clk support for i.MX8MM
  imx: mmc_env: update runtime SD/MMC boot env device
  imx8m: soc: probe clock device in arch_cpu_init_dm
  arm: dts: import i.MX8MM dtsi
  arm: dts: add i.MX8MM pin func
  imx: Add i.MX8MM EVK board support.

Ye Li (1):
  imx8m: Configure trustzone region 0 for non-secure access

 arch/arm/dts/Makefile                              |    3 +-
 arch/arm/dts/imx8mm-evk-u-boot.dtsi                |   92 +
 arch/arm/dts/imx8mm-evk.dts                        |  235 +++
 arch/arm/dts/imx8mm-pinfunc.h                      |  629 +++++++
 arch/arm/dts/imx8mm.dtsi                           |  733 ++++++++
 arch/arm/include/asm/arch-imx/cpu.h                |    6 +
 arch/arm/include/asm/arch-imx8m/clock.h            |  491 +----
 arch/arm/include/asm/arch-imx8m/clock_imx8mm.h     |  387 ++++
 arch/arm/include/asm/arch-imx8m/clock_imx8mq.h     |  424 +++++
 arch/arm/include/asm/arch-imx8m/imx-regs.h         |  291 +--
 arch/arm/include/asm/arch-imx8m/imx8mm_pins.h      |  691 +++++++
 arch/arm/include/asm/mach-imx/iomux-v3.h           |    4 +
 arch/arm/include/asm/mach-imx/sys_proto.h          |    8 +
 arch/arm/mach-imx/cpu.c                            |   12 +
 arch/arm/mach-imx/imx8m/Kconfig                    |   17 +-
 arch/arm/mach-imx/imx8m/Makefile                   |    4 +-
 arch/arm/mach-imx/imx8m/clock_imx8mm.c             |  306 +++
 .../arm/mach-imx/imx8m/{clock.c => clock_imx8mq.c} |    5 +-
 arch/arm/mach-imx/imx8m/clock_slice.c              |   63 +
 arch/arm/mach-imx/imx8m/imximage-8mm-lpddr4.cfg    |   16 +
 arch/arm/mach-imx/imx8m/soc.c                      |  129 +-
 arch/arm/mach-imx/mkimage_fit_atf.sh               |   10 +-
 arch/arm/mach-imx/mmc_env.c                        |    3 +
 arch/arm/mach-imx/spl.c                            |    8 +
 board/freescale/imx8mm_evk/Kconfig                 |   12 +
 board/freescale/imx8mm_evk/MAINTAINERS             |    6 +
 board/freescale/imx8mm_evk/Makefile                |   12 +
 board/freescale/imx8mm_evk/README                  |   37 +
 board/freescale/imx8mm_evk/imx8mm_evk.c            |   29 +
 board/freescale/imx8mm_evk/lpddr4_timing.c         | 1980 ++++++++++++++++++++
 board/freescale/imx8mm_evk/spl.c                   |  129 ++
 configs/imx8mm_evk_defconfig                       |   74 +
 drivers/ddr/imx/imx8m/helper.c                     |   12 +-
 include/configs/imx8mm_evk.h                       |  153 ++
 include/dt-bindings/clock/imx8mm-clock.h           |  253 +++
 tools/imx8m_image.sh                               |    5 +-
 36 files changed, 6562 insertions(+), 707 deletions(-)
 create mode 100644 arch/arm/dts/imx8mm-evk-u-boot.dtsi
 create mode 100644 arch/arm/dts/imx8mm-evk.dts
 create mode 100644 arch/arm/dts/imx8mm-pinfunc.h
 create mode 100644 arch/arm/dts/imx8mm.dtsi
 create mode 100644 arch/arm/include/asm/arch-imx8m/clock_imx8mm.h
 create mode 100644 arch/arm/include/asm/arch-imx8m/clock_imx8mq.h
 create mode 100644 arch/arm/include/asm/arch-imx8m/imx8mm_pins.h
 create mode 100644 arch/arm/mach-imx/imx8m/clock_imx8mm.c
 rename arch/arm/mach-imx/imx8m/{clock.c => clock_imx8mq.c} (99%)
 create mode 100644 arch/arm/mach-imx/imx8m/imximage-8mm-lpddr4.cfg
 create mode 100644 board/freescale/imx8mm_evk/Kconfig
 create mode 100644 board/freescale/imx8mm_evk/MAINTAINERS
 create mode 100644 board/freescale/imx8mm_evk/Makefile
 create mode 100644 board/freescale/imx8mm_evk/README
 create mode 100644 board/freescale/imx8mm_evk/imx8mm_evk.c
 create mode 100644 board/freescale/imx8mm_evk/lpddr4_timing.c
 create mode 100644 board/freescale/imx8mm_evk/spl.c
 create mode 100644 configs/imx8mm_evk_defconfig
 create mode 100644 include/configs/imx8mm_evk.h
 create mode 100644 include/dt-bindings/clock/imx8mm-clock.h

-- 
2.16.4

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

end of thread, other threads:[~2020-03-05 12:18 UTC | newest]

Thread overview: 41+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-08-27  6:24 [U-Boot] [PATCH V3 00/27] i.MX8MM support Peng Fan
2019-08-27  6:24 ` [U-Boot] [PATCH V3 01/27] imx: mkimage_fit_atf: Fix FIT image for correct boot order Peng Fan
2019-08-27  6:24 ` [U-Boot] [PATCH V3 02/27] tools: imx8m_image: align spl bin image size Peng Fan
2019-08-27  6:24 ` [U-Boot] [PATCH V3 03/27] ddr: imx8m: fix ddr firmware location when enable SPL OF Peng Fan
2019-08-27  6:24 ` [U-Boot] [PATCH V3 04/27] imx8m: add image cfg for i.MX8MM lpddr4 Peng Fan
2019-08-27  6:24 ` [U-Boot] [PATCH V3 05/27] imx: add IMX8MQ kconfig entry Peng Fan
2019-08-27  6:24 ` [U-Boot] [PATCH V3 06/27] imx: add IMX8MM " Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 07/27] imx: imx8mm: add clock bindings header Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 08/27] imx: add i.MX8MM cpu type Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 09/27] imx: spl: add spl_board_boot_device for i.MX8MM Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 10/27] imx8m: imx-regs: drop unused register definitions Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 11/27] imx8m: update imx-regs for i.MX8MM Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 12/27] imx: add get_cpu_rev support " Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 13/27] imx8m: add pin header " Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 14/27] imx: add i.MX8MM PE property Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 15/27] imx8m: Fix MMU table issue for OPTEE memory Peng Fan
2020-03-04 14:34   ` Igor Opaniuk
2020-03-04 16:42     ` Igor Opaniuk
2020-03-05  0:50     ` Peng Fan
2020-03-05 10:36       ` Igor Opaniuk
2020-03-05 10:46         ` Peng Fan
2020-03-05 12:18           ` Igor Opaniuk
2019-08-27  6:25 ` [U-Boot] [PATCH V3 16/27] imx8m: set BYPASS ID SWAP to avoid AXI bus errors Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 17/27] imx8m: Configure trustzone region 0 for non-secure access Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 18/27] imx8m: soc: enable SCTR clock before timer init Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 19/27] imx8m: restrict reset_cpu Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 20/27] imx8m: rename clock to clock_imx8mq Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 21/27] imx8m: restructure clock.h Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 22/27] imx8m: add clk support for i.MX8MM Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 23/27] imx: mmc_env: update runtime SD/MMC boot env device Peng Fan
2019-08-27  6:25 ` [U-Boot] [PATCH V3 24/27] imx8m: soc: probe clock device in arch_cpu_init_dm Peng Fan
2019-08-28 15:20   ` Schrempf Frieder
2019-08-29  1:21     ` Peng Fan
2019-08-29  5:47       ` Schrempf Frieder
2019-10-10 22:35   ` Patrick Wildt
2019-08-27  6:26 ` [U-Boot] [PATCH V3 25/27] arm: dts: import i.MX8MM dtsi Peng Fan
2019-08-27  6:26 ` [U-Boot] [PATCH V3 26/27] arm: dts: add i.MX8MM pin func Peng Fan
2019-08-27  6:26 ` [U-Boot] [PATCH V3 27/27] imx: Add i.MX8MM EVK board support Peng Fan
2019-10-07 18:36   ` Tim Harvey
2019-10-09  2:50     ` Peng Fan
2019-10-09 15:32       ` Tim Harvey

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