Lines Matching refs:boot_args_ptr
405 boot_args *boot_args_ptr = (boot_args *) args; in PE_init_platform() local
410 PE_state.bootArgs = boot_args_ptr; in PE_init_platform()
411 PE_state.deviceTreeHead = boot_args_ptr->deviceTreeP; in PE_init_platform()
412 PE_state.deviceTreeSize = boot_args_ptr->deviceTreeLength; in PE_init_platform()
413 PE_state.video.v_baseAddr = boot_args_ptr->Video.v_baseAddr; in PE_init_platform()
414 PE_state.video.v_rowBytes = boot_args_ptr->Video.v_rowBytes; in PE_init_platform()
415 PE_state.video.v_width = boot_args_ptr->Video.v_width; in PE_init_platform()
416 PE_state.video.v_height = boot_args_ptr->Video.v_height; in PE_init_platform()
417 …PE_state.video.v_depth = (boot_args_ptr->Video.v_depth >> kBootVideoDepthDepthShift) & kBootVideoD… in PE_init_platform()
419 …((boot_args_ptr->Video.v_depth >> kBootVideoDepthRotateShift) & kBootVideoDepthMask) + // rotat… in PE_init_platform()
420 …((boot_args_ptr->Video.v_depth >> kBootVideoDepthBootRotateShift) & kBootVideoDepthMask) // add e… in PE_init_platform()
422 …PE_state.video.v_scale = ((boot_args_ptr->Video.v_depth >> kBootVideoDepthScaleShift) & kBootVideo… in PE_init_platform()
423 PE_state.video.v_display = boot_args_ptr->Video.v_display; in PE_init_platform()
433 pe_identify_machine(boot_args_ptr); in PE_init_platform()