License cleanup: add SPDX GPL-2.0 license identifier to files with no license
[linux-block.git] / arch / powerpc / boot / of.h
CommitLineData
b2441318 1/* SPDX-License-Identifier: GPL-2.0 */
2e601613
DG
2#ifndef _PPC_BOOT_OF_H_
3#define _PPC_BOOT_OF_H_
4
98fd433a
CLG
5#include "swab.h"
6
2e601613 7typedef void *phandle;
64130109 8typedef u32 ihandle;
2e601613
DG
9
10void of_init(void *promptr);
11int of_call_prom(const char *service, int nargs, int nret, ...);
034e55e6
CLG
12unsigned int of_claim(unsigned long virt, unsigned long size,
13 unsigned long align);
08464712 14void *of_vmlinux_alloc(unsigned long size);
2e601613 15void of_exit(void);
08464712
DG
16void *of_finddevice(const char *name);
17int of_getprop(const void *phandle, const char *name, void *buf,
18 const int buflen);
19int of_setprop(const void *phandle, const char *name, const void *buf,
20 const int buflen);
2e601613
DG
21
22/* Console functions */
23void of_console_init(void);
24
f1ec7187 25typedef u16 __be16;
fed23ed7 26typedef u32 __be32;
f1ec7187 27typedef u64 __be64;
fed23ed7 28
98fd433a 29#ifdef __LITTLE_ENDIAN__
6c87b220
JK
30#define cpu_to_be16(x) swab16(x)
31#define be16_to_cpu(x) swab16(x)
98fd433a
CLG
32#define cpu_to_be32(x) swab32(x)
33#define be32_to_cpu(x) swab32(x)
6c87b220
JK
34#define cpu_to_be64(x) swab64(x)
35#define be64_to_cpu(x) swab64(x)
98fd433a 36#else
6c87b220
JK
37#define cpu_to_be16(x) (x)
38#define be16_to_cpu(x) (x)
926e6940
CLG
39#define cpu_to_be32(x) (x)
40#define be32_to_cpu(x) (x)
6c87b220
JK
41#define cpu_to_be64(x) (x)
42#define be64_to_cpu(x) (x)
98fd433a 43#endif
926e6940 44
9cc36bb0
CLG
45#define PROM_ERROR (-1u)
46
2e601613 47#endif /* _PPC_BOOT_OF_H_ */