Simon Glass | c8a311d | 2013-03-05 14:39:40 +0000 | [diff] [blame] | 1 | /* |
| 2 | * Copyright (c) 2013 The Chromium OS Authors. |
| 3 | * |
Wolfgang Denk | 1a45966 | 2013-07-08 09:37:19 +0200 | [diff] [blame] | 4 | * SPDX-License-Identifier: GPL-2.0+ |
Simon Glass | c8a311d | 2013-03-05 14:39:40 +0000 | [diff] [blame] | 5 | */ |
| 6 | |
| 7 | #include <common.h> |
| 8 | #include <initcall.h> |
Simon Glass | f134ed7 | 2015-07-31 09:31:38 -0600 | [diff] [blame] | 9 | #include <efi.h> |
Simon Glass | c8a311d | 2013-03-05 14:39:40 +0000 | [diff] [blame] | 10 | |
Simon Glass | 2f43f85 | 2014-05-20 06:01:43 -0600 | [diff] [blame] | 11 | DECLARE_GLOBAL_DATA_PTR; |
| 12 | |
| 13 | int initcall_run_list(const init_fnc_t init_sequence[]) |
Simon Glass | c8a311d | 2013-03-05 14:39:40 +0000 | [diff] [blame] | 14 | { |
Simon Glass | 2f43f85 | 2014-05-20 06:01:43 -0600 | [diff] [blame] | 15 | const init_fnc_t *init_fnc_ptr; |
Simon Glass | c8a311d | 2013-03-05 14:39:40 +0000 | [diff] [blame] | 16 | |
| 17 | for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) { |
Simon Glass | 2f43f85 | 2014-05-20 06:01:43 -0600 | [diff] [blame] | 18 | unsigned long reloc_ofs = 0; |
Simon Glass | aacc6c5 | 2014-10-01 19:57:22 -0600 | [diff] [blame] | 19 | int ret; |
Simon Glass | 2f43f85 | 2014-05-20 06:01:43 -0600 | [diff] [blame] | 20 | |
| 21 | if (gd->flags & GD_FLG_RELOC) |
| 22 | reloc_ofs = gd->reloc_off; |
Simon Glass | f134ed7 | 2015-07-31 09:31:38 -0600 | [diff] [blame] | 23 | #ifdef CONFIG_EFI_APP |
| 24 | reloc_ofs = (unsigned long)image_base; |
| 25 | #endif |
Alexey Brodkin | e38d1cb | 2014-12-28 01:35:57 +0300 | [diff] [blame] | 26 | debug("initcall: %p", (char *)*init_fnc_ptr - reloc_ofs); |
| 27 | if (gd->flags & GD_FLG_RELOC) |
| 28 | debug(" (relocated to %p)\n", (char *)*init_fnc_ptr); |
| 29 | else |
| 30 | debug("\n"); |
Simon Glass | aacc6c5 | 2014-10-01 19:57:22 -0600 | [diff] [blame] | 31 | ret = (*init_fnc_ptr)(); |
| 32 | if (ret) { |
| 33 | printf("initcall sequence %p failed at call %p (err=%d)\n", |
Simon Glass | 2f43f85 | 2014-05-20 06:01:43 -0600 | [diff] [blame] | 34 | init_sequence, |
Simon Glass | aacc6c5 | 2014-10-01 19:57:22 -0600 | [diff] [blame] | 35 | (char *)*init_fnc_ptr - reloc_ofs, ret); |
Simon Glass | c8a311d | 2013-03-05 14:39:40 +0000 | [diff] [blame] | 36 | return -1; |
| 37 | } |
| 38 | } |
| 39 | return 0; |
| 40 | } |