Home
last modified time | relevance | path

Searched refs:rsdp (Results 1 – 10 of 10) sorted by relevance

/titanic_51/usr/src/boot/sys/boot/i386/libi386/
H A Dbiosacpi.c46 ACPI_TABLE_RSDP *rsdp; variable
59 if ((rsdp = biosacpi_find_rsdp()) == NULL) in biosacpi_detect()
63 sprintf(buf, "0x%08x", (unsigned int)VTOP(rsdp)); in biosacpi_detect()
64 setenv("acpi.rsdp", buf, 1); in biosacpi_detect()
65 revision = rsdp->Revision; in biosacpi_detect()
70 strncpy(buf, rsdp->OemId, sizeof(rsdp->OemId)); in biosacpi_detect()
71 buf[sizeof(rsdp->OemId)] = '\0'; in biosacpi_detect()
73 sprintf(buf, "0x%08x", rsdp->RsdtPhysicalAddress); in biosacpi_detect()
78 (unsigned long long)rsdp in biosacpi_detect()
91 ACPI_TABLE_RSDP *rsdp; biosacpi_find_rsdp() local
110 ACPI_TABLE_RSDP *rsdp; biosacpi_search_rsdp() local
[all...]
/titanic_51/usr/src/boot/sys/boot/efi/loader/
H A Dacpi.c30 ACPI_TABLE_RSDP *rsdp; variable
40 if ((rsdp = efi_get_table(&acpi20_guid)) == NULL) in acpi_detect()
41 rsdp = efi_get_table(&acpi_guid); in acpi_detect()
43 if (rsdp == NULL) in acpi_detect()
48 snprintf(buf, sizeof (buf), "0x%016llx", (unsigned long long)rsdp); in acpi_detect()
50 snprintf(buf, sizeof (buf), "0x%08x", (unsigned int)rsdp); in acpi_detect()
52 setenv("acpi.rsdp", buf, 1); in acpi_detect()
53 revision = rsdp->Revision; in acpi_detect()
58 strncpy(buf, rsdp->OemId, sizeof(rsdp in acpi_detect()
[all...]
/titanic_51/usr/src/boot/sys/boot/efi/loader/arch/arm64/
H A Dexec.c76 ACPI_TABLE_RSDP *rsdp; in elf64_exec() local
82 rsdp = efi_get_table(&acpi20_guid); in elf64_exec()
83 if (rsdp == NULL) { in elf64_exec()
84 rsdp = efi_get_table(&acpi_guid); in elf64_exec()
86 if (rsdp != NULL) { in elf64_exec()
87 sprintf(buf, "0x%016llx", (unsigned long long)rsdp); in elf64_exec()
88 setenv("hint.acpi.0.rsdp", buf, 1); in elf64_exec()
89 revision = rsdp->Revision; in elf64_exec()
94 strncpy(buf, rsdp->OemId, sizeof(rsdp in elf64_exec()
[all...]
/titanic_51/usr/src/boot/sys/boot/efi/loader/arch/amd64/
H A Delf64_freebsd.c100 ACPI_TABLE_RSDP *rsdp; in elf64_exec() local
104 rsdp = efi_get_table(&acpi20_guid); in elf64_exec()
105 if (rsdp == NULL) { in elf64_exec()
106 rsdp = efi_get_table(&acpi_guid); in elf64_exec()
108 if (rsdp != NULL) { in elf64_exec()
109 sprintf(buf, "0x%016llx", (unsigned long long)rsdp); in elf64_exec()
110 setenv("hint.acpi.0.rsdp", buf, 1); in elf64_exec()
111 revision = rsdp->Revision; in elf64_exec()
116 strncpy(buf, rsdp->OemId, sizeof(rsdp in elf64_exec()
[all...]
/titanic_51/usr/src/boot/sys/boot/common/
H A Dmultiboot2.c62 extern ACPI_TABLE_RSDP *rsdp;
766 if (rsdp != NULL) { in mbi_size()
767 if (rsdp->Revision == 0) { in mbi_size()
772 rsdp->Length; in mbi_size()
1016 if (rsdp != NULL) { in multiboot2_exec()
1021 if (rsdp->Revision == 0) { in multiboot2_exec()
1026 memcpy(otag->mb_rsdp, rsdp, sizeof (ACPI_RSDP_COMMON)); in multiboot2_exec()
1028 tsize = sizeof (*ntag) + rsdp->Length; in multiboot2_exec()
1032 memcpy(ntag->mb_rsdp, rsdp, rsdp in multiboot2_exec()
[all...]
/titanic_51/usr/src/uts/i86pc/os/
H A Dfakebop.c2195 ACPI_TABLE_RSDP *rsdp; in find_rsdp() local
2204 rsdp = scan_rsdp(rsdp_val, rsdp_val + sizeof (*rsdp)); in find_rsdp()
2205 if (rsdp != NULL) { in find_rsdp()
2209 "0x%p\n", (void *)rsdp); in find_rsdp()
2211 return (rsdp); in find_rsdp()
2222 rsdp = scan_rsdp(ebda_addr, ebda_addr + ACPI_EBDA_WINDOW_SIZE); in find_rsdp()
2223 if (rsdp == NULL) in find_rsdp()
2225 rsdp = scan_rsdp(ACPI_HI_RSDP_WINDOW_BASE, in find_rsdp()
2227 return (rsdp); in find_rsdp()
2252 ACPI_TABLE_RSDP *rsdp; find_fw_table() local
[all...]
/titanic_51/usr/src/cmd/sgs/libld/common/
H A Dsyms.c2045 Sym_desc *rsdp; in ld_sym_process() local
2092 rsdp = sdp = NULL; in ld_sym_process()
2098 rsdp = (*ld_targ.t_ms.ms_reg_find)(sym, ofl); in ld_sym_process()
2099 if (rsdp != 0) { in ld_sym_process()
2107 (rsdp, sym, name, ifl, ofl); in ld_sym_process()
2131 if (rsdp == NULL) { in ld_sym_process()
2169 if ((rsdp == NULL) && in ld_sym_process()
2668 Sym_desc *rsdp; in ld_sym_process() local
2674 rsdp = (*ld_targ.t_ms.ms_reg_find)(sdp->sd_sym, ofl); in ld_sym_process()
2675 if (rsdp == NULL) { in ld_sym_process()
[all …]
H A Drelocate.c119 Sym_desc *rsdp; in is_disp_copied() local
156 rsdp = ifl->ifl_oldndx[rstndx]; in is_disp_copied()
157 if (rsdp == sdp) { in is_disp_copied()
158 if ((str = demangle(rsdp->sd_name)) != in is_disp_copied()
159 rsdp->sd_name) { in is_disp_copied()
198 ifl->ifl_name, demangle(rsdp->sd_name), str, in is_disp_copied()
236 Sym_desc *tsdp, *rsdp; in disp_scansyms() local
263 rsdp = rld->rel_sym; in disp_scansyms()
264 rsym = rsdp->sd_sym; in disp_scansyms()
H A Dupdate.c479 Sym_desc *rsdp; in update_osym() local
481 if ((rsdp = ofl->ofl_regsyms[ndx]) == NULL) in update_osym()
484 if (!SYM_IS_HIDDEN(rsdp) && in update_osym()
485 (ELF_ST_BIND(rsdp->sd_sym->st_info) != STB_LOCAL)) in update_osym()
488 dynsym[dynsym_ndx] = *(rsdp->sd_sym); in update_osym()
489 rsdp->sd_symndx = *symndx; in update_osym()
492 (void) st_setstring(dynstr, rsdp->sd_name, in update_osym()
/titanic_51/usr/src/boot/sys/boot/forth/
H A Dmenu.4th152 s" hint.acpi.0.rsdp" getenv