Lines Matching full:rtas
97 ihandle_t rtas; in ofwfdt_fixups() local
101 * Instantiate and add reservations for RTAS state if present in ofwfdt_fixups()
104 offset = fdt_path_offset(fdtp, "/rtas"); in ofwfdt_fixups()
110 node = OF_finddevice("/rtas"); in ofwfdt_fixups()
112 OF_getencprop(node, "rtas-size", &len, sizeof(len)); in ofwfdt_fixups()
117 /* Instantiate RTAS */ in ofwfdt_fixups()
118 rtas = OF_open(path); in ofwfdt_fixups()
120 OF_call_method("instantiate-rtas", rtas, 1, 1, (cell_t)rtasmem, in ofwfdt_fixups()
125 fdt_setprop(fdtp, offset, "linux,rtas-entry", &base, in ofwfdt_fixups()
128 offset = fdt_path_offset(fdtp, "/rtas"); in ofwfdt_fixups()
129 fdt_setprop(fdtp, offset, "linux,rtas-base", &base, in ofwfdt_fixups()
132 /* Mark RTAS private data area reserved */ in ofwfdt_fixups()
138 * OF state. Note that this doesn't work if we need RTAS still, in ofwfdt_fixups()