public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH v1 00/22] colibri vybrid fixes, device tree enablement and driver model conversion
@ 2019-02-15 22:20 Marcel Ziswiler
  2019-02-15 22:20 ` [U-Boot] [PATCH v1 01/22] add missing space in comment Marcel Ziswiler
                   ` (22 more replies)
  0 siblings, 23 replies; 38+ messages in thread
From: Marcel Ziswiler @ 2019-02-15 22:20 UTC (permalink / raw)
  To: u-boot


This series addresses some shortcomings, enables/introduces device tree
support and converts all except video to using the driver model. This is
fully tested both running our latest downstream BSP as well as the
mainline Linux kernel.

This series is based on Lukasz' previous work on Vybrid [1] and is
available together with his and my previous series addressing Apalis
and Colibri iMX6 on our git server [2].

[1] https://patchwork.ozlabs.org/cover/1041597/
[2] http://git.toradex.com/cgit/u-boot-toradex.git/log/?h=for-next


Bhuvanchandra DV (1):
  colibri_vf: sync the board info message

Gerard Salvatella (1):
  colibri_vf: fix sdboot for vybrid modules

Marcel Ziswiler (12):
  add missing space in comment
  vf610: ddrmc: add missing include
  imx: bootaux: add dependency on vf610
  configs: move CONFIG_USB_EHCI_VF to Kconfig
  configs: colibri_vf: remove obsolete mmc/sd card environment
  configs: colibri_vf: limit size of malloc() pool before relocation
  configs: move CONFIG_MXC_OCOTP to Kconfig
  ARM: dts: colibri_vf: update device trees
  configs: colibri_vf: disable obscure options
  colibri_vf: migrate pinctrl and regulators to dtb/dm
  colibri_vf: migrate fec, esdhc, nfc and usb to driver model
  config: colibri_vf: use macros from linux/sizes.h

Stefan Agner (8):
  colibri_vf: add distroboot support
  colibri_vf: set fdtfile for distroboot
  colibri_vf: enable user debug by default
  colibri_vf: disable undefined instruction events in user debug
  config: colibri_vf: enable mtd partitions via dt
  arm: vf610: add uart2 clock/pinmux support
  colibri_vf: adjust timing according to data sheet
  colibri_vf: use leveling evaluated by DDR validation tools

 arch/arm/dts/vf-colibri-u-boot.dtsi           |  23 ++
 arch/arm/dts/vf-colibri.dtsi                  | 198 +++++++++++++-
 arch/arm/dts/vf500-colibri.dts                |   1 +
 arch/arm/dts/vf610-colibri.dts                |   1 +
 arch/arm/include/asm/arch-vf610/crm_regs.h    |   1 +
 arch/arm/include/asm/arch-vf610/ddrmc-vf610.h |   2 +
 arch/arm/include/asm/arch-vf610/iomux-vf610.h |   6 +-
 arch/arm/mach-imx/Kconfig                     |   2 +-
 board/freescale/imx8qxp_mek/imx8qxp_mek.c     |   2 +-
 board/toradex/colibri_vf/MAINTAINERS          |   4 +-
 board/toradex/colibri_vf/colibri_vf.c         | 241 ++----------------
 configs/bk4r1_defconfig                       |   1 -
 configs/colibri_vf_defconfig                  |  22 +-
 configs/pcm052_defconfig                      |   1 -
 drivers/misc/Kconfig                          |   2 +
 drivers/usb/host/Kconfig                      |   7 +
 drivers/video/videomodes.c                    |   2 +-
 include/configs/advantech_dms-ba16.h          |   2 -
 include/configs/apalis_imx6.h                 |   5 -
 include/configs/colibri_imx6.h                |   5 -
 include/configs/colibri_vf.h                  | 109 ++++----
 include/configs/dh_imx6.h                     |   5 -
 include/configs/ge_bx50v3.h                   |   2 -
 include/configs/imx8mq_evk.h                  |   1 -
 include/configs/kp_imx6q_tpc.h                |   5 -
 include/configs/mx6_common.h                  |   3 -
 include/configs/mx7_common.h                  |   3 -
 include/configs/vf610twr.h                    |   4 -
 scripts/config_whitelist.txt                  |   1 -
 29 files changed, 344 insertions(+), 317 deletions(-)
 create mode 100644 arch/arm/dts/vf-colibri-u-boot.dtsi

-- 
2.20.1

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

end of thread, other threads:[~2019-03-24 21:33 UTC | newest]

Thread overview: 38+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2019-02-15 22:20 [U-Boot] [PATCH v1 00/22] colibri vybrid fixes, device tree enablement and driver model conversion Marcel Ziswiler
2019-02-15 22:20 ` [U-Boot] [PATCH v1 01/22] add missing space in comment Marcel Ziswiler
2019-03-07  5:29   ` Igor Opaniuk
2019-02-15 22:20 ` [U-Boot] [PATCH v1 02/22] vf610: ddrmc: add missing include Marcel Ziswiler
2019-03-11 13:27   ` Igor Opaniuk
2019-02-15 22:20 ` [U-Boot] [PATCH v1 03/22] imx: bootaux: add dependency on vf610 Marcel Ziswiler
2019-03-07  5:31   ` Igor Opaniuk
2019-02-15 22:20 ` [U-Boot] [PATCH v1 04/22] configs: move CONFIG_USB_EHCI_VF to Kconfig Marcel Ziswiler
2019-03-07  5:39   ` Igor Opaniuk
2019-02-15 22:20 ` [U-Boot] [PATCH v1 05/22] configs: colibri_vf: remove obsolete mmc/sd card environment Marcel Ziswiler
2019-03-11 13:43   ` Igor Opaniuk
2019-02-15 22:20 ` [U-Boot] [PATCH v1 06/22] configs: colibri_vf: limit size of malloc() pool before relocation Marcel Ziswiler
2019-03-07  5:37   ` Igor Opaniuk
2019-02-15 22:20 ` [U-Boot] [PATCH v1 07/22] configs: move CONFIG_MXC_OCOTP to Kconfig Marcel Ziswiler
2019-02-17 22:38   ` Lukasz Majewski
2019-02-15 22:20 ` [U-Boot] [PATCH v1 08/22] ARM: dts: colibri_vf: update device trees Marcel Ziswiler
2019-02-15 22:20 ` [U-Boot] [PATCH v1 09/22] configs: colibri_vf: disable obscure options Marcel Ziswiler
2019-02-15 22:20 ` [U-Boot] [PATCH v1 10/22] colibri_vf: migrate pinctrl and regulators to dtb/dm Marcel Ziswiler
2019-02-15 22:20 ` [U-Boot] [PATCH v1 11/22] colibri_vf: migrate fec, esdhc, nfc and usb to driver model Marcel Ziswiler
2019-02-15 22:20 ` [U-Boot] [PATCH v1 12/22] config: colibri_vf: use macros from linux/sizes.h Marcel Ziswiler
2019-03-06 16:48   ` Igor Opaniuk
2019-02-15 22:20 ` [U-Boot] [PATCH v1 13/22] colibri_vf: add distroboot support Marcel Ziswiler
2019-02-15 22:20 ` [U-Boot] [PATCH v1 14/22] colibri_vf: set fdtfile for distroboot Marcel Ziswiler
2019-02-15 22:20 ` [U-Boot] [PATCH v1 15/22] colibri_vf: sync the board info message Marcel Ziswiler
2019-03-06 16:53   ` Igor Opaniuk
2019-02-15 22:20 ` [U-Boot] [PATCH v1 16/22] colibri_vf: enable user debug by default Marcel Ziswiler
2019-03-11 13:46   ` Igor Opaniuk
2019-02-15 22:20 ` [U-Boot] [PATCH v1 17/22] colibri_vf: disable undefined instruction events in user debug Marcel Ziswiler
2019-03-11 13:51   ` Igor Opaniuk
2019-02-15 22:20 ` [U-Boot] [PATCH v1 18/22] config: colibri_vf: enable mtd partitions via dt Marcel Ziswiler
2019-03-11 14:01   ` Igor Opaniuk
2019-03-24 21:33     ` Marcel Ziswiler
2019-02-15 22:20 ` [U-Boot] [PATCH v1 19/22] arm: vf610: add uart2 clock/pinmux support Marcel Ziswiler
2019-02-15 22:20 ` [U-Boot] [PATCH v1 20/22] colibri_vf: adjust timing according to data sheet Marcel Ziswiler
2019-02-15 22:20 ` [U-Boot] [PATCH v1 21/22] colibri_vf: use leveling evaluated by DDR validation tools Marcel Ziswiler
2019-02-15 22:20 ` [U-Boot] [PATCH v1 22/22] colibri_vf: fix sdboot for vybrid modules Marcel Ziswiler
2019-03-06 15:30   ` Igor Opaniuk
2019-02-17 22:40 ` [U-Boot] [PATCH v1 00/22] colibri vybrid fixes, device tree enablement and driver model conversion Lukasz Majewski

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