]> git.karo-electronics.de Git - karo-tx-linux.git/blob - arch/powerpc/boot/of.h
powerpc/boot: Define typedef ihandle as u32
[karo-tx-linux.git] / arch / powerpc / boot / of.h
1 #ifndef _PPC_BOOT_OF_H_
2 #define _PPC_BOOT_OF_H_
3
4 typedef void *phandle;
5 typedef u32 ihandle;
6
7 void of_init(void *promptr);
8 int of_call_prom(const char *service, int nargs, int nret, ...);
9 unsigned int of_claim(unsigned long virt, unsigned long size,
10         unsigned long align);
11 void *of_vmlinux_alloc(unsigned long size);
12 void of_exit(void);
13 void *of_finddevice(const char *name);
14 int of_getprop(const void *phandle, const char *name, void *buf,
15                const int buflen);
16 int of_setprop(const void *phandle, const char *name, const void *buf,
17                const int buflen);
18
19 /* Console functions */
20 void of_console_init(void);
21
22 typedef u32                     __be32;
23
24 #define cpu_to_be32(x) (x)
25 #define be32_to_cpu(x) (x)
26
27 #define PROM_ERROR (-1u)
28
29 #endif /* _PPC_BOOT_OF_H_ */