Lines Matching refs:boot_args_ptr
417 boot_args *boot_args_ptr = (boot_args *) args; in PE_init_platform() local
422 PE_state.bootArgs = boot_args_ptr; in PE_init_platform()
423 PE_state.deviceTreeHead = boot_args_ptr->deviceTreeP; in PE_init_platform()
424 PE_state.deviceTreeSize = boot_args_ptr->deviceTreeLength; in PE_init_platform()
425 PE_state.video.v_baseAddr = boot_args_ptr->Video.v_baseAddr; in PE_init_platform()
426 PE_state.video.v_rowBytes = boot_args_ptr->Video.v_rowBytes; in PE_init_platform()
427 PE_state.video.v_width = boot_args_ptr->Video.v_width; in PE_init_platform()
428 PE_state.video.v_height = boot_args_ptr->Video.v_height; in PE_init_platform()
429 …PE_state.video.v_depth = (boot_args_ptr->Video.v_depth >> kBootVideoDepthDepthShift) & kBootVideoD… in PE_init_platform()
431 …((boot_args_ptr->Video.v_depth >> kBootVideoDepthRotateShift) & kBootVideoDepthMask) + // rotat… in PE_init_platform()
432 …((boot_args_ptr->Video.v_depth >> kBootVideoDepthBootRotateShift) & kBootVideoDepthMask) // add e… in PE_init_platform()
434 …PE_state.video.v_scale = ((boot_args_ptr->Video.v_depth >> kBootVideoDepthScaleShift) & kBootVideo… in PE_init_platform()
435 PE_state.video.v_display = boot_args_ptr->Video.v_display; in PE_init_platform()
445 pe_identify_machine(boot_args_ptr); in PE_init_platform()