From: Stefano Babic <sbabic@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 26/34] imx: ventana: add DT fixup for GW54xx compatibility with older kernels
Date: Thu, 16 Apr 2015 09:46:27 +0200 [thread overview]
Message-ID: <552F68D3.9060305@denx.de> (raw)
In-Reply-To: <1428522904-8111-27-git-send-email-tharvey@gateworks.com>
Hi Tim,
I have no problem with the whole series, I will start to apply. Just a
couple of questions:
On 08/04/2015 21:54, Tim Harvey wrote:
> Certain older kernels in use by some customers erroneously define a uart3
> for GW54xx with a pinmux that conflicts with NAND. This will remove
> that node to avoid such conflicts.
>
> Signed-off-by: Tim Harvey <tharvey@gateworks.com>
> ---
> board/gateworks/gw_ventana/gw_ventana.c | 11 +++++++++++
> 1 file changed, 11 insertions(+)
>
> diff --git a/board/gateworks/gw_ventana/gw_ventana.c b/board/gateworks/gw_ventana/gw_ventana.c
> index 068c726..06611b5 100644
> --- a/board/gateworks/gw_ventana/gw_ventana.c
> +++ b/board/gateworks/gw_ventana/gw_ventana.c
> @@ -1599,6 +1599,17 @@ int ft_board_setup(void *blob, bd_t *bd)
> strlen((const char *)info->model) + 1);
>
> /*
> + * disable serial2 node for GW54xx for compatibility with older
> + * 3.10.x kernel that improperly had this node enabled in the DT
> + */
I understand the issue, but I guess you have a dtb file for your
(Freescale) 3.10 kernel and another one for kernel mainline. So why this
issue should be fixed here and not in the related DTS file ?
> + if (board_type == GW54xx) {
> + i = fdt_path_offset(blob,
> + "/soc/aips-bus at 02100000/serial at 021ec000");
> + if (i)
> + fdt_del_node(blob, i);
> + }
> +
> + /*
> * disable wdog1/wdog2 nodes for GW51xx below revC to work around
> * errata causing wdog timer to be unreliable.
> */
>
Best regards,
Stefano Babic
--
=====================================================================
DENX Software Engineering GmbH, Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: +49-8142-66989-53 Fax: +49-8142-66989-80 Email: sbabic at denx.de
=====================================================================
next prev parent reply other threads:[~2015-04-16 7:46 UTC|newest]
Thread overview: 39+ messages / expand[flat|nested] mbox.gz Atom feed top
2015-04-08 19:54 [U-Boot] [PATCH 00/34] imx: ventana: Ventana clean-up and updates Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 01/34] imx: ventana: disable 4k tftp/nfs packets Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 02/34] imx: ventana: add i210 support Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 03/34] imx: ventana: assign default ethprime dynamically Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 04/34] imx: ventana: remove unused GPIO configuration Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 05/34] imx: ventana: add usb_pcisel hwconfig support Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 06/34] imx: ventana: enable precharge power-down fast-exit mode Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 07/34] imx: ventana: add support for 4Gb density mem devices with IMX6DL Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 08/34] imx: ventana: set LTC3676 PMIC to appropriate values per datasheet Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 09/34] imx: ventana: config: add USB Mass Storage (ums) support Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 10/34] imx: ventana: config: Support ramdisk Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 11/34] imx: ventana: config: enable edid support Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 12/34] imx: ventana: config: enable EXT4 filesystem read/write support Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 13/34] imx: ventana: fix various sparse warnings Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 14/34] imx: ventana: disable IMX6 watchdogs on GW51xx RevA and RevB Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 15/34] imx: ventana: Add support for GW551x Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 16/34] imx: ventana: add usb_pgood_delay 2sec default Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 17/34] imx: ventana: add wdis config for GW5520 Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 18/34] imx: ventana: only pinmux FEC enet signals for boards using it Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 19/34] imx: ventana: update boot scripts to support ubifs boot vol Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 20/34] imx: ventana: remove GSC hwmon voltage rail min/max test Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 21/34] imx: ventana: add mem_mb dynamic env var Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 22/34] imx: ventana: gsc: add new hwmon rails Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 23/34] imx: ventana: added DT fixup for GW551x-A video input Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 24/34] imx: ventana: updated 16bit DDR calibration Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 25/34] imx: ventana: remove 128x16 calibration (share with 128x32) Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 26/34] imx: ventana: add DT fixup for GW54xx compatibility with older kernels Tim Harvey
2015-04-16 7:46 ` Stefano Babic [this message]
2015-04-16 13:20 ` Tim Harvey
2015-04-22 12:29 ` Stefano Babic
2015-04-08 19:54 ` [U-Boot] [PATCH 27/34] imx: ventana: add support for DLC-700JMGT4 and DLC-800FIGT3 LCD displays Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 28/34] imx: ventana: added device-tree display configuration for LVDS displays Tim Harvey
2015-04-08 19:54 ` [U-Boot] [PATCH 29/34] imx: ventana: add 'gsc wd' command for enabling and disabling GSC watchdog Tim Harvey
2015-04-08 19:55 ` [U-Boot] [PATCH 30/34] imx: ventana: add DT fixup for GW522x to change PCIE_RST# GPIO Tim Harvey
2015-04-08 19:55 ` [U-Boot] [PATCH 31/34] imx: ventana: use hdmiinfmt env var to override HDMI capture format Tim Harvey
2015-04-08 19:55 ` [U-Boot] [PATCH 32/34] imx: ventana: set HDMI video in to yuv422bt656 for GW551x-A Tim Harvey
2015-04-08 19:55 ` [U-Boot] [PATCH 33/34] imx: ventana: Add new memory configuration Tim Harvey
2015-04-08 19:55 ` [U-Boot] [PATCH 34/34] imx: ventana: Update missing memory/calib handling Tim Harvey
2015-04-22 12:43 ` [U-Boot] [PATCH 00/34] imx: ventana: Ventana clean-up and updates Stefano Babic
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=552F68D3.9060305@denx.de \
--to=sbabic@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