]> git.proxmox.com Git - mirror_ubuntu-kernels.git/blob - arch/powerpc/boot/cuboot.h
License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[mirror_ubuntu-kernels.git] / arch / powerpc / boot / cuboot.h
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_ */