From mboxrd@z Thu Jan 1 00:00:00 1970 From: Bin Meng Date: Tue, 7 May 2019 17:21:13 +0800 Subject: [U-Boot] [PATCH v3 02/18] x86: Add a simple TPL implementation In-Reply-To: <20190502165229.203099-3-sjg@chromium.org> References: <20190502165229.203099-1-sjg@chromium.org> <20190502165229.203099-3-sjg@chromium.org> Message-ID: List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de On Fri, May 3, 2019 at 12:52 AM Simon Glass wrote: > > Add the required CPU code so that TPL builds correctly. Also update the > SPL code to deal with being booted from TPL. > > Reviewed-by: Bin Meng > Signed-off-by: Simon Glass > --- > > Changes in v3: > - Rebase to x86/master > > Changes in v2: None > > arch/x86/include/asm/spl.h | 17 ++++- > arch/x86/lib/Makefile | 9 ++- > arch/x86/lib/spl.c | 44 ++++++++++- > arch/x86/lib/tpl.c | 118 ++++++++++++++++++++++++++++++ > include/configs/chromebook_link.h | 3 - > include/configs/qemu-x86.h | 5 -- > 6 files changed, 183 insertions(+), 13 deletions(-) > create mode 100644 arch/x86/lib/tpl.c > applied to u-boot-x86, thanks!