1 // SPDX-License-Identifier: GPL-2.0-only
3 * Old U-boot compatibility for AmigaOne
5 * Author: Gerhard Pircher (gerhard_pircher@gmx.net)
7 * Based on cuboot-83xx.c
8 * Copyright (c) 2007 Freescale Semiconductor, Inc.
19 static void platform_fixups(void)
21 dt_fixup_memory(bd
.bi_memstart
, bd
.bi_memsize
);
22 dt_fixup_cpu_clocks(bd
.bi_intfreq
, bd
.bi_busfreq
/ 4, bd
.bi_busfreq
);
25 void platform_init(unsigned long r3
, unsigned long r4
, unsigned long r5
,
26 unsigned long r6
, unsigned long r7
)
30 serial_console_init();
31 platform_ops
.fixups
= platform_fixups
;