Home > Store

Essential Linux Device Drivers

Register your product to gain access to bonus material or receive a coupon.

Essential Linux Device Drivers

Book

  • Sorry, this book is no longer in print.
Not for Sale

Description

  • Copyright 2008
  • Dimensions: 7" x 9-1/4"
  • Pages: 752
  • Edition: 1st
  • Book
  • ISBN-10: 0-13-239655-6
  • ISBN-13: 978-0-13-239655-4

“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

Extras

Related Article

The State of Open Source 3D

Sample Content

Online Sample Chapter

Understanding Memory Technology Devices in Embedded Linux

Sample Pages

Download the sample

Table of Contents

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 Sources  461

Chapter 16 Linux Without Wires 465

Bluetooth  467

BlueZ  469

Device Example: CF Card  471

Device Example: USB Adapter  471

RFCOMM  473

Networking  475

Human Interface Devices  477

Audio  477

Debugging  478

Looking at the Sources  478

Infrared  478

Linux-IrDA  480

Device Example: Super I/O Chip  482

Device Example: IR Dongle  483

IrComm  486

Networking  486

IrDA Sockets  487

Linux Infrared Remote Control  488

Looking at the Sources  489

WiFi  489

Configuration  490

Device Drivers  494

Looking at the Sources  496

Cellular Networking  496

GPRS  496

CDMA  498

Current Trends  500

Chapter 17 Memory Technology Devices 503

What’s Flash Memory?  504

Linux-MTD Subsystem  505

Map Drivers  506

Device Example: Handheld  506

NOR Chip Drivers  511

NAND Chip Drivers  513

User Modules  516

Block Device Emulation  516

Char Device Emulation  517

JFFS2  517

YAFFS2  518

MTD-Utils  518

Configuring MTD  519

eXecute In Place  520

The Firmware Hub  520

Debugging  524

Looking at the Sources  524

Chapter 18 Embedding Linux 527

Challenges  528

Component Selection  530

Tool Chains  531

Embedded Bootloaders  531

Memory Layout  535

Kernel Porting  537

Embedded Drivers  538

Flash Memory  538

UART  539

Buttons and Wheels  539

PCMCIA/CF  540

SD/MMC  540

USB  540

RTC  541

Audio  541

Touch Screen  541

Video  541

CPLD/FPGA  542

Connectivity  542

Domain-Specific Electronics  542

More Drivers  543

The Root Filesystem  544

NFS-Mounted Root  544

Compact Middleware  546

Test Infrastructure  548

Debugging  548

Board Rework  549

Debuggers  550

Chapter 19 Drivers in User Space 551

Process Scheduling and Response Times  553

The Original Scheduler  553

The O(1) Scheduler  553

The CFS Scheduler  555

Response Times  555

Accessing I/O Regions  558

Accessing Memory Regions  562

User Mode SCSI  565

User Mode USB  567

User Mode I2C  571

UIO  573

Looking at the Sources  574

Chapter 20 More Devices and Drivers 577

ECC Reporting  578

Device Example: ECC-Aware Memory Controller  579

Frequency Scaling  583

Embedded Controllers  584

ACPI  585

ISA and MCA  587

FireWire  588

Intelligent Input/Output  589

Amateur Radio  590

Voice over IP  590

High-Speed Interconnects  591

InfiniBand  592

RapidIO  592

Fibre Channel  592

iSCSI  593

Chapter 21 Debugging Device Drivers 595

Kernel Debuggers  596

Entering a Debugger  597

Kernel Debugger (kdb)  598

Kernel GNU Debugger (kgdb)  600

GNU Debugger (gdb)  604

JTAG Debuggers  605

Downloads  609

Kernel Probes  609

Kprobes  609

Jprobes  614

Return Probes  617

Limitations  619

Looking at the Sources  620

Kexec and Kdump  620

Kexec  620

Kexec with Kdump  621

Kdump  622

Looking at the Sources  629

Profiling  629

Kernel Profiling with OProfile  629

Application Profiling with Gprof  633

Tracing  634

Linux Trace Toolkit  634

Linux Test Project  638

User Mode Linux  638

Diagnostic Tools  638

Kernel Hacking Config Options  639

Test Equipment  640

Chapter 22 Maintenance and Delivery 641

Coding Style  642

Change Markers  642

Version Control  643

Consistent Checksums  643

Build Scripts  645

Portable Code  647

Chapter 23 Shutting Down 649

Checklist  650

What Next?  651

Appendix A Linux Assembly 653

Debugging  659

Appendix B Linux and the BIOS 661

Real Mode Calls  662

Protected Mode Calls  665

BIOS and Legacy Drivers  666

Appendix C Seq Files 669

The Seq File Advantage  670

Updating the NVRAM Driver  677

Looking at the Sources  679

Index  681

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020