Home
last modified time | relevance | path

Searched refs:bootinfo (Results 1 – 13 of 13) sorted by relevance

/f-stack/freebsd/mips/include/
H A Dbootinfo.h57 struct bootinfo { struct
84 extern struct bootinfo bootinfo; argument
/f-stack/freebsd/i386/i386/
H A Dgenassym.c184 ASSYM(BOOTINFO_SIZE, sizeof(struct bootinfo));
185 ASSYM(BI_VERSION, offsetof(struct bootinfo, bi_version));
186 ASSYM(BI_KERNELNAME, offsetof(struct bootinfo, bi_kernelname));
187 ASSYM(BI_NFS_DISKLESS, offsetof(struct bootinfo, bi_nfs_diskless));
188 ASSYM(BI_ENDCOMMON, offsetof(struct bootinfo, bi_endcommon));
190 ASSYM(BI_SIZE, offsetof(struct bootinfo, bi_size));
191 ASSYM(BI_SYMTAB, offsetof(struct bootinfo, bi_symtab));
192 ASSYM(BI_ESYMTAB, offsetof(struct bootinfo, bi_esymtab));
193 ASSYM(BI_KERNEND, offsetof(struct bootinfo, bi_kernend));
H A Dlocore.s73 .globl bootinfo
74 bootinfo: .space BOOTINFO_SIZE /* bootinfo that we can handle */ label
275 movl $bootinfo,%edi
H A Dmachdep.c2184 db_fetch_ksymtab(bootinfo.bi_symtab, bootinfo.bi_esymtab, 0); in i386_kdb_init()
2319 if (bootinfo.bi_modulep) { in init386()
2321 addend = (vm_paddr_t)bootinfo.bi_modulep < KERNBASE ? in init386()
2323 preload_metadata = (caddr_t)bootinfo.bi_modulep + addend; in init386()
2329 if (bootinfo.bi_envp != 0) { in init386()
2330 addend = (vm_paddr_t)bootinfo.bi_envp < KERNBASE ? in init386()
2332 init_static_kenv((char *)bootinfo.bi_envp + addend, 0); in init386()
H A Dpmap_base.c959 init_static_kenv((char *)bootinfo.bi_envp, 0); in pmap_cold()
H A Dpmap.c447 if (bootinfo.bi_esymtab != 0) in __CONCAT()
448 physfree = bootinfo.bi_esymtab; in __CONCAT()
449 if (bootinfo.bi_kernend != 0) in __CONCAT()
450 physfree = bootinfo.bi_kernend; in __CONCAT()
/f-stack/freebsd/i386/include/
H A Dbootinfo.h50 struct bootinfo { struct
80 extern struct bootinfo bootinfo; argument
/f-stack/freebsd/mips/mips/
H A Dmachdep.c173 struct bootinfo bootinfo; variable
263 SYSCTL_STRUCT(_machdep, OID_AUTO, bootinfo, CTLFLAG_RD, &bootinfo,
264 bootinfo, "Bootinfo struct: kernel filename, BIOS harddisk geometry, etc");
/f-stack/freebsd/contrib/device-tree/src/arm/
H A Dmt8127.dtsi50 trustzone-bootinfo@80002000 {
51 compatible = "mediatek,trustzone-bootinfo";
H A Dmt8135.dtsi75 trustzone-bootinfo@80002000 {
76 compatible = "mediatek,trustzone-bootinfo";
H A Dmt2701.dtsi55 trustzone-bootinfo@80002000 {
56 compatible = "mediatek,trustzone-bootinfo";
/f-stack/freebsd/sys/disk/
H A Dvtoc.h79 uint32_t bootinfo[3]; member
/f-stack/freebsd/mips/beri/
H A Dberi_machdep.c173 struct bootinfo *bootinfop; in platform_start()