blob: 714274415c9f2e3ab21783f3e0806c466908d84d [file] [log] [blame]
Simon Glassc8a311d2013-03-05 14:39:40 +00001/*
2 * Copyright (c) 2013 The Chromium OS Authors.
3 *
Wolfgang Denk1a459662013-07-08 09:37:19 +02004 * SPDX-License-Identifier: GPL-2.0+
Simon Glassc8a311d2013-03-05 14:39:40 +00005 */
6
7#include <common.h>
8#include <initcall.h>
9
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;
Alexey Brodkine38d1cb2014-12-28 01:35:57 +030022 debug("initcall: %p", (char *)*init_fnc_ptr - reloc_ofs);
23 if (gd->flags & GD_FLG_RELOC)
24 debug(" (relocated to %p)\n", (char *)*init_fnc_ptr);
25 else
26 debug("\n");
Simon Glassaacc6c52014-10-01 19:57:22 -060027 ret = (*init_fnc_ptr)();
28 if (ret) {
29 printf("initcall sequence %p failed at call %p (err=%d)\n",
Simon Glass2f43f852014-05-20 06:01:43 -060030 init_sequence,
Simon Glassaacc6c52014-10-01 19:57:22 -060031 (char *)*init_fnc_ptr - reloc_ofs, ret);
Simon Glassc8a311d2013-03-05 14:39:40 +000032 return -1;
33 }
34 }
35 return 0;
36}