xref: /openbmc/linux/arch/powerpc/boot/cuboot.h (revision b2441318)
1 /* SPDX-License-Identifier: GPL-2.0 */
2 #ifndef _PPC_BOOT_CUBOOT_H_
3 #define _PPC_BOOT_CUBOOT_H_
4 
5 void cuboot_init(unsigned long r4, unsigned long r5,
6 		 unsigned long r6, unsigned long r7,
7 		 unsigned long end_of_ram);
8 
9 #define CUBOOT_INIT() \
10 	do { \
11 		memcpy(&bd, (bd_t *)r3, sizeof(bd)); \
12 		cuboot_init(r4, r5, r6, r7, bd.bi_memstart + bd.bi_memsize); \
13 	} while (0)
14 
15 #endif /* _PPC_BOOT_CUBOOT_H_ */
16