of.h 747 字节
Newer Older
1 2 3 4 5 6 7 8 9
#ifndef _PPC_BOOT_OF_H_
#define _PPC_BOOT_OF_H_

typedef void *phandle;
typedef void *ihandle;

void of_init(void *promptr);
int of_call_prom(const char *service, int nargs, int nret, ...);
void *of_claim(unsigned long virt, unsigned long size, unsigned long align);
10
void *of_vmlinux_alloc(unsigned long size);
11
void of_exit(void);
12 13 14 15 16
void *of_finddevice(const char *name);
int of_getprop(const void *phandle, const char *name, void *buf,
	       const int buflen);
int of_setprop(const void *phandle, const char *name, const void *buf,
	       const int buflen);
17 18 19 20

/* Console functions */
void of_console_init(void);

21 22
typedef u32			__be32;

23 24 25
#define cpu_to_be32(x) (x)
#define be32_to_cpu(x) (x)

26 27
#define PROM_ERROR (-1u)

28
#endif /* _PPC_BOOT_OF_H_ */