All of lore.kernel.org
 help / color / mirror / Atom feed
From: Bin Meng <bmeng.cn@gmail.com>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v2 02/12] x86: fsp: Delay x86_fsp_init() call a little bit
Date: Thu, 20 Aug 2015 06:40:18 -0700	[thread overview]
Message-ID: <1440078028-29464-3-git-send-email-bmeng.cn@gmail.com> (raw)
In-Reply-To: <1440078028-29464-1-git-send-email-bmeng.cn@gmail.com>

Move x86_fsp_init() call after initf_malloc() so that we can fix up
the gd->malloc_limit later.

Signed-off-by: Bin Meng <bmeng.cn@gmail.com>
Acked-by: Simon Glass <sjg@chromium.org>
---

Changes in v2: None

 common/board_f.c | 6 +++---
 1 file changed, 3 insertions(+), 3 deletions(-)

diff --git a/common/board_f.c b/common/board_f.c
index c959774..5155013 100644
--- a/common/board_f.c
+++ b/common/board_f.c
@@ -765,9 +765,6 @@ static init_fnc_t init_sequence_f[] = {
 #ifdef CONFIG_OF_CONTROL
 	fdtdec_setup,
 #endif
-#if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
-	x86_fsp_init,
-#endif
 #ifdef CONFIG_TRACE
 	trace_early_init,
 #endif
@@ -776,6 +773,9 @@ static init_fnc_t init_sequence_f[] = {
 	/* TODO: can this go into arch_cpu_init()? */
 	probecpu,
 #endif
+#if defined(CONFIG_X86) && defined(CONFIG_HAVE_FSP)
+	x86_fsp_init,
+#endif
 	arch_cpu_init,		/* basic arch cpu dependent setup */
 	mark_bootstage,
 	initf_dm,
-- 
1.8.2.1

  parent reply	other threads:[~2015-08-20 13:40 UTC|newest]

Thread overview: 31+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2015-08-20 13:40 [U-Boot] [PATCH v2 00/12] x86: dm: pci: Support pci uart devices with driver model Bin Meng
2015-08-20 13:40 ` [U-Boot] [PATCH v2 01/12] dm: pci: Support selected device/driver binding before relocation Bin Meng
2015-08-22  4:20   ` Simon Glass
2015-08-20 13:40 ` Bin Meng [this message]
2015-08-22  4:20   ` [U-Boot] [PATCH v2 02/12] x86: fsp: Delay x86_fsp_init() call a little bit Simon Glass
2015-08-20 13:40 ` [U-Boot] [PATCH v2 03/12] x86: fsp: Enlarge the size of malloc() pool before relocation Bin Meng
2015-08-21 23:27   ` Simon Glass
2015-08-22  4:20     ` Simon Glass
2015-08-20 13:40 ` [U-Boot] [PATCH v2 04/12] x86: fsp: Add comments about U-Boot entering start.S twice Bin Meng
2015-08-21 23:27   ` Simon Glass
2015-08-22  4:20     ` Simon Glass
2015-08-20 13:40 ` [U-Boot] [PATCH v2 05/12] x86: queensbay: Move unprotect_spi_flash() to arch_misc_init() Bin Meng
2015-08-21 23:27   ` Simon Glass
2015-08-22  4:20     ` Simon Glass
2015-08-20 13:40 ` [U-Boot] [PATCH v2 06/12] x86: baytrail: Remove the fsp_init_phase_pci() call Bin Meng
2015-08-21 23:27   ` Simon Glass
2015-08-22  4:20     ` Simon Glass
2015-08-20 13:40 ` [U-Boot] [PATCH v2 07/12] x86: fsp: Call fsp_init_phase_pci() in pci_uclass_post_probe() Bin Meng
2015-08-21 23:27   ` Simon Glass
2015-08-22  9:05     ` Bin Meng
2015-08-23 21:21       ` Simon Glass
2015-08-20 13:40 ` [U-Boot] [PATCH v2 08/12] dm: pci: Remove the unnecessary pci_bus_find_devfn() in pci_bind_bus_devices() Bin Meng
2015-08-21 23:27   ` Simon Glass
2015-08-20 13:40 ` [U-Boot] [PATCH v2 09/12] fdtdec: Fix possible infinite loop in fdtdec_get_pci_vendev() Bin Meng
2015-08-21 23:27   ` Simon Glass
2015-08-23 21:22     ` Simon Glass
2015-08-20 13:40 ` [U-Boot] [PATCH v2 10/12] dm: pci: Save devfn without bus number in pci_uclass_child_post_bind() Bin Meng
2015-08-21 23:27   ` Simon Glass
2015-08-23 21:22     ` Simon Glass
2015-08-20 13:40 ` [U-Boot] [PATCH v2 11/12] dm: pci: Really support binding pci device in the device tree Bin Meng
2015-08-20 13:40 ` [U-Boot] [PATCH v2 12/12] dm: pci: Document binding of pci device drivers Bin Meng

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=1440078028-29464-3-git-send-email-bmeng.cn@gmail.com \
    --to=bmeng.cn@gmail.com \
    --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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.