blob: 726111d7d398b6d8131cec5fe7e5d29a40fceae6 [file] [log] [blame]
mingming leeb9bf3cb2019-12-31 11:29:26 +08001// SPDX-License-Identifier: GPL-2.0
2/*
3 * Copyright (C) 2019 MediaTek Inc.
4 */
5
6#include <common.h>
7#include <dm.h>
8#include <wdt.h>
9
10DECLARE_GLOBAL_DATA_PTR;
11
12int board_init(void)
13{
14 /* address of boot parameters */
15 gd->bd->bi_boot_params = gd->ram_base + 0x100;
16
17 debug("gd->fdt_blob is %p\n", gd->fdt_blob);
18 return 0;
19}