public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
* [U-Boot] [PATCH 1/2] Revert "imx8qxp_mek: Disable CONFIG_DISPLAY_CPUINFO"
@ 2018-11-12 15:02 Bin Meng
  2018-11-12 15:02 ` [U-Boot] [PATCH 2/2] imx8: scu: Update call to lists_bind_fdt() Bin Meng
  2018-11-13  3:32 ` [U-Boot] [PATCH 1/2] Revert "imx8qxp_mek: Disable CONFIG_DISPLAY_CPUINFO" Simon Glass
  0 siblings, 2 replies; 6+ messages in thread
From: Bin Meng @ 2018-11-12 15:02 UTC (permalink / raw)
  To: u-boot

This reverts commit c5bbfaf05dc8592b479a44df6abaadbab54fec2b.

Disabling CONFIG_DISPLAY_CPUINFO was a temporary solution to get
the v2018.11 release out. Now the merge window opens, revert it.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 configs/imx8qxp_mek_defconfig | 1 -
 1 file changed, 1 deletion(-)

diff --git a/configs/imx8qxp_mek_defconfig b/configs/imx8qxp_mek_defconfig
index a45f3ba..1588416 100644
--- a/configs/imx8qxp_mek_defconfig
+++ b/configs/imx8qxp_mek_defconfig
@@ -6,7 +6,6 @@ CONFIG_SYS_MALLOC_F_LEN=0x2000
 CONFIG_TARGET_IMX8QXP_MEK=y
 CONFIG_NR_DRAM_BANKS=3
 CONFIG_BOOTDELAY=3
-# CONFIG_DISPLAY_CPUINFO is not set
 CONFIG_CMD_CPU=y
 # CONFIG_CMD_IMPORTENV is not set
 CONFIG_CMD_CLK=y
-- 
2.7.4

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

* [U-Boot] [PATCH 2/2] imx8: scu: Update call to lists_bind_fdt()
  2018-11-12 15:02 [U-Boot] [PATCH 1/2] Revert "imx8qxp_mek: Disable CONFIG_DISPLAY_CPUINFO" Bin Meng
@ 2018-11-12 15:02 ` Bin Meng
  2018-11-13  3:32   ` Simon Glass
  2018-11-13  3:32 ` [U-Boot] [PATCH 1/2] Revert "imx8qxp_mek: Disable CONFIG_DISPLAY_CPUINFO" Simon Glass
  1 sibling, 1 reply; 6+ messages in thread
From: Bin Meng @ 2018-11-12 15:02 UTC (permalink / raw)
  To: u-boot

This commit should be squashed into

commit 2bba642dbaa4 ("dm: core: Respect drivers with the
DM_FLAG_PRE_RELOC flag in lists_bind_fdt()")

on u-boot-dm/master branch.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
---

 drivers/misc/imx8/scu.c | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/drivers/misc/imx8/scu.c b/drivers/misc/imx8/scu.c
index 0647ddf..b824ac7 100644
--- a/drivers/misc/imx8/scu.c
+++ b/drivers/misc/imx8/scu.c
@@ -223,7 +223,7 @@ static int imx8_scu_bind(struct udevice *dev)
 	if (node < 0)
 		panic("No clk node found\n");
 
-	ret = lists_bind_fdt(dev, offset_to_ofnode(node), &child);
+	ret = lists_bind_fdt(dev, offset_to_ofnode(node), &child, true);
 	if (ret)
 		return ret;
 
@@ -234,7 +234,7 @@ static int imx8_scu_bind(struct udevice *dev)
 	if (node < 0)
 		panic("No iomuxc node found\n");
 
-	ret = lists_bind_fdt(dev, offset_to_ofnode(node), &child);
+	ret = lists_bind_fdt(dev, offset_to_ofnode(node), &child, true);
 	if (ret)
 		return ret;
 
-- 
2.7.4

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

* [U-Boot] [PATCH 1/2] Revert "imx8qxp_mek: Disable CONFIG_DISPLAY_CPUINFO"
  2018-11-12 15:02 [U-Boot] [PATCH 1/2] Revert "imx8qxp_mek: Disable CONFIG_DISPLAY_CPUINFO" Bin Meng
  2018-11-12 15:02 ` [U-Boot] [PATCH 2/2] imx8: scu: Update call to lists_bind_fdt() Bin Meng
@ 2018-11-13  3:32 ` Simon Glass
  2018-11-13 20:01   ` Simon Glass
  1 sibling, 1 reply; 6+ messages in thread
From: Simon Glass @ 2018-11-13  3:32 UTC (permalink / raw)
  To: u-boot

On 12 November 2018 at 08:02, Bin Meng <bmeng.cn@gmail.com> wrote:
>
> This reverts commit c5bbfaf05dc8592b479a44df6abaadbab54fec2b.
>
> Disabling CONFIG_DISPLAY_CPUINFO was a temporary solution to get
> the v2018.11 release out. Now the merge window opens, revert it.
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
>  configs/imx8qxp_mek_defconfig | 1 -
>  1 file changed, 1 deletion(-)

Reviewed-by: Simon Glass <sjg@chromium.org>

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

* [U-Boot] [PATCH 2/2] imx8: scu: Update call to lists_bind_fdt()
  2018-11-12 15:02 ` [U-Boot] [PATCH 2/2] imx8: scu: Update call to lists_bind_fdt() Bin Meng
@ 2018-11-13  3:32   ` Simon Glass
  2018-11-13 20:01     ` Simon Glass
  0 siblings, 1 reply; 6+ messages in thread
From: Simon Glass @ 2018-11-13  3:32 UTC (permalink / raw)
  To: u-boot

On 12 November 2018 at 08:02, Bin Meng <bmeng.cn@gmail.com> wrote:
> This commit should be squashed into
>
> commit 2bba642dbaa4 ("dm: core: Respect drivers with the
> DM_FLAG_PRE_RELOC flag in lists_bind_fdt()")
>
> on u-boot-dm/master branch.
>
> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
> ---
>
>  drivers/misc/imx8/scu.c | 4 ++--
>  1 file changed, 2 insertions(+), 2 deletions(-)

Reviewed-by: Simon Glass <sjg@chromium.org>

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

* [U-Boot] [PATCH 1/2] Revert "imx8qxp_mek: Disable CONFIG_DISPLAY_CPUINFO"
  2018-11-13  3:32 ` [U-Boot] [PATCH 1/2] Revert "imx8qxp_mek: Disable CONFIG_DISPLAY_CPUINFO" Simon Glass
@ 2018-11-13 20:01   ` Simon Glass
  0 siblings, 0 replies; 6+ messages in thread
From: Simon Glass @ 2018-11-13 20:01 UTC (permalink / raw)
  To: u-boot

On 12 November 2018 at 19:32, Simon Glass <sjg@chromium.org> wrote:
> On 12 November 2018 at 08:02, Bin Meng <bmeng.cn@gmail.com> wrote:
>>
>> This reverts commit c5bbfaf05dc8592b479a44df6abaadbab54fec2b.
>>
>> Disabling CONFIG_DISPLAY_CPUINFO was a temporary solution to get
>> the v2018.11 release out. Now the merge window opens, revert it.
>>
>> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
>> ---
>>
>>  configs/imx8qxp_mek_defconfig | 1 -
>>  1 file changed, 1 deletion(-)
>
> Reviewed-by: Simon Glass <sjg@chromium.org>

Applied to u-boot-dm, thanks!

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

* [U-Boot] [PATCH 2/2] imx8: scu: Update call to lists_bind_fdt()
  2018-11-13  3:32   ` Simon Glass
@ 2018-11-13 20:01     ` Simon Glass
  0 siblings, 0 replies; 6+ messages in thread
From: Simon Glass @ 2018-11-13 20:01 UTC (permalink / raw)
  To: u-boot

On 12 November 2018 at 19:32, Simon Glass <sjg@chromium.org> wrote:
> On 12 November 2018 at 08:02, Bin Meng <bmeng.cn@gmail.com> wrote:
>> This commit should be squashed into
>>
>> commit 2bba642dbaa4 ("dm: core: Respect drivers with the
>> DM_FLAG_PRE_RELOC flag in lists_bind_fdt()")
>>
>> on u-boot-dm/master branch.
>>
>> Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
>> ---
>>
>>  drivers/misc/imx8/scu.c | 4 ++--
>>  1 file changed, 2 insertions(+), 2 deletions(-)
>
> Reviewed-by: Simon Glass <sjg@chromium.org>'

Applied (merged in) to u-boot-dm, thanks!

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

end of thread, other threads:[~2018-11-13 20:01 UTC | newest]

Thread overview: 6+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2018-11-12 15:02 [U-Boot] [PATCH 1/2] Revert "imx8qxp_mek: Disable CONFIG_DISPLAY_CPUINFO" Bin Meng
2018-11-12 15:02 ` [U-Boot] [PATCH 2/2] imx8: scu: Update call to lists_bind_fdt() Bin Meng
2018-11-13  3:32   ` Simon Glass
2018-11-13 20:01     ` Simon Glass
2018-11-13  3:32 ` [U-Boot] [PATCH 1/2] Revert "imx8qxp_mek: Disable CONFIG_DISPLAY_CPUINFO" Simon Glass
2018-11-13 20:01   ` Simon Glass

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