blob: 8f1dac68e40fa74d29065af56f18822ca8770e5d [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Simon Glassc8a311d2013-03-05 14:39:40 +00002/*
3 * Copyright (c) 2013 The Chromium OS Authors.
Simon Glassc8a311d2013-03-05 14:39:40 +00004 */
5
6#include <common.h>
7#include <initcall.h>
Simon Glassf134ed72015-07-31 09:31:38 -06008#include <efi.h>
Simon Glassc8a311d2013-03-05 14:39:40 +00009
Simon Glass2f43f852014-05-20 06:01:43 -060010DECLARE_GLOBAL_DATA_PTR;
11
12int initcall_run_list(const init_fnc_t init_sequence[])
Simon Glassc8a311d2013-03-05 14:39:40 +000013{
Simon Glass2f43f852014-05-20 06:01:43 -060014 const init_fnc_t *init_fnc_ptr;
Simon Glassc8a311d2013-03-05 14:39:40 +000015
16 for (init_fnc_ptr = init_sequence; *init_fnc_ptr; ++init_fnc_ptr) {
Simon Glass2f43f852014-05-20 06:01:43 -060017 unsigned long reloc_ofs = 0;
Simon Glassaacc6c52014-10-01 19:57:22 -060018 int ret;
Simon Glass2f43f852014-05-20 06:01:43 -060019
20 if (gd->flags & GD_FLG_RELOC)
21 reloc_ofs = gd->reloc_off;
Simon Glassf134ed72015-07-31 09:31:38 -060022#ifdef CONFIG_EFI_APP
23 reloc_ofs = (unsigned long)image_base;
24#endif
Alexey Brodkine38d1cb2014-12-28 01:35:57 +030025 debug("initcall: %p", (char *)*init_fnc_ptr - reloc_ofs);
26 if (gd->flags & GD_FLG_RELOC)
27 debug(" (relocated to %p)\n", (char *)*init_fnc_ptr);
28 else
29 debug("\n");
Simon Glassaacc6c52014-10-01 19:57:22 -060030 ret = (*init_fnc_ptr)();
31 if (ret) {
32 printf("initcall sequence %p failed at call %p (err=%d)\n",
Simon Glass2f43f852014-05-20 06:01:43 -060033 init_sequence,
Simon Glassaacc6c52014-10-01 19:57:22 -060034 (char *)*init_fnc_ptr - reloc_ofs, ret);
Simon Glassc8a311d2013-03-05 14:39:40 +000035 return -1;
36 }
37 }
38 return 0;
39}