SlideShare ist ein Scribd-Unternehmen logo
1 von 30
Unified Extensible Firmware
Interface
What is Extensible Firmware Interface (EFI)
The Extensible Firmware Interface (EFI) is a
specification that defines a software interface between
an operating system and platform firmware.
EFI is a replacement for older BIOS firmware interface
present in all IBM PC – compatible personal computers.

2
Position of EFI

3
What is firmware…?
Installed with a computer
(PROM/EEPROM)
Initializes low level hardware

in

a

non-volatile

location

 Initializes memory controller timings, powers on critical boot devices.

Hands off control to operating system loader
 Operating system loader uses firmware interfaces to initialize the
operating system.

Referred to as pre-boot firmware
 Examples: BIOS and EFI.
4
BIOS firmware (de-facto standard)
Mechanism used to boot PCs for the last 25+ years
 All x86/x64 architecture machines in the market support BIOS firmware.

BIOS has 16-bit architecture
 1 Mb addressable space.

In early systems (16-bit era) BIOS was used for hardware
access
 Operating systems would call the BIOS rather than directly accessing the
hardware (ex. MS-DOS).

5
BIOS firmware (cont.)
In 32-bit era OSs instead generally directly accessed the
hardware using their own device drivers
Role of BIOS has changed over time
 Primarily used for booting a system.
 Also for certain additional features like Power Management(ACPI), Video
Initialization(X.org), hot swapping.

6
BIOS limitations
BIOS is a real mode environment
 16-bit real mode interfaces.

BIOS systems with MBR disks use 32-bit values to
describe the starting offset and length of a partition
 MBR allows a maximum disk size of approx. 2.2 TB and a maximum
of four primary partitions.

7
BIOS limitations (cont.)
BIOS showing its age
 Over 25 years old.
 Documentation is scattered.
 Interfaces have evolved in an ad-hoc manner as technical
advances exposed limitations.

Non – graphical interface
Programmed in hex/assembly code
Regarded as legacy firmware
8
EFI Firmware (Motivation & History)
EFI creation motivated by Itanium bring up



Desire to avoid BIOS limitations in a brand new high end architecture.
Also designed as a BIOS replacement.

 Initially known as Intel Boot Initiative
 Modern design incorporates twenty five years of progress in
computer science
 Well specified, largely in one self-contained document

9
Transition from EFI to UEFI
The emergence of x64 architecture provides an inflection point
to begin industry wide transition to EFI
To encourage transition, the UEFI Forum was created in 2005,
which is now responsible for EFI development
 Broad industry forum with common goal.
 UEFI version 2.3 published in May 2009.

Forum members :
 AMD, American Megatrends, Apple, Dell, HP, IBM, Insyde Software, Intel,
Lenovo, Microsoft, Phoenix Technologies.
10
Overcoming BIOS limitations
 EFI adds support for a new partition scheme : GUID Partition
Table(GPT)
 Unlimited partitions can be created (W-128).
 Maximum disk and partition size of 9.4 ZB.

 UEFI processor mode can be either 32-bit or 64-bit (long mode)
 Architecture is modular and extensible





More accessible than BIOS
Graphical user interface
Can be programmed in C/C++
EFI interfaces are object oriented
11
Firmware roadmap goals
Enable mainstream 64-bit computing
Achieve firmware independence
Transition away from BIOS to EFI
 Removal of BIOS architectural barriers will enable new scenarios over
time.

Avoid jarring changes during this transition
Support boot of older operating system on UEFI platform
12
Simplifying UEFI transition
Firmware footprint for both 32-bit and 64-bit UEFI
implementations on same machines is cost prohibitive
Nearly all processors are 64-bit capable
 64-bit computing is the wave of the future

Little motivation to support 32-bit UEFI boot
 32-bit systems most boot Windows via BIOS

Differences between UEFI and BIOS environments are
abstracted from the end user wherever possible
13
Overall view of boot time line

14
Understanding GPT
GUID Partition Table (GPT) partitioning is required for
UEFI boot





Partition table information stored in GPT header.
Stores MBR entry in first sector of disk.
Uses Logical Block Addressing.
Provides redundancy, writing header and partition table both at beginning
and end.

15
GPT disk partitioning

16
A new partition
EFI System Partition (ESP)
 Formatted using FAT variant.
 Contains the boot loader program, device driver files.
 System utility programs that are intended to run before OS is booted.

17
Disk Partitioning in MBR
Partition length & partition start address stored as 32-bit
quantities
Sector size 2^9 = 512 bytes
Neither max. partition size, nor max. start address can
exceed
 2^9 * 2^32 = 2^41 bytes.
 2 * 2^40 = 2 TiB.

18
…in GPT
512 byte sector
 2^64 * 2^9 = 2^73
 2^73 = 9.4 ZiB

…warning from Apple Inc.
 “Do not assume that the block size is always going to be 512 bytes”.

Hardware manufacturers are completing the transition to
4096-byte sectors
 2^64 * 2^12 = 2^76

19
Logical Block Addressing
Common scheme for specifying the location of blocks of
data
Particularly simple linear addressing scheme
Introduced as an abstraction
In 2002, ATA-6 introduced 48-bit LBA

20
Conversion between CHS & LBA
LBA = ((C * HPC) + H) * SPT + S – 1





C,H & S are cylinder no., head no., sector no.
LBA is the logical block address.
HPC is the no. of heads per cylinder.
SPT is the no. of sectors per track.

S = (LBA mod SPT) + 1
H = (LBA / SPT) mod HPC
C = LBA / (SPT * HPC)
21
UEFI only installs on UEFI
To install via EFI requires that the installation be booted
via EFI (vice-versa)
The OS installer must configure the ESP, including OS
metadata(boot options)
Once the OS is installed via EFI it can only boot via EFI
 Booting via BIOS cannot access the metadata on the ESP.

22
Optimized Performance…

23
Performance (cont.)

24
Performance (cont.)

25
Advantages of UEFI
Reduce 16-bit code from boot environment
Embrace 64-bit native code for x64 arch.
Specified standard for booting an OS
Engineering agility in pre-operating system space
 Clean, architected interfaces.
 Active industry standard working group.

Move beyond legacy BIOS
 Improved boot graphics.
 Faster network boot performance.
26
UEFI Implementation
Microsoft Windows





Windows XP 64-bit.
Windows server 2008 for x64 and Intel Itanium based platform.
Windows 7.
64-bit windows versions only.

Apple Macintosh
 Intel based Macs.
 Since Mac OS X v10.4 (Tiger).

Linux platforms
 Used since early 2000, using elilo.
 EFI versions of GRUB are available.
27
UEFI and the Industry
 11 Promoters
 20+ Contributors
 70+ Adopters

100
80
60
40
20
0
2006

2007

UEFI Framework
Based %

2008

2009

2010

Legacy Based %

28
Q&A

29
Thank you

30

Weitere ähnliche Inhalte

Was ist angesagt?

Chapter 3 Motherboard and BIOS
Chapter 3 Motherboard and BIOSChapter 3 Motherboard and BIOS
Chapter 3 Motherboard and BIOS
askme
 
Uboot startup sequence
Uboot startup sequenceUboot startup sequence
Uboot startup sequence
Houcheng Lin
 
Embedded_Linux_Booting
Embedded_Linux_BootingEmbedded_Linux_Booting
Embedded_Linux_Booting
Rashila Rr
 

Was ist angesagt? (20)

Chapter 3 Motherboard and BIOS
Chapter 3 Motherboard and BIOSChapter 3 Motherboard and BIOS
Chapter 3 Motherboard and BIOS
 
BIOS basic input output system
BIOS basic input output systemBIOS basic input output system
BIOS basic input output system
 
Bios
BiosBios
Bios
 
Bios ( Basic Input Output System )
Bios ( Basic Input Output System )Bios ( Basic Input Output System )
Bios ( Basic Input Output System )
 
Bios
BiosBios
Bios
 
Bios
BiosBios
Bios
 
Boot process: BIOS vs UEFI
Boot process: BIOS vs UEFIBoot process: BIOS vs UEFI
Boot process: BIOS vs UEFI
 
Booting process by Amar singh
Booting process by Amar singhBooting process by Amar singh
Booting process by Amar singh
 
Motherboard
MotherboardMotherboard
Motherboard
 
Uboot startup sequence
Uboot startup sequenceUboot startup sequence
Uboot startup sequence
 
BIOS AND OS
BIOS AND OSBIOS AND OS
BIOS AND OS
 
Bootloaders
BootloadersBootloaders
Bootloaders
 
Beeps sound presentation
Beeps sound presentationBeeps sound presentation
Beeps sound presentation
 
Dual boot
Dual bootDual boot
Dual boot
 
Bootloaders (U-Boot)
Bootloaders (U-Boot) Bootloaders (U-Boot)
Bootloaders (U-Boot)
 
Motherboard
MotherboardMotherboard
Motherboard
 
U Boot or Universal Bootloader
U Boot or Universal BootloaderU Boot or Universal Bootloader
U Boot or Universal Bootloader
 
BOOTABLE OPERATING SYSTEM PPT
BOOTABLE OPERATING SYSTEM PPTBOOTABLE OPERATING SYSTEM PPT
BOOTABLE OPERATING SYSTEM PPT
 
Bios and cmos
Bios and cmosBios and cmos
Bios and cmos
 
Embedded_Linux_Booting
Embedded_Linux_BootingEmbedded_Linux_Booting
Embedded_Linux_Booting
 

Andere mochten auch (7)

Grub
GrubGrub
Grub
 
UEFI Spec Version 2.4 Facilitates Secure Update
UEFI Spec Version 2.4 Facilitates Secure UpdateUEFI Spec Version 2.4 Facilitates Secure Update
UEFI Spec Version 2.4 Facilitates Secure Update
 
Bios uefi y legacy
Bios uefi y legacyBios uefi y legacy
Bios uefi y legacy
 
Description of GRUB 2
Description of GRUB 2Description of GRUB 2
Description of GRUB 2
 
Implementing a UEFI BIOS into an Embedded System
Implementing a UEFI BIOS into an Embedded SystemImplementing a UEFI BIOS into an Embedded System
Implementing a UEFI BIOS into an Embedded System
 
Real time Operating System
Real time Operating SystemReal time Operating System
Real time Operating System
 
Real Time OS For Embedded Systems
Real Time OS For Embedded SystemsReal Time OS For Embedded Systems
Real Time OS For Embedded Systems
 

Ähnlich wie Unified Extensible Firmware Interface (UEFI)

Bootkits: past, present & future
Bootkits: past, present & futureBootkits: past, present & future
Bootkits: past, present & future
Alex Matrosov
 
group6 report
group6  reportgroup6  report
group6 report
group6ait
 
my Windows 7 info
my Windows 7 infomy Windows 7 info
my Windows 7 info
isky guard
 

Ähnlich wie Unified Extensible Firmware Interface (UEFI) (20)

07. Mainboard (System Board, Motherboard)
07. Mainboard (System Board, Motherboard)07. Mainboard (System Board, Motherboard)
07. Mainboard (System Board, Motherboard)
 
Bootkits: past, present & future
Bootkits: past, present & futureBootkits: past, present & future
Bootkits: past, present & future
 
1 study of motherboard
1 study of motherboard1 study of motherboard
1 study of motherboard
 
Review paper on bios vs uefi
Review  paper on bios vs uefiReview  paper on bios vs uefi
Review paper on bios vs uefi
 
05 - BIOS.ppt
05 - BIOS.ppt05 - BIOS.ppt
05 - BIOS.ppt
 
BIOS Basics of the digital computer systems
BIOS Basics of the digital computer systemsBIOS Basics of the digital computer systems
BIOS Basics of the digital computer systems
 
Raj Amrutiya PPT.pptx
Raj Amrutiya PPT.pptxRaj Amrutiya PPT.pptx
Raj Amrutiya PPT.pptx
 
101 1.1 hardware settings
101 1.1 hardware settings101 1.1 hardware settings
101 1.1 hardware settings
 
mother-board-and-bios.ppt
mother-board-and-bios.pptmother-board-and-bios.ppt
mother-board-and-bios.ppt
 
Bootkits: Past, Present & Future - Virus Bulletin
Bootkits: Past, Present & Future - Virus BulletinBootkits: Past, Present & Future - Virus Bulletin
Bootkits: Past, Present & Future - Virus Bulletin
 
OS_Intro_Chap_1.ppt
OS_Intro_Chap_1.pptOS_Intro_Chap_1.ppt
OS_Intro_Chap_1.ppt
 
ROM BIOS & POST
ROM BIOS & POSTROM BIOS & POST
ROM BIOS & POST
 
ROM BIOS & POST
ROM BIOS & POSTROM BIOS & POST
ROM BIOS & POST
 
Ite pc v40_chapter5
Ite pc v40_chapter5Ite pc v40_chapter5
Ite pc v40_chapter5
 
docslide-3df5a529-2ffd-ef23.ppt
docslide-3df5a529-2ffd-ef23.pptdocslide-3df5a529-2ffd-ef23.ppt
docslide-3df5a529-2ffd-ef23.ppt
 
Computer hardware and networking by Pradeep Kudale
Computer hardware and networking by Pradeep KudaleComputer hardware and networking by Pradeep Kudale
Computer hardware and networking by Pradeep Kudale
 
Booting UEFI-aware OS on coreboot enabled platform - "In God's Name, Why?"
Booting UEFI-aware OS on coreboot enabled platform - "In God's Name, Why?"Booting UEFI-aware OS on coreboot enabled platform - "In God's Name, Why?"
Booting UEFI-aware OS on coreboot enabled platform - "In God's Name, Why?"
 
group6 report
group6  reportgroup6  report
group6 report
 
Slimline Open Firmware
Slimline Open FirmwareSlimline Open Firmware
Slimline Open Firmware
 
my Windows 7 info
my Windows 7 infomy Windows 7 info
my Windows 7 info
 

Mehr von k33a (7)

Audit Principles
Audit PrinciplesAudit Principles
Audit Principles
 
An Overview of Consumer Privacy Regulations for TSPs in India
An Overview of Consumer Privacy Regulations for TSPs in IndiaAn Overview of Consumer Privacy Regulations for TSPs in India
An Overview of Consumer Privacy Regulations for TSPs in India
 
Security Information and Event Management (SIEM)
Security Information and Event Management (SIEM)Security Information and Event Management (SIEM)
Security Information and Event Management (SIEM)
 
Transmission Control Protocol (TCP)
Transmission Control Protocol (TCP)Transmission Control Protocol (TCP)
Transmission Control Protocol (TCP)
 
Trusted Platform Module (TPM)
Trusted Platform Module (TPM)Trusted Platform Module (TPM)
Trusted Platform Module (TPM)
 
Bring Your Own Device (BYOD)
Bring Your Own Device (BYOD)Bring Your Own Device (BYOD)
Bring Your Own Device (BYOD)
 
The Communist Manifesto
The Communist ManifestoThe Communist Manifesto
The Communist Manifesto
 

Kürzlich hochgeladen

Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
Chris Hunter
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
kauryashika82
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
QucHHunhnh
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
SanaAli374401
 

Kürzlich hochgeladen (20)

Z Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot GraphZ Score,T Score, Percential Rank and Box Plot Graph
Z Score,T Score, Percential Rank and Box Plot Graph
 
Unit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptxUnit-V; Pricing (Pharma Marketing Management).pptx
Unit-V; Pricing (Pharma Marketing Management).pptx
 
Introduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The BasicsIntroduction to Nonprofit Accounting: The Basics
Introduction to Nonprofit Accounting: The Basics
 
Application orientated numerical on hev.ppt
Application orientated numerical on hev.pptApplication orientated numerical on hev.ppt
Application orientated numerical on hev.ppt
 
This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.This PowerPoint helps students to consider the concept of infinity.
This PowerPoint helps students to consider the concept of infinity.
 
Measures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and ModeMeasures of Central Tendency: Mean, Median and Mode
Measures of Central Tendency: Mean, Median and Mode
 
Making and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdfMaking and Justifying Mathematical Decisions.pdf
Making and Justifying Mathematical Decisions.pdf
 
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17  How to Extend Models Using Mixin ClassesMixin Classes in Odoo 17  How to Extend Models Using Mixin Classes
Mixin Classes in Odoo 17 How to Extend Models Using Mixin Classes
 
Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104Nutritional Needs Presentation - HLTH 104
Nutritional Needs Presentation - HLTH 104
 
Unit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptxUnit-IV- Pharma. Marketing Channels.pptx
Unit-IV- Pharma. Marketing Channels.pptx
 
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in DelhiRussian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
Russian Escort Service in Delhi 11k Hotel Foreigner Russian Call Girls in Delhi
 
Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024Mehran University Newsletter Vol-X, Issue-I, 2024
Mehran University Newsletter Vol-X, Issue-I, 2024
 
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
SECOND SEMESTER TOPIC COVERAGE SY 2023-2024 Trends, Networks, and Critical Th...
 
1029 - Danh muc Sach Giao Khoa 10 . pdf
1029 -  Danh muc Sach Giao Khoa 10 . pdf1029 -  Danh muc Sach Giao Khoa 10 . pdf
1029 - Danh muc Sach Giao Khoa 10 . pdf
 
PROCESS RECORDING FORMAT.docx
PROCESS      RECORDING        FORMAT.docxPROCESS      RECORDING        FORMAT.docx
PROCESS RECORDING FORMAT.docx
 
An Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdfAn Overview of Mutual Funds Bcom Project.pdf
An Overview of Mutual Funds Bcom Project.pdf
 
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"Mattingly "AI & Prompt Design: The Basics of Prompt Design"
Mattingly "AI & Prompt Design: The Basics of Prompt Design"
 
microwave assisted reaction. General introduction
microwave assisted reaction. General introductionmicrowave assisted reaction. General introduction
microwave assisted reaction. General introduction
 
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptxBasic Civil Engineering first year Notes- Chapter 4 Building.pptx
Basic Civil Engineering first year Notes- Chapter 4 Building.pptx
 
ICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptxICT Role in 21st Century Education & its Challenges.pptx
ICT Role in 21st Century Education & its Challenges.pptx
 

Unified Extensible Firmware Interface (UEFI)

  • 2. What is Extensible Firmware Interface (EFI) The Extensible Firmware Interface (EFI) is a specification that defines a software interface between an operating system and platform firmware. EFI is a replacement for older BIOS firmware interface present in all IBM PC – compatible personal computers. 2
  • 4. What is firmware…? Installed with a computer (PROM/EEPROM) Initializes low level hardware in a non-volatile location  Initializes memory controller timings, powers on critical boot devices. Hands off control to operating system loader  Operating system loader uses firmware interfaces to initialize the operating system. Referred to as pre-boot firmware  Examples: BIOS and EFI. 4
  • 5. BIOS firmware (de-facto standard) Mechanism used to boot PCs for the last 25+ years  All x86/x64 architecture machines in the market support BIOS firmware. BIOS has 16-bit architecture  1 Mb addressable space. In early systems (16-bit era) BIOS was used for hardware access  Operating systems would call the BIOS rather than directly accessing the hardware (ex. MS-DOS). 5
  • 6. BIOS firmware (cont.) In 32-bit era OSs instead generally directly accessed the hardware using their own device drivers Role of BIOS has changed over time  Primarily used for booting a system.  Also for certain additional features like Power Management(ACPI), Video Initialization(X.org), hot swapping. 6
  • 7. BIOS limitations BIOS is a real mode environment  16-bit real mode interfaces. BIOS systems with MBR disks use 32-bit values to describe the starting offset and length of a partition  MBR allows a maximum disk size of approx. 2.2 TB and a maximum of four primary partitions. 7
  • 8. BIOS limitations (cont.) BIOS showing its age  Over 25 years old.  Documentation is scattered.  Interfaces have evolved in an ad-hoc manner as technical advances exposed limitations. Non – graphical interface Programmed in hex/assembly code Regarded as legacy firmware 8
  • 9. EFI Firmware (Motivation & History) EFI creation motivated by Itanium bring up   Desire to avoid BIOS limitations in a brand new high end architecture. Also designed as a BIOS replacement.  Initially known as Intel Boot Initiative  Modern design incorporates twenty five years of progress in computer science  Well specified, largely in one self-contained document 9
  • 10. Transition from EFI to UEFI The emergence of x64 architecture provides an inflection point to begin industry wide transition to EFI To encourage transition, the UEFI Forum was created in 2005, which is now responsible for EFI development  Broad industry forum with common goal.  UEFI version 2.3 published in May 2009. Forum members :  AMD, American Megatrends, Apple, Dell, HP, IBM, Insyde Software, Intel, Lenovo, Microsoft, Phoenix Technologies. 10
  • 11. Overcoming BIOS limitations  EFI adds support for a new partition scheme : GUID Partition Table(GPT)  Unlimited partitions can be created (W-128).  Maximum disk and partition size of 9.4 ZB.  UEFI processor mode can be either 32-bit or 64-bit (long mode)  Architecture is modular and extensible     More accessible than BIOS Graphical user interface Can be programmed in C/C++ EFI interfaces are object oriented 11
  • 12. Firmware roadmap goals Enable mainstream 64-bit computing Achieve firmware independence Transition away from BIOS to EFI  Removal of BIOS architectural barriers will enable new scenarios over time. Avoid jarring changes during this transition Support boot of older operating system on UEFI platform 12
  • 13. Simplifying UEFI transition Firmware footprint for both 32-bit and 64-bit UEFI implementations on same machines is cost prohibitive Nearly all processors are 64-bit capable  64-bit computing is the wave of the future Little motivation to support 32-bit UEFI boot  32-bit systems most boot Windows via BIOS Differences between UEFI and BIOS environments are abstracted from the end user wherever possible 13
  • 14. Overall view of boot time line 14
  • 15. Understanding GPT GUID Partition Table (GPT) partitioning is required for UEFI boot     Partition table information stored in GPT header. Stores MBR entry in first sector of disk. Uses Logical Block Addressing. Provides redundancy, writing header and partition table both at beginning and end. 15
  • 17. A new partition EFI System Partition (ESP)  Formatted using FAT variant.  Contains the boot loader program, device driver files.  System utility programs that are intended to run before OS is booted. 17
  • 18. Disk Partitioning in MBR Partition length & partition start address stored as 32-bit quantities Sector size 2^9 = 512 bytes Neither max. partition size, nor max. start address can exceed  2^9 * 2^32 = 2^41 bytes.  2 * 2^40 = 2 TiB. 18
  • 19. …in GPT 512 byte sector  2^64 * 2^9 = 2^73  2^73 = 9.4 ZiB …warning from Apple Inc.  “Do not assume that the block size is always going to be 512 bytes”. Hardware manufacturers are completing the transition to 4096-byte sectors  2^64 * 2^12 = 2^76 19
  • 20. Logical Block Addressing Common scheme for specifying the location of blocks of data Particularly simple linear addressing scheme Introduced as an abstraction In 2002, ATA-6 introduced 48-bit LBA 20
  • 21. Conversion between CHS & LBA LBA = ((C * HPC) + H) * SPT + S – 1     C,H & S are cylinder no., head no., sector no. LBA is the logical block address. HPC is the no. of heads per cylinder. SPT is the no. of sectors per track. S = (LBA mod SPT) + 1 H = (LBA / SPT) mod HPC C = LBA / (SPT * HPC) 21
  • 22. UEFI only installs on UEFI To install via EFI requires that the installation be booted via EFI (vice-versa) The OS installer must configure the ESP, including OS metadata(boot options) Once the OS is installed via EFI it can only boot via EFI  Booting via BIOS cannot access the metadata on the ESP. 22
  • 26. Advantages of UEFI Reduce 16-bit code from boot environment Embrace 64-bit native code for x64 arch. Specified standard for booting an OS Engineering agility in pre-operating system space  Clean, architected interfaces.  Active industry standard working group. Move beyond legacy BIOS  Improved boot graphics.  Faster network boot performance. 26
  • 27. UEFI Implementation Microsoft Windows     Windows XP 64-bit. Windows server 2008 for x64 and Intel Itanium based platform. Windows 7. 64-bit windows versions only. Apple Macintosh  Intel based Macs.  Since Mac OS X v10.4 (Tiger). Linux platforms  Used since early 2000, using elilo.  EFI versions of GRUB are available. 27
  • 28. UEFI and the Industry  11 Promoters  20+ Contributors  70+ Adopters 100 80 60 40 20 0 2006 2007 UEFI Framework Based % 2008 2009 2010 Legacy Based % 28