]> git.proxmox.com Git - mirror_edk2.git/blob - MdePkg/Include/IndustryStandard/ElTorito.h
UefiCpuPkg: Move AsmRelocateApLoopStart from Mpfuncs.nasm to AmdSev.nasm
[mirror_edk2.git] / MdePkg / Include / IndustryStandard / ElTorito.h
1 /** @file
2 ElTorito Partitions Format Definition.
3 This file includes some definitions from
4 1. "El Torito" Bootable CD-ROM Format Specification, Version 1.0.
5 2. Volume and File Structure of CDROM for Information Interchange,
6 Standard ECMA-119. (IS0 9660)
7
8 Copyright (c) 2006 - 2018, Intel Corporation. All rights reserved.<BR>
9 SPDX-License-Identifier: BSD-2-Clause-Patent
10
11 **/
12
13 #ifndef _ELTORITO_H_
14 #define _ELTORITO_H_
15
16 //
17 // CDROM_VOLUME_DESCRIPTOR.Types, defined in ISO 9660
18 //
19 #define CDVOL_TYPE_STANDARD 0x0
20 #define CDVOL_TYPE_CODED 0x1
21 #define CDVOL_TYPE_END 0xFF
22
23 ///
24 /// CDROM_VOLUME_DESCRIPTOR.Id
25 ///
26 #define CDVOL_ID "CD001"
27
28 ///
29 /// CDROM_VOLUME_DESCRIPTOR.SystemId
30 ///
31 #define CDVOL_ELTORITO_ID "EL TORITO SPECIFICATION"
32
33 //
34 // Indicator types
35 //
36 #define ELTORITO_ID_CATALOG 0x01
37 #define ELTORITO_ID_SECTION_BOOTABLE 0x88
38 #define ELTORITO_ID_SECTION_NOT_BOOTABLE 0x00
39 #define ELTORITO_ID_SECTION_HEADER 0x90
40 #define ELTORITO_ID_SECTION_HEADER_FINAL 0x91
41
42 //
43 // ELTORITO_CATALOG.Boot.MediaTypes
44 //
45 #define ELTORITO_NO_EMULATION 0x00
46 #define ELTORITO_12_DISKETTE 0x01
47 #define ELTORITO_14_DISKETTE 0x02
48 #define ELTORITO_28_DISKETTE 0x03
49 #define ELTORITO_HARD_DISK 0x04
50
51 #pragma pack(1)
52
53 ///
54 /// CD-ROM Volume Descriptor
55 ///
56 typedef union {
57 struct {
58 UINT8 Type;
59 CHAR8 Id[5]; ///< "CD001"
60 CHAR8 Reserved[82];
61 } Unknown;
62
63 ///
64 /// Boot Record Volume Descriptor, defined in "El Torito" Specification.
65 ///
66 struct {
67 UINT8 Type; ///< Must be 0
68 CHAR8 Id[5]; ///< "CD001"
69 UINT8 Version; ///< Must be 1
70 CHAR8 SystemId[32]; ///< "EL TORITO SPECIFICATION"
71 CHAR8 Unused[32]; ///< Must be 0
72 UINT8 EltCatalog[4]; ///< Absolute pointer to first sector of Boot Catalog
73 CHAR8 Unused2[13]; ///< Must be 0
74 } BootRecordVolume;
75
76 ///
77 /// Primary Volume Descriptor, defined in ISO 9660.
78 ///
79 struct {
80 UINT8 Type;
81 CHAR8 Id[5]; ///< "CD001"
82 UINT8 Version;
83 UINT8 Unused; ///< Must be 0
84 CHAR8 SystemId[32];
85 CHAR8 VolumeId[32];
86 UINT8 Unused2[8]; ///< Must be 0
87 UINT32 VolSpaceSize[2]; ///< the number of Logical Blocks
88 } PrimaryVolume;
89 } CDROM_VOLUME_DESCRIPTOR;
90
91 ///
92 /// Catalog Entry
93 ///
94 typedef union {
95 struct {
96 CHAR8 Reserved[0x20];
97 } Unknown;
98
99 ///
100 /// Catalog validation entry (Catalog header)
101 ///
102 struct {
103 UINT8 Indicator; ///< Must be 01
104 UINT8 PlatformId;
105 UINT16 Reserved;
106 CHAR8 ManufacId[24];
107 UINT16 Checksum;
108 UINT16 Id55AA;
109 } Catalog;
110
111 ///
112 /// Initial/Default Entry or Section Entry
113 ///
114 struct {
115 UINT8 Indicator; ///< 88 = Bootable, 00 = Not Bootable
116 UINT8 MediaType : 4;
117 UINT8 Reserved1 : 4; ///< Must be 0
118 UINT16 LoadSegment;
119 UINT8 SystemType;
120 UINT8 Reserved2; ///< Must be 0
121 UINT16 SectorCount;
122 UINT32 Lba;
123 } Boot;
124
125 ///
126 /// Section Header Entry
127 ///
128 struct {
129 UINT8 Indicator; ///< 90 - Header, more header follw, 91 - Final Header
130 UINT8 PlatformId;
131 UINT16 SectionEntries; ///< Number of section entries following this header
132 CHAR8 Id[28];
133 } Section;
134 } ELTORITO_CATALOG;
135
136 #pragma pack()
137
138 #endif