| Submitter | Simon Glass |
|---|---|
| Date | April 2, 2012, 11:18 p.m. |
| Message ID | <1333408743-28720-18-git-send-email-sjg@chromium.org> |
| Download | mbox | patch |
| Permalink | /patch/150284/ |
| State | Accepted, archived |
| Headers | show |
Comments
Patch
diff --git a/board/nvidia/common/board.c b/board/nvidia/common/board.c index 640b9c4..b82e61a 100644 --- a/board/nvidia/common/board.c +++ b/board/nvidia/common/board.c @@ -34,6 +34,7 @@ #include <asm/arch/pmc.h> #include <asm/arch/pmu.h> #include <asm/arch/uart.h> +#include <asm/arch/warmboot.h> #include <spi.h> #include <asm/arch/usb.h> #include <i2c.h> @@ -94,6 +95,11 @@ int board_init(void) board_usb_init(gd->fdt_blob); #endif +#ifdef CONFIG_TEGRA2_LP0 + /* prepare the WB code to LP0 location */ + warmboot_prepare_code(TEGRA_LP0_ADDR, TEGRA_LP0_SIZE); +#endif + return 0; }
Call the function to put warmboot boot in a suitable place for resume. Signed-off-by: Simon Glass <sjg@chromium.org> --- board/nvidia/common/board.c | 6 ++++++ 1 files changed, 6 insertions(+), 0 deletions(-)