Merge tag 'platform-drivers-x86-v5.3-3' of git://git.infradead.org/linux-platform...
[linux-2.6-block.git] / arch / powerpc / boot / cuboot.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
85aecac8
DG
2#ifndef _PPC_BOOT_CUBOOT_H_
3#define _PPC_BOOT_CUBOOT_H_
4
5void 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_ */