blob: a44f51a7f2a8bfac42dc1915b747deb388e3128d [file] [log] [blame]
Joachim Foerster4279c532011-10-26 14:25:00 +02001/*
2 * (C) Copyright 2011, Missing Link Electronics
3 * Joachim Foerster <joachim@missinglinkelectronics.com>
4 *
5 * Taken from arch/powerpc/cpu/ppc4xx/fdt.c:
6 *
7 * (C) Copyright 2007-2008
8 * Stefan Roese, DENX Software Engineering, sr@denx.de.
9 *
Wolfgang Denk1a459662013-07-08 09:37:19 +020010 * SPDX-License-Identifier: GPL-2.0+
Joachim Foerster4279c532011-10-26 14:25:00 +020011 */
12
13#include <common.h>
14
Robert P. J. Day7ffe3cd2016-05-19 15:23:12 -040015#ifdef CONFIG_OF_BOARD_SETUP
Joachim Foerster4279c532011-10-26 14:25:00 +020016#include <libfdt.h>
Joachim Foerster4279c532011-10-26 14:25:00 +020017#include <fdt_support.h>
18
19DECLARE_GLOBAL_DATA_PTR;
20
Simon Glasse895a4b2014-10-23 18:58:47 -060021int __ft_board_setup(void *blob, bd_t *bd)
Joachim Foerster4279c532011-10-26 14:25:00 +020022{
23 ft_cpu_setup(blob, bd);
Simon Glasse895a4b2014-10-23 18:58:47 -060024
25 return 0;
Joachim Foerster4279c532011-10-26 14:25:00 +020026}
Simon Glasse895a4b2014-10-23 18:58:47 -060027int ft_board_setup(void *blob, bd_t *bd)
Joachim Foerster4279c532011-10-26 14:25:00 +020028 __attribute__((weak, alias("__ft_board_setup")));
29
30void ft_cpu_setup(void *blob, bd_t *bd)
31{
32 /*
33 * Fixup all ethernet nodes
34 * Note: aliases in the dts are required for this
35 */
36 fdt_fixup_ethernet(blob);
Joachim Foerster4279c532011-10-26 14:25:00 +020037}
Robert P. J. Day7ffe3cd2016-05-19 15:23:12 -040038#endif /* CONFIG_OF_BOARD_SETUP */