SlideShare a Scribd company logo
1 of 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

More Related Content

What's hot

booting steps of a computer
booting steps of a computerbooting steps of a computer
booting steps of a computer
Anusha Babooa
 
Motherboard of a pc
Motherboard of a pcMotherboard of a pc
Motherboard of a pc
Tech_MX
 
Uboot startup sequence
Uboot startup sequenceUboot startup sequence
Uboot startup sequence
Houcheng Lin
 

What's hot (20)

BIOS PRESENTATION
BIOS PRESENTATIONBIOS PRESENTATION
BIOS PRESENTATION
 
BIOS/UEFI
BIOS/UEFIBIOS/UEFI
BIOS/UEFI
 
Disk management / hard drive partition management / create drive or partition...
Disk management / hard drive partition management / create drive or partition...Disk management / hard drive partition management / create drive or partition...
Disk management / hard drive partition management / create drive or partition...
 
Bios
BiosBios
Bios
 
booting steps of a computer
booting steps of a computerbooting steps of a computer
booting steps of a computer
 
USB Drivers
USB DriversUSB Drivers
USB Drivers
 
05. Power Supply Unit (PSU)
05. Power Supply Unit (PSU)05. Power Supply Unit (PSU)
05. Power Supply Unit (PSU)
 
Motherboard of a pc
Motherboard of a pcMotherboard of a pc
Motherboard of a pc
 
System Booting Process overview
System Booting Process overviewSystem Booting Process overview
System Booting Process overview
 
Bios
BiosBios
Bios
 
Uboot startup sequence
Uboot startup sequenceUboot startup sequence
Uboot startup sequence
 
BIOS basic input output system
BIOS basic input output systemBIOS basic input output system
BIOS basic input output system
 
DOS Operating System
DOS Operating SystemDOS Operating System
DOS Operating System
 
Boot process
Boot processBoot process
Boot process
 
How to install windows 7
How to install windows 7How to install windows 7
How to install windows 7
 
System's Specification
System's SpecificationSystem's Specification
System's Specification
 
Installing windows 10 and creating a bootable usb
Installing windows 10 and creating a bootable usbInstalling windows 10 and creating a bootable usb
Installing windows 10 and creating a bootable usb
 
Disk Management
Disk ManagementDisk Management
Disk Management
 
Bootable-USB.pptx
Bootable-USB.pptxBootable-USB.pptx
Bootable-USB.pptx
 
Partitioning a Hard Drive
Partitioning a Hard DrivePartitioning a Hard Drive
Partitioning a Hard Drive
 

Viewers also liked (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
 

Similar to 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
 

Similar to 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
 
Bootloaders (U-Boot)
Bootloaders (U-Boot) Bootloaders (U-Boot)
Bootloaders (U-Boot)
 
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
 

More from 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
 

Recently uploaded

Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
KarakKing
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
ZurliaSoop
 

Recently uploaded (20)

Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptxExploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
Exploring_the_Narrative_Style_of_Amitav_Ghoshs_Gun_Island.pptx
 
Micro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdfMicro-Scholarship, What it is, How can it help me.pdf
Micro-Scholarship, What it is, How can it help me.pdf
 
How to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptxHow to setup Pycharm environment for Odoo 17.pptx
How to setup Pycharm environment for Odoo 17.pptx
 
Fostering Friendships - Enhancing Social Bonds in the Classroom
Fostering Friendships - Enhancing Social Bonds  in the ClassroomFostering Friendships - Enhancing Social Bonds  in the Classroom
Fostering Friendships - Enhancing Social Bonds in the Classroom
 
Wellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptxWellbeing inclusion and digital dystopias.pptx
Wellbeing inclusion and digital dystopias.pptx
 
How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17How to Create and Manage Wizard in Odoo 17
How to Create and Manage Wizard in Odoo 17
 
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
2024-NATIONAL-LEARNING-CAMP-AND-OTHER.pptx
 
Interdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptxInterdisciplinary_Insights_Data_Collection_Methods.pptx
Interdisciplinary_Insights_Data_Collection_Methods.pptx
 
Salient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functionsSalient Features of India constitution especially power and functions
Salient Features of India constitution especially power and functions
 
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...Kodo Millet  PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
Kodo Millet PPT made by Ghanshyam bairwa college of Agriculture kumher bhara...
 
Google Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptxGoogle Gemini An AI Revolution in Education.pptx
Google Gemini An AI Revolution in Education.pptx
 
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptxOn_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
On_Translating_a_Tamil_Poem_by_A_K_Ramanujan.pptx
 
How to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POSHow to Manage Global Discount in Odoo 17 POS
How to Manage Global Discount in Odoo 17 POS
 
ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.ICT role in 21st century education and it's challenges.
ICT role in 21st century education and it's challenges.
 
Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)Jamworks pilot and AI at Jisc (20/03/2024)
Jamworks pilot and AI at Jisc (20/03/2024)
 
How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17How to Give a Domain for a Field in Odoo 17
How to Give a Domain for a Field in Odoo 17
 
Key note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdfKey note speaker Neum_Admir Softic_ENG.pdf
Key note speaker Neum_Admir Softic_ENG.pdf
 
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
Sensory_Experience_and_Emotional_Resonance_in_Gabriel_Okaras_The_Piano_and_Th...
 
Python Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docxPython Notes for mca i year students osmania university.docx
Python Notes for mca i year students osmania university.docx
 
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
Jual Obat Aborsi Hongkong ( Asli No.1 ) 085657271886 Obat Penggugur Kandungan...
 

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