public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Lukasz Majewski <lukma@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v1 00/22] colibri vybrid fixes, device tree enablement and driver model conversion
Date: Sun, 17 Feb 2019 23:40:35 +0100	[thread overview]
Message-ID: <20190217234035.3a30fc26@jawa> (raw)
In-Reply-To: <20190215222039.10005-1-marcel@ziswiler.com>

Hi Marcel, Stefan,

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

Thanks for your work on further vf610 rework.

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




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma at denx.de
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 488 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190217/1b5f58d0/attachment.sig>

      parent reply	other threads:[~2019-02-17 22:40 UTC|newest]

Thread overview: 38+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
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 ` Lukasz Majewski [this message]

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=20190217234035.3a30fc26@jawa \
    --to=lukma@denx.de \
    --cc=u-boot@lists.denx.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox