blob: 24487712e0b1915368f96a3a74ba362ff42fdbbd [file] [log] [blame]
Andres Salomonfd699c72010-06-18 17:46:53 -04001#ifndef _ASM_X86_OLPC_OFW_H
2#define _ASM_X86_OLPC_OFW_H
3
4/* index into the page table containing the entry OFW occupies */
5#define OLPC_OFW_PDE_NR 1022
6
7#define OLPC_OFW_SIG 0x2057464F /* aka "OFW " */
8
Thomas Gleixner939d5782011-02-23 11:46:01 +01009#ifdef CONFIG_OLPC
10
Andres Salomonc10d1e22010-11-17 06:09:52 +000011extern bool olpc_ofw_is_installed(void);
12
Andres Salomonfd699c72010-06-18 17:46:53 -040013/* run an OFW command by calling into the firmware */
14#define olpc_ofw(name, args, res) \
15 __olpc_ofw((name), ARRAY_SIZE(args), args, ARRAY_SIZE(res), res)
16
Andres Salomon54e5bc022010-06-28 22:00:29 -040017extern int __olpc_ofw(const char *name, int nr_args, const void **args, int nr_res,
Andres Salomonfd699c72010-06-18 17:46:53 -040018 void **res);
19
20/* determine whether OFW is available and lives in the proper memory */
21extern void olpc_ofw_detect(void);
22
23/* install OFW's pde permanently into the kernel's pgtable */
24extern void setup_olpc_ofw_pgd(void);
25
Daniel Drake3e3c4862010-09-23 17:28:46 +010026/* check if OFW was detected during boot */
27extern bool olpc_ofw_present(void);
28
Daniel Drake45bb1672011-03-13 15:10:17 +000029extern void olpc_dt_build_devicetree(void);
30
Thomas Gleixner939d5782011-02-23 11:46:01 +010031#else /* !CONFIG_OLPC */
32static inline void olpc_ofw_detect(void) { }
33static inline void setup_olpc_ofw_pgd(void) { }
Andres Salomonc10d1e22010-11-17 06:09:52 +000034static inline void olpc_dt_build_devicetree(void) { }
Daniel Drake45bb1672011-03-13 15:10:17 +000035#endif /* !CONFIG_OLPC */
Andres Salomonc10d1e22010-11-17 06:09:52 +000036
Andres Salomonfd699c72010-06-18 17:46:53 -040037#endif /* _ASM_X86_OLPC_OFW_H */