The Most Practical Guide to Writing Linux Device Drivers
Linux now offers an exceptionally robust environment for driver development: with today's kernels, what once required years of development time can now be accomplished in days. In this practical, example-driven book, one of the world's most experienced Linux driver developers systematically demonstrates how to develop reliable Linux drivers for virtually any device.
Essential Linux Device Drivers is for any programmer with a working knowledge of operating systems and C, including programmers who have never written drivers before. Sreekrishnan Venkateswaran focuses on the essentials, bringing together all the concepts and techniques you need, while avoiding topics that only matter in highly-specialized situations.
Venkateswaran begins by reviewing the Linux 2.6 kernel capabilities that are most relevant to driver developers. He introduces simple device classes; then turns to serial buses, external buses such as PCMCIA, PCI, and USB; video, audio, block, and network device drivers; user-space drivers; and drivers for embedded Linux-one of today's fastest growing areas of Linux development. For each, Venkateswaran explains the technology, inspects relevant kernel source files, and walks through developing a complete example.
· Covers the entire driver development lifecycle, through debugging and maintenance
· Addresses drivers discussed in no other book, including WiFi, USB serial drivers, and sound drivers
· Demystifies essential kernel services and facilities, including kernel threads and helper interfaces
· Teaches polling, asynchronous notification, and I/O control
· Introduces the Inter-Integrated Circuit Protocol for embedded Linux drivers
· Shows how to write drivers for Compact Flash and other flash memory devices
· Covers multimedia device drivers using the Linux-Video subsystem and Linux-Audio framework
· Includes reference appendixes covering Linux assembly, BOIS calls, Seq files, and the kernel's view of physical memory
Product Description
"Probably the most wide ranging and complete Linux device driver book I've read."
--Alan Cox, Linux Guru and Key Kernel Developer
"Very comprehensive and detailed, covering almost every single Linux device driver type."
--Theodore Ts'o, First Linux Kernel Developer in North America and Chief Platform Strategist of the Linux Foundation
The Most Practical Guide to Writing Linux Device Drivers
Linux now offers an exceptionally robust environment for driver development: with today's kernels, what once required years of development time can be accomplished in days. In this practical, example-driven book, one of the world's most experienced Linux driver developers systematically demonstrates how to develop reliable Linux drivers for virtually any device. Essential Linux Device Drivers is for any programmer with a working knowledge of operating systems and C, including programmers who have never written drivers before. Sreekrishnan Venkateswaran focuses on the essentials, bringing together all the concepts and techniques you need, while avoiding topics that only matter in highly specialized situations. Venkateswaran begins by reviewing the Linux 2.6 kernel capabilities that are most relevant to driver developers. He introduces simple device classes; then turns to serial buses such as I2C and SPI; external buses such as PCMCIA, PCI, and USB; video, audio, block, network, and wireless device drivers; user-space drivers; and drivers for embedded Linux-one of today's fastest growing areas of Linux development. For each, Venkateswaran explains the technology, inspects relevant kernel source files, and walks through developing a complete example.
. Addresses drivers discussed in no other book, including drivers for I2C, video, sound, PCMCIA, and different types of flash memory
. Demystifies essential kernel services and facilities, including kernel threads and helper interfaces
. Teaches polling, asynchronous notification, and I/O control
. Introduces the Inter-Integrated Circuit Protocol for embedded Linux drivers
. Covers multimedia device drivers using the Linux-Video subsystem and Linux-Audio framework
. Shows how Linux implements support for wireless technologies such as Bluetooth, Infrared, WiFi, and cellular networking
. Describes the entire driver development lifecycle, through debugging and maintenance
. Includes reference appendixes covering Linux assembly, BIOS calls, and Seq files
Backcover
"Probably the most wide ranging and complete Linux device driver book I've read."
--Alan Cox, Linux Guru and Key Kernel Developer
"Very comprehensive and detailed, covering almost every single Linux device driver type."
--Theodore Ts'o, First Linux Kernel Developer in North America and Chief Platform Strategist of the Linux Foundation
The Most Practical Guide to Writing Linux Device Drivers
Linux now offers an exceptionally robust environment for driver development: with today's kernels, what once required years of development time can be accomplished in days. In this practical, example-driven book, one of the world's most experienced Linux driver developers systematically demonstrates how to develop reliable Linux drivers for virtually any device. Essential Linux Device Drivers is for any programmer with a working knowledge of operating systems and C, including programmers who have never written drivers before. Sreekrishnan Venkateswaran focuses on the essentials, bringing together all the concepts and techniques you need, while avoiding topics that only matter in highly specialized situations. Venkateswaran begins by reviewing the Linux 2.6 kernel capabilities that are most relevant to driver developers. He introduces simple device classes; then turns to serial buses such as I2C and SPI; external buses such as PCMCIA, PCI, and USB; video, audio, block, network, and wireless device drivers; user-space drivers; and drivers for embedded Linux-one of today's fastest growing areas of Linux development. For each, Venkateswaran explains the technology, inspects relevant kernel source files, and walks through developing a complete example.
. Addresses drivers discussed in no other book, including drivers for I2C, video, sound, PCMCIA, and different types of flash memory
. Demystifies essential kernel services and facilities, including kernel threads and helper interfaces
. Teaches polling, asynchronous notification, and I/O control
. Introduces the Inter-Integrated Circuit Protocol for embedded Linux drivers
. Covers multimedia device drivers using the Linux-Video subsystem and Linux-Audio framework
. Shows how Linux implements support for wireless technologies such as Bluetooth, Infrared, WiFi, and cellular networking
. Describes the entire driver development lifecycle, through debugging and maintenance
. Includes reference appendixes covering Linux assembly, BIOS calls, and Seq files
Foreword xxi
Preface xxiii
Acknowledgments xxix
About the Author xxx
Chapter 1 Introduction 1
Evolution 2
The GNU Copyleft 3
Kernelorg 4
Mailing Lists and Forums 4
Linux Distributions 5
Looking at the Sources 6
Building the Kernel 10
Loadable Modules 12
Before Starting 14
Chapter 2 A Peek Inside the Kernel 17
Booting Up 18
Kernel Mode and User Mode 30
Process Context and Interrupt Context 30
Kernel Timers 31
HZ and Jiffies 31
Long Delays 33
Short Delays 36
Pentium Time Stamp Counter 36
Real Time Clock 37
Concurrency in the Kernel 39
Spinlocks and Mutexes 39
Atomic Operators 45
Reader-Writer Locks 46
Debugging 48
Process Filesystem 49
Allocating Memory 49
Looking at the Sources 52
Chapter 3 Kernel Facilities 55
Kernel Threads 56
Creating a Kernel Thread 56
Process States and Wait Queues 61
User Mode Helpers 63
Helper Interfaces 65
Linked Lists 65
Hash Lists 72
Work Queues 72
Notifier Chains 74
Completion Interface 78
Kthread Helpers 81
Error-Handling Aids 83
Looking at the Sources 85
Chapter 4 Laying the Groundwork 89
Introducing Devices and Drivers 90
Interrupt Handling 92
Interrupt Context 92
Assigning IRQs 94
Device Example: Roller Wheel 94
Softirqs and Tasklets 99
The Linux Device Model 103
Udev 103
Sysfs, Kobjects, and Device Classes 106
Hotplug and Coldplug 110
Microcode Download 111
Module Autoload 112
Memory Barriers 114
Power Management 114
Looking at the Sources 115
Chapter 5 Character Drivers 119
Char Driver Basics 120
Device Example: System CMOS 121
Driver Initialization 122
Open and Release 127
Exchanging Data 129
Seek 136
Control 137
Sensing Data Availability 139
Poll 139
Fasync 142
Talking to the Parallel Port 145
Device Example: Parallel Port LED Board 146
RTC Subsystem 156
Pseudo Char Drivers 157
Misc Drivers 160
Device Example: Watchdog Timer 160
Character Caveats 166
Looking at the Sources 167
6556_Bookindb i6556_ix 3/4/08 9:31:21 AM
Chapter 6 Serial Drivers 171
Layered Architecture 173
UART Drivers 176
Device Example: Cell Phone 178
RS-485 191
TTY Drivers 192
Line Disciplines 194
Device Example: Touch Controller 195
Looking at the Sources 205
Chapter 7 Input Drivers 207
Input Event Drivers 210
The Evdev Interface 210
Input Device Drivers 216
Serio 217
Keyboards 217
Mice 220
Touch Controllers 227
Accelerometers 228
Output Events 228
Debugging 230
Looking at the Sources 231
Chapter 8 The Inter-Integrated Circuit Protocol 233
What's I2C/SMBus? 234
I2C Core 235
Bus Transactions 237
Device Example: EEPROM 238
Initializing 238
Probing the Device 241
Checking Adapter Capabilities 244
Accessing the Device 244
More Methods 246
Device Example: Real Time Clock 247
I2C-dev 251
Hardware Monitoring Using LM-Sensors 251
The Serial Peripheral Interface Bus 251
The 1-Wire Bus 254
Debugging 254
Looking at the Sources 255
Chapter 9 PCMCIA and Compact Flash 257
What's PCMCIA/CF? 258
Linux-PCMCIA Subsystem 260
Host Controller Drivers 262
PCMCIA Core 263
Driver Services 263
Client Drivers 264
Data Structures 264
Device Example: PCMCIA Card 267
Tying the Pieces Together 271
PCMCIA Storage 272
Serial PCMCIA 272
Debugging 273
Looking at the Sources 275
Chapter 10 Peripheral Component Interconnect 277
The PCI Family 278
Addressing and Identification 281
Accessing PCI Regions 285
Configuration Space 285
I/O and Memory 286
Direct Memory Access 288
Device Example: Ethernet-Modem Card 292
Initializing and Probing 293
Data Transfer 301
Debugging 308
Looking at the Sources 308
Chapter 11 Universal Serial Bus 311
USB Architecture 312
Bus Speeds 314
Host Controllers 315
Transfer Types 315
Addressing 316
Linux-USB Subsystem 317
Driver Data Structures 317
The usb_device Structure 318
USB Request Blocks 319
Pipes 321
Descriptor Structures 322
Enumeration 324
Device Example: Telemetry Card 324
Initializing and Probing 325
Accessing Registers 332
Data Transfer 335
Class Drivers 338
Mass Storage 339
USB-Serial 345
Human Interface Devices 348
Bluetooth 348
Gadget Drivers 348
Debugging 349
Looking at the Sources 351
Chapter 12 Video Drivers 355
Display Architecture 356
Linux-Video Subsystem 359
Display Parameters 361
The Frame Buffer API 362
Frame Buffer Drivers 365
Device Example: Navigation System 365
Console Drivers 380
Device Example: Cell Phone Revisited 382
Boot Logo 387
Debugging 387
Looking at the Sources 388
Chapter 13 Audio Drivers 391
Audio Architecture 392
Linux-Sound Subsystem 394
Device Example: MP3 Player 396
Driver Methods and Structures 399
ALSA Programming 409
Debugging 412
Looking at the Sources 412
Chapter 14 Block Drivers 415
Storage Technologies 416
Linux Block I/O Layer 421
I/O Schedulers 422
Block Driver Data Structures and Methods 423
Device Example: Simple Storage Controller 426
Initialization 427
Block Device Operations 430
Disk Access 432
Advanced Topics 434
Debugging 436
Looking at the Sources 437
Chapter 15 Network Interface Cards 439
Driver Data Structures 440
Socket Buffers 441
The Net Device Interface 443
Activation 444
Data Transfer 444
Watchdog 445
Statistics 445
Configuration 446
Bus Specific 448
Talking with Protocol Layers 448
Receive Path 448
Transmit Path 449
Flow Control 449
Buffer Management and Concurrency Control 450
Device Example: Ethernet NIC 451
ISA Network Drivers 457
Asynchronous Transfer Mode 458
Network Throughput 459
Driver Performance 459
Protocol Performance 461
Looking at the Sour
"Probably the most wide ranging and complete Linux device driver book I've read."
--Alan Cox, Linux Guru and Key Kernel Developer
"Very comprehensive and detailed, covering almost every single Linux device driver type."
-- Theodore Ts'o, First Linux Kernel Developer in North America and Chief Platform Strategist of the Linux Foundation
The Most Practical Guide to Writing Linux Device Drivers
Linux now offers an exceptionally robust environment for driver development: with today's kernels, what once required years of development time can be accomplished in days. In this practical, example-driven book, one of the world's most experienced Linux driver developers systematically demonstrates how to develop reliable Linux drivers for virtually any device. Essential Linux Device Drivers is for any programmer with a working knowledge of operating systems and C, including programmers who have never written drivers before. Sreekrishnan Venkateswaran focuses on the essentials, bringing together all the concepts and techniques you need, while avoiding topics that only matter in highly specialized situations. Venkateswaran begins by reviewing the Linux 2.6 kernel capabilities that are most relevant to driver developers. He introduces simple device classes; then turns to serial buses such as I2C and SPI; external buses such as PCMCIA, PCI, and USB; video, audio, block, network, and wireless device drivers; user-space drivers; and drivers for embedded Linux-one of today's fastest growing areas of Linux development. For each, Venkateswaran explains the technology, inspects relevant kernel source files, and walks through developing a complete example.
- Addresses drivers discussed in no other book, including drivers for I2C, video, sound, PCMCIA, and different types of flash memory
- Demystifies essential kernel services and facilities, including kernel threads and helper interfaces
- Teaches polling, asynchronous notification, and I/O control
- Introduces the Inter-Integrated Circuit Protocol for embedded Linux drivers
- Covers multimedia device drivers using the Linux-Video subsystem and Linux-Audio framework
- Shows how Linux implements support for wireless technologies such as Bluetooth, Infrared, WiFi, and cellular networking
- Describes the entire driver development lifecycle, through debugging and maintenance
- Includes reference appendixes covering Linux assembly, BIOS calls, and Seq files
Linux now offers an exceptionally robust environment for driver development: with today's kernels, what once required years of development time can now be accomplished in days. In this practical, example-driven book, one of the world's most experienced Linux driver developers systematically demonstrates how to develop reliable Linux drivers for virtually any device.
Essential Linux Device Drivers is for any programmer with a working knowledge of operating systems and C, including programmers who have never written drivers before. Sreekrishnan Venkateswaran focuses on the essentials, bringing together all the concepts and techniques you need, while avoiding topics that only matter in highly-specialized situations.
Venkateswaran begins by reviewing the Linux 2.6 kernel capabilities that are most relevant to driver developers. He introduces simple device classes; then turns to serial buses, external buses such as PCMCIA, PCI, and USB; video, audio, block, and network device drivers; user-space drivers; and drivers for embedded Linux-one of today's fastest growing areas of Linux development. For each, Venkateswaran explains the technology, inspects relevant kernel source files, and walks through developing a complete example.
· Covers the entire driver development lifecycle, through debugging and maintenance
· Addresses drivers discussed in no other book, including WiFi, USB serial drivers, and sound drivers
· Demystifies essential kernel services and facilities, including kernel threads and helper interfaces
· Teaches polling, asynchronous notification, and I/O control
· Introduces the Inter-Integrated Circuit Protocol for embedded Linux drivers
· Shows how to write drivers for Compact Flash and other flash memory devices
· Covers multimedia device drivers using the Linux-Video subsystem and Linux-Audio framework
· Includes reference appendixes covering Linux assembly, BOIS calls, Seq files, and the kernel's view of physical memory
Product Description
"Probably the most wide ranging and complete Linux device driver book I've read."
--Alan Cox, Linux Guru and Key Kernel Developer
"Very comprehensive and detailed, covering almost every single Linux device driver type."
--Theodore Ts'o, First Linux Kernel Developer in North America and Chief Platform Strategist of the Linux Foundation
The Most Practical Guide to Writing Linux Device Drivers
Linux now offers an exceptionally robust environment for driver development: with today's kernels, what once required years of development time can be accomplished in days. In this practical, example-driven book, one of the world's most experienced Linux driver developers systematically demonstrates how to develop reliable Linux drivers for virtually any device. Essential Linux Device Drivers is for any programmer with a working knowledge of operating systems and C, including programmers who have never written drivers before. Sreekrishnan Venkateswaran focuses on the essentials, bringing together all the concepts and techniques you need, while avoiding topics that only matter in highly specialized situations. Venkateswaran begins by reviewing the Linux 2.6 kernel capabilities that are most relevant to driver developers. He introduces simple device classes; then turns to serial buses such as I2C and SPI; external buses such as PCMCIA, PCI, and USB; video, audio, block, network, and wireless device drivers; user-space drivers; and drivers for embedded Linux-one of today's fastest growing areas of Linux development. For each, Venkateswaran explains the technology, inspects relevant kernel source files, and walks through developing a complete example.
. Addresses drivers discussed in no other book, including drivers for I2C, video, sound, PCMCIA, and different types of flash memory
. Demystifies essential kernel services and facilities, including kernel threads and helper interfaces
. Teaches polling, asynchronous notification, and I/O control
. Introduces the Inter-Integrated Circuit Protocol for embedded Linux drivers
. Covers multimedia device drivers using the Linux-Video subsystem and Linux-Audio framework
. Shows how Linux implements support for wireless technologies such as Bluetooth, Infrared, WiFi, and cellular networking
. Describes the entire driver development lifecycle, through debugging and maintenance
. Includes reference appendixes covering Linux assembly, BIOS calls, and Seq files
Backcover
"Probably the most wide ranging and complete Linux device driver book I've read."
--Alan Cox, Linux Guru and Key Kernel Developer
"Very comprehensive and detailed, covering almost every single Linux device driver type."
--Theodore Ts'o, First Linux Kernel Developer in North America and Chief Platform Strategist of the Linux Foundation
The Most Practical Guide to Writing Linux Device Drivers
Linux now offers an exceptionally robust environment for driver development: with today's kernels, what once required years of development time can be accomplished in days. In this practical, example-driven book, one of the world's most experienced Linux driver developers systematically demonstrates how to develop reliable Linux drivers for virtually any device. Essential Linux Device Drivers is for any programmer with a working knowledge of operating systems and C, including programmers who have never written drivers before. Sreekrishnan Venkateswaran focuses on the essentials, bringing together all the concepts and techniques you need, while avoiding topics that only matter in highly specialized situations. Venkateswaran begins by reviewing the Linux 2.6 kernel capabilities that are most relevant to driver developers. He introduces simple device classes; then turns to serial buses such as I2C and SPI; external buses such as PCMCIA, PCI, and USB; video, audio, block, network, and wireless device drivers; user-space drivers; and drivers for embedded Linux-one of today's fastest growing areas of Linux development. For each, Venkateswaran explains the technology, inspects relevant kernel source files, and walks through developing a complete example.
. Addresses drivers discussed in no other book, including drivers for I2C, video, sound, PCMCIA, and different types of flash memory
. Demystifies essential kernel services and facilities, including kernel threads and helper interfaces
. Teaches polling, asynchronous notification, and I/O control
. Introduces the Inter-Integrated Circuit Protocol for embedded Linux drivers
. Covers multimedia device drivers using the Linux-Video subsystem and Linux-Audio framework
. Shows how Linux implements support for wireless technologies such as Bluetooth, Infrared, WiFi, and cellular networking
. Describes the entire driver development lifecycle, through debugging and maintenance
. Includes reference appendixes covering Linux assembly, BIOS calls, and Seq files
Foreword xxi
Preface xxiii
Acknowledgments xxix
About the Author xxx
Chapter 1 Introduction 1
Evolution 2
The GNU Copyleft 3
Kernelorg 4
Mailing Lists and Forums 4
Linux Distributions 5
Looking at the Sources 6
Building the Kernel 10
Loadable Modules 12
Before Starting 14
Chapter 2 A Peek Inside the Kernel 17
Booting Up 18
Kernel Mode and User Mode 30
Process Context and Interrupt Context 30
Kernel Timers 31
HZ and Jiffies 31
Long Delays 33
Short Delays 36
Pentium Time Stamp Counter 36
Real Time Clock 37
Concurrency in the Kernel 39
Spinlocks and Mutexes 39
Atomic Operators 45
Reader-Writer Locks 46
Debugging 48
Process Filesystem 49
Allocating Memory 49
Looking at the Sources 52
Chapter 3 Kernel Facilities 55
Kernel Threads 56
Creating a Kernel Thread 56
Process States and Wait Queues 61
User Mode Helpers 63
Helper Interfaces 65
Linked Lists 65
Hash Lists 72
Work Queues 72
Notifier Chains 74
Completion Interface 78
Kthread Helpers 81
Error-Handling Aids 83
Looking at the Sources 85
Chapter 4 Laying the Groundwork 89
Introducing Devices and Drivers 90
Interrupt Handling 92
Interrupt Context 92
Assigning IRQs 94
Device Example: Roller Wheel 94
Softirqs and Tasklets 99
The Linux Device Model 103
Udev 103
Sysfs, Kobjects, and Device Classes 106
Hotplug and Coldplug 110
Microcode Download 111
Module Autoload 112
Memory Barriers 114
Power Management 114
Looking at the Sources 115
Chapter 5 Character Drivers 119
Char Driver Basics 120
Device Example: System CMOS 121
Driver Initialization 122
Open and Release 127
Exchanging Data 129
Seek 136
Control 137
Sensing Data Availability 139
Poll 139
Fasync 142
Talking to the Parallel Port 145
Device Example: Parallel Port LED Board 146
RTC Subsystem 156
Pseudo Char Drivers 157
Misc Drivers 160
Device Example: Watchdog Timer 160
Character Caveats 166
Looking at the Sources 167
6556_Bookindb i6556_ix 3/4/08 9:31:21 AM
Chapter 6 Serial Drivers 171
Layered Architecture 173
UART Drivers 176
Device Example: Cell Phone 178
RS-485 191
TTY Drivers 192
Line Disciplines 194
Device Example: Touch Controller 195
Looking at the Sources 205
Chapter 7 Input Drivers 207
Input Event Drivers 210
The Evdev Interface 210
Input Device Drivers 216
Serio 217
Keyboards 217
Mice 220
Touch Controllers 227
Accelerometers 228
Output Events 228
Debugging 230
Looking at the Sources 231
Chapter 8 The Inter-Integrated Circuit Protocol 233
What's I2C/SMBus? 234
I2C Core 235
Bus Transactions 237
Device Example: EEPROM 238
Initializing 238
Probing the Device 241
Checking Adapter Capabilities 244
Accessing the Device 244
More Methods 246
Device Example: Real Time Clock 247
I2C-dev 251
Hardware Monitoring Using LM-Sensors 251
The Serial Peripheral Interface Bus 251
The 1-Wire Bus 254
Debugging 254
Looking at the Sources 255
Chapter 9 PCMCIA and Compact Flash 257
What's PCMCIA/CF? 258
Linux-PCMCIA Subsystem 260
Host Controller Drivers 262
PCMCIA Core 263
Driver Services 263
Client Drivers 264
Data Structures 264
Device Example: PCMCIA Card 267
Tying the Pieces Together 271
PCMCIA Storage 272
Serial PCMCIA 272
Debugging 273
Looking at the Sources 275
Chapter 10 Peripheral Component Interconnect 277
The PCI Family 278
Addressing and Identification 281
Accessing PCI Regions 285
Configuration Space 285
I/O and Memory 286
Direct Memory Access 288
Device Example: Ethernet-Modem Card 292
Initializing and Probing 293
Data Transfer 301
Debugging 308
Looking at the Sources 308
Chapter 11 Universal Serial Bus 311
USB Architecture 312
Bus Speeds 314
Host Controllers 315
Transfer Types 315
Addressing 316
Linux-USB Subsystem 317
Driver Data Structures 317
The usb_device Structure 318
USB Request Blocks 319
Pipes 321
Descriptor Structures 322
Enumeration 324
Device Example: Telemetry Card 324
Initializing and Probing 325
Accessing Registers 332
Data Transfer 335
Class Drivers 338
Mass Storage 339
USB-Serial 345
Human Interface Devices 348
Bluetooth 348
Gadget Drivers 348
Debugging 349
Looking at the Sources 351
Chapter 12 Video Drivers 355
Display Architecture 356
Linux-Video Subsystem 359
Display Parameters 361
The Frame Buffer API 362
Frame Buffer Drivers 365
Device Example: Navigation System 365
Console Drivers 380
Device Example: Cell Phone Revisited 382
Boot Logo 387
Debugging 387
Looking at the Sources 388
Chapter 13 Audio Drivers 391
Audio Architecture 392
Linux-Sound Subsystem 394
Device Example: MP3 Player 396
Driver Methods and Structures 399
ALSA Programming 409
Debugging 412
Looking at the Sources 412
Chapter 14 Block Drivers 415
Storage Technologies 416
Linux Block I/O Layer 421
I/O Schedulers 422
Block Driver Data Structures and Methods 423
Device Example: Simple Storage Controller 426
Initialization 427
Block Device Operations 430
Disk Access 432
Advanced Topics 434
Debugging 436
Looking at the Sources 437
Chapter 15 Network Interface Cards 439
Driver Data Structures 440
Socket Buffers 441
The Net Device Interface 443
Activation 444
Data Transfer 444
Watchdog 445
Statistics 445
Configuration 446
Bus Specific 448
Talking with Protocol Layers 448
Receive Path 448
Transmit Path 449
Flow Control 449
Buffer Management and Concurrency Control 450
Device Example: Ethernet NIC 451
ISA Network Drivers 457
Asynchronous Transfer Mode 458
Network Throughput 459
Driver Performance 459
Protocol Performance 461
Looking at the Sour
"Probably the most wide ranging and complete Linux device driver book I've read."
--Alan Cox, Linux Guru and Key Kernel Developer
"Very comprehensive and detailed, covering almost every single Linux device driver type."
-- Theodore Ts'o, First Linux Kernel Developer in North America and Chief Platform Strategist of the Linux Foundation
The Most Practical Guide to Writing Linux Device Drivers
Linux now offers an exceptionally robust environment for driver development: with today's kernels, what once required years of development time can be accomplished in days. In this practical, example-driven book, one of the world's most experienced Linux driver developers systematically demonstrates how to develop reliable Linux drivers for virtually any device. Essential Linux Device Drivers is for any programmer with a working knowledge of operating systems and C, including programmers who have never written drivers before. Sreekrishnan Venkateswaran focuses on the essentials, bringing together all the concepts and techniques you need, while avoiding topics that only matter in highly specialized situations. Venkateswaran begins by reviewing the Linux 2.6 kernel capabilities that are most relevant to driver developers. He introduces simple device classes; then turns to serial buses such as I2C and SPI; external buses such as PCMCIA, PCI, and USB; video, audio, block, network, and wireless device drivers; user-space drivers; and drivers for embedded Linux-one of today's fastest growing areas of Linux development. For each, Venkateswaran explains the technology, inspects relevant kernel source files, and walks through developing a complete example.
- Addresses drivers discussed in no other book, including drivers for I2C, video, sound, PCMCIA, and different types of flash memory
- Demystifies essential kernel services and facilities, including kernel threads and helper interfaces
- Teaches polling, asynchronous notification, and I/O control
- Introduces the Inter-Integrated Circuit Protocol for embedded Linux drivers
- Covers multimedia device drivers using the Linux-Video subsystem and Linux-Audio framework
- Shows how Linux implements support for wireless technologies such as Bluetooth, Infrared, WiFi, and cellular networking
- Describes the entire driver development lifecycle, through debugging and maintenance
- Includes reference appendixes covering Linux assembly, BIOS calls, and Seq files
