Path: blob/master/arch/powerpc/boot/cuboot-ebony.c
10817 views
/*1* Old U-boot compatibility for Ebony2*3* Author: David Gibson <[email protected]>4*5* Copyright 2007 David Gibson, IBM Corporatio.6* Based on cuboot-83xx.c, which is:7* Copyright (c) 2007 Freescale Semiconductor, Inc.8*9* This program is free software; you can redistribute it and/or modify it10* under the terms of the GNU General Public License version 2 as published11* by the Free Software Foundation.12*/1314#include "ops.h"15#include "stdio.h"16#include "44x.h"17#include "cuboot.h"1819#define TARGET_4xx20#define TARGET_44x21#include "ppcboot.h"2223static bd_t bd;2425void platform_init(unsigned long r3, unsigned long r4, unsigned long r5,26unsigned long r6, unsigned long r7)27{28CUBOOT_INIT();29ebony_init(&bd.bi_enetaddr, &bd.bi_enet1addr);30}313233