Lines Matching defs:mpp
356 struct multiboot_package_priv *mpp = mbp->mbp_priv;
359 if (mpp->mpp_info_req) {
364 info_req = mpp->mpp_info_req;
378 if (mpp->mpp_address)
381 MPP_OPT(mpp->mpp_address->flags),
382 mpp->mpp_address->header_addr,
383 mpp->mpp_address->load_addr,
384 mpp->mpp_address->load_end_addr,
385 mpp->mpp_address->bss_end_addr);
387 if (mpp->mpp_entry)
389 MPP_OPT(mpp->mpp_entry->flags),
390 mpp->mpp_entry->entry_addr);
392 if (mpp->mpp_console) {
393 int flags = mpp->mpp_console->console_flags;
403 MPP_OPT(mpp->mpp_console->flags),
407 if (mpp->mpp_framebuffer)
409 MPP_OPT(mpp->mpp_framebuffer->flags),
410 mpp->mpp_framebuffer->width,
411 mpp->mpp_framebuffer->height,
412 mpp->mpp_framebuffer->depth);
414 if (mpp->mpp_module_align)
416 MPP_OPT(mpp->mpp_module_align->flags));
418 if (mpp->mpp_efi_bs)
420 MPP_OPT(mpp->mpp_efi_bs->flags));
422 if (mpp->mpp_entry_elf32)
424 MPP_OPT(mpp->mpp_entry_elf32->flags),
425 mpp->mpp_entry_elf32->entry_addr);
427 if (mpp->mpp_entry_elf64)
429 MPP_OPT(mpp->mpp_entry_elf64->flags),
430 mpp->mpp_entry_elf64->entry_addr);
432 if (mpp->mpp_relocatable) {
435 switch (mpp->mpp_relocatable->preference) {
444 MPP_OPT(mpp->mpp_relocatable->flags),
445 mpp->mpp_relocatable->min_addr,
446 mpp->mpp_relocatable->max_addr,
447 mpp->mpp_relocatable->align, pref);
1324 struct multiboot_package_priv *mpp = mbp->mbp_priv;
1364 if (mpp->mpp_framebuffer == NULL ||
1365 mpp->mpp_framebuffer->depth != 0)
1374 mpp->mpp_mbi_len = len + MULTIBOOT_TAG_ALIGN;
1375 mpp->mpp_mbi = alloc(mpp->mpp_mbi_len);
1376 mbi = (char *)roundup((vaddr_t)mpp->mpp_mbi, MULTIBOOT_TAG_ALIGN);
1419 if (mpp->mpp_entry)
1420 entry = mpp->mpp_entry->entry_addr;
1423 if (mpp->mpp_entry_elf64)
1424 entry = mpp->mpp_entry_elf64->entry_addr
1427 if (mpp->mpp_entry_elf32)
1428 entry = mpp->mpp_entry_elf32->entry_addr
1431 if (mpp->mpp_efi_bs == NULL)