// SPDX-License-Identifier: GPL-2.0-only1/*2* Old U-boot compatibility for Ebony3*4* Author: David Gibson <[email protected]>5*6* Copyright 2007 David Gibson, IBM Corporatio.7* Based on cuboot-83xx.c, which is:8* Copyright (c) 2007 Freescale Semiconductor, Inc.9*/1011#include "ops.h"12#include "stdio.h"13#include "44x.h"14#include "cuboot.h"1516#define TARGET_4xx17#define TARGET_44x18#include "ppcboot.h"1920static bd_t bd;2122void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,23unsigned long r6, unsigned long r7)24{25CUBOOT_INIT();26ebony_init(&bd.bi_enetaddr, &bd.bi_enet1addr);27}282930