Close
Contact Us info@learnquest.com

??WelcomeName??
??WelcomeName??
« Important Announcement » Contact Us 877-206-0106 | USA Flag
Close
Close
Close
photo

Thank you for your interest in LearnQuest.

Your request is being processed and LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

photo

Thank you for your interest in Private Training.

We look forward to helping you develop the perfect training solution to help you meet your company's goals.

For immediate assistance, speak with one of our representatives using the chat module below. Otherwise, LearnQuest or a LearnQuest-Authorized Training Provider will be in touch with you shortly.

Close
photo

Thank you for your interest in LearnQuest!

Now, you will be able to stay up-to-date on our latest course offerings, promotions, and training discounts. Watch your inbox for upcoming special offers.

title

Date: xxx

Location: xxx

Time: xxx

Price: xxx

Please take a moment to fill out this form. We will get back to you as soon as possible.

All fields marked with an asterisk (*) are mandatory.

Developing Embedded Linux Device Drivers (LFD435)

Price
3,250 USD
4 Days
LNX-LFD435
Classroom Training, Online Training
Linux Foundation

AWS Training Pass

Take advantage of flexible training options with the AWS Training Pass and get Authorized AWS Training for a full year.

Learn More

Prices reflect a 22.5% discount for IBM employees (wherever applicable).
Prices reflect a 24% discount for Kyndryl employees (wherever applicable).
Prices reflect the Accenture employee discount.
Prices shown are the special AWS Partner Prices.
Prices reflect the Capgemini employee discount.
Prices reflect the UPS employee discount.
Prices reflect the ??democompanyname?? employee discount.
GSA Private/Onsite Price: ??gsa-private-price??
For GSA pricing, please go to GSA Advantage.

Class Schedule

Delivery Formats

Sort results

Filter Classes

Guaranteed to Run

Modality

Location

Language

Date

  • Date: 3-Jun-2024 to 6-Jun-2024
    Time: 9AM - 5PM US Eastern
    Location: Virtual
    Language: English
    Delivered by: LearnQuest
    Price: 3,250 USD
  • Date: 16-Sep-2024 to 19-Sep-2024
    Time: 9AM - 5PM US Eastern
    Location: Virtual
    Language: English
    Delivered by: LearnQuest
    Price: 3,250 USD
View Global Schedule

Course Description

Overview

This course is designed to show experienced programmers how to develop device drivers for embedded Linux systems, and give them a basic understanding and familiarity with the Linux kernel.
 

Objectives

Upon mastering this material, students will be familiar with the different kinds of device drivers used under Linux, and have an introduction to many of the appropriate APIs to be used when writing a device driver. The labs for illustrating these concepts will all be performed on ARM hardware in order to get developers familiar with cross-compiling and developing drivers for an embedded target. This course will prepare you to develop device drivers for embedded Linux systems.
 

Audience

This course is for experienced developers who need to develop device drivers for embedded Linux systems.
 

Prerequisites

    To make the most of this course, you must have: Knowledge of basic kernel interfaces and methods such as how to write, compile, load and unload modules, use synchronization primitives, and the basics of memory allocation and management, such as is provided by LFD420 (Kernel Internals and Development). Pre-class preparation material will be provided before class.
     

Topics

Introduction
  • Objectives
  • Who You Are
  • The Linux Foundation
  • Linux Foundation Training
  • Certification Programs and Digital Badging
  • Linux Distributions
  • Preparing Your System
  • Things change in Linux
  • Documentation and Links
Preliminaries
  • Procedures
  • Kernel Versions
  • Kernel Sources and Use of git
  • Hardware
How to Work in OSS Projects **
  • Overview on How to Contribute Properly
  • Stay Close to Mainline for Security and Quality
  • Study and Understand the Project DNA
  • Figure Out What Itch You Want to Scratch
  • Identify Maintainers and Their Work Flows and Methods
  • Get Early Input and Work in the Open
  • Contribute Incremental Bits, Not Large Code Dumps
  • Leave Your Ego at the Door: Don’t Be Thin-Skinned
  • Be Patient, Develop Long Term Relationships, Be Helpful
Cross-Development Toolchain
  • The Compiler Triplet
  • Built-in Linux Distribution Cross Compiler
  • Linaro
  • CodeSourcery
  • crosstool-ng
  • Buildroot
  • OpenEmbedded
  • Yocto Project
  • Labs
QEMU
  • What is QEMU?
  • Emulated Architectures
  • Image Formats
  • Why use QEMU?
  • Labs
Booting a Target Development Board from uSD
  • Why do we use uSD cards?
  • Getting SW onto a uSD card
  • Why is using uSD cards a bad idea?
  • Labs
Booting a Target Development Board over Ethernet
  • Using virtual Hardware
  • An easier way to develop
  • Objectives of the Lab
  • Labs
Kernel Configuration, Compilation, Booting
  • Configuring the Kernel for the Development Board
  • Labs
Device Drivers
  • Types of Devices
  • Mechanism vs. Policy
  • Avoiding Binary Blobs
  • Power Management
  • How Applications Use Device Drivers
  • Walking Through a System Call Accessing a Device
  • Error Numbers
  • printk()
  • devres: Managed Device Resources
  • Labs
Modules and Device Drivers
  • The module_driver() Macros
  • Modules and Hot Plug
  • Labs
Memory Management and Allocation
  • Virtual and Physical Memory
  • Memory Zones
  • Page Tables
  • kmalloc()
  • __get_free_pages()
  • vmalloc()
  • Slabs and Cache Allocations
  • Labs
Character Devices
  • Device Nodes
  • Major and Minor Numbers
  • Reserving Major/Minor Numbers
  • Accessing the Device Node
  • Registering the Device
  • udev
  • dev_printk() and Associates
  • file_operations Structure
  • Driver Entry Points
  • The file and inode Structures
  • Miscellaneous Character Drivers
  • Labs
Kernel Features
  • Components of the Kernel
  • User-Space vs. Kernel-Space
  • What are System Calls?
  • Available System Calls
  • Scheduling Algorithms and Task Structures
  • Process Context
  • Labs
Transferring Between User and Kernel Space
  • Transferring Between Spaces
  • put(get)_user() and copy_to(from)_user()
  • Direct Transfer: Kernel I/O and Memory Mapping
  • Kernel I/O
  • Mapping User Pages
  • Memory Mapping
  • User-Space Functions for mmap()
  • Driver Entry Point for mmap()
  • Accessing Files from the Kernel
  • Labs
Platform Drivers
  • What are Platform Drivers?
  • Main Data Structures
  • Registering Platform Devices
  • An Example
  • Hardcoded Platform Data
  • The New Way: Device Trees
  • Labs
Device Trees
  • What are Device Trees?
  • What Device Trees Do and What They Do Not Do
  • Device Tree Syntax
  • Device Tree Walk Through
  • Device Tree Bindings
  • Device Tree support in Boot Loaders
  • Using Device Tree Data in Drivers
  • Coexistence and Conversion of Old Drivers
  • Labs
Interrupts and Exceptions
  • What are Interrupts and Exceptions?
  • Exceptions
  • Asynchronous Interrupts
  • MSI
  • Enabling/Disabling Interrupts
  • What You Cannot Do at Interrupt Time
  • IRQ Data Structures
  • Installing an Interrupt Handler
  • Labs
Timing Measurements
  • Kinds of Timing Measurements
  • Jiffies
  • Getting the Current Time
  • Clock Sources
  • Real Time Clock
  • Programmable Interval Timer
  • Time Stamp Counter
  • HPET
  • Going Tickless
Kernel Timers
  • Inserting Delays
  • What are Kernel Timers?
  • Low Resolution Timer Functions
  • Low Resolution Timer Implementation
  • High Resolution Timers
  • Using High Resolution Timers
  • Labs
ioctls
  • What are ioctls?
  • Driver Entry point for ioctls
  • Defining ioctls
  • Labs
Unified Device Model and sysfs
  • Unified Device Model
  • Basic Structures
  • Real Devices
  • sysfs
  • kset and kobject examples
  • Labs
Firmware
  • What is Firmware?
  • Loading Firmware
  • Labs
Sleeping and Wait Queues
  • What are Wait Queues?
  • Going to Sleep and Waking Up
  • Going to Sleep Details
  • Exclusive Sleeping
  • Waking Up Details
  • Polling
  • Labs
Interrupt Handling: Deferrable Functions and User Drivers
  • Top and Bottom Halves
  • Softirqs
  • Tasklets
  • Work Queues
  • New Work Queue API
  • Creating Kernel Threads
  • Threaded Interrupt Handlers
  • Interrupt Handling in User-Space
  • Labs
Hardware I/O
  • Memory Barriers
  • Allocating and Mapping I/O Memory
  • Accessing I/O Memory
Direct Memory Access (DMA)**
  • What is DMA?
  • DMA Directly to User
  • DMA and Interrupts
  • DMA Memory Constraints
  • DMA Masks
  • DMA API
  • DMA Pools
  • Scatter/Gather Mappings
  • Labs
Memory Technology Devices (Flash Memory Filesystems)
  • What are MTD Devices?
  • NAND vs. NOR vs. eMMC
  • Driver and User Modules
  • Flash Filesystems
USB Drivers
  • What is USB?
  • USB Topology
  • Terminology
  • Endpoints
  • Descriptors
  • USB Device Classes
  • USB Support in Linux
  • Registering USB Device Drivers
  • Moving Data
  • Example of a USB Driver
  • Labs
Closing and Evaluation Survey
  • Evaluation Survey
Appendices — Booting the Target Development Board from uSD
  • Objectives of the Lab
  • Labs
Kernel Architecture I
  • UNIX and Linux **
  • Monolithic and Micro Kernels
  • Object-Oriented Methods
  • Main Kernel Tasks
  • User-Space and Kernel-Space
Kernel Programming Preview
  • Task Structure
  • Memory Allocation
  • Transferring Data between User and Kernel Spaces
  • Linked Lists
  • Jiffies
  • Labs
Modules
  • What are Modules?
  • A Trivial Example
  • Compiling Modules
  • Modules vs Built-in
  • Module Utilities
  • Automatic Loading/Unloading of Modules
  • Module Usage Count
  • Module Licensing
  • Exporting Symbols
  • Resolving Symbols **
  • Labs
Kernel Architecture II
  • Processes, Threads, and Tasks
  • Kernel Preemption
  • Real Time Preemption Patch
  • Labs
Kernel Configuration and Compilation
  • Installation and Layout of the Kernel Source
  • Kernel Browsers
  • Kernel Configuration Files
  • Kernel Building and Makefiles
  • initrd and initramfs
  • Labs
Kernel Style and General Considerations
  • Coding Style
  • Using Generic Kernel Routines and Methods
  • Making a Kernel Patch
  • sparse
  • Using likely() and unlikely()
  • Writing Portable Code, CPU, 32/64-bit, Endianness
  • Writing for SMP
  • Writing for High Memory Systems
  • Power Management
  • Keeping Security in Mind
  • Labs
Race Conditions and Synchronization Methods
  • Concurrency and Synchronization Methods
  • Atomic Operations
  • Bit Operations
  • Spinlocks
  • Seqlocks
  • Disabling Preemption
  • Mutexes
  • Semaphores
  • Completion Functions
  • Read-Copy-Update (RCU)
  • Reference Counts
  • Labs
Memory Addressing
  • Virtual Memory Management
  • Systems With and Without MMU and the TLB
  • Memory Addresses
  • High and Low Memory
  • Memory Zones
  • Special Device Nodes
  • NUMA
  • Paging
  • Page Tables
  • page structure
  • Labs
Memory Allocation
  • Requesting and Releasing Pages
  • Buddy System
  • Slabs and Cache Allocations
  • Memory Pools
  • kmalloc()
  • vmalloc()
  • Early Allocations and bootmem()
  • Memory Defragmentation
  • Labs
2023 Top 20 Training Industry Company - IT Training

Need Help?

Call us at 877-206-0106 or e-mail us at info@learnquest.com

Personalized Solutions

Need a personalized solution for your Training? Contact us, and one of our training advisors will help you find the best solution.

Contact Us

Need Help?

Do you have a question about the courses, instruction, or materials covered? Do you need help finding which course is best for you? We are here to help!

Talk to us

20% Off All AI Training Courses

Achieve more with AI-powered tools and strategies.

PROMO CODE: AI20
VALID THROUGH APRIL 30, 2024

20% Off All AI Training Courses

Self-Paced Training Info

Learn at your own pace with anytime, anywhere training

  • Same in-demand topics as instructor-led public and private classes.
  • Standalone learning or supplemental reinforcement.
  • e-Learning content varies by course and technology.
  • View the Self-Paced version of this outline and what is included in the SPVC course.
  • Learn more about e-Learning

Course Added To Shopping Cart

bla

bla

bla

bla

bla

bla

Self-Paced Training Terms & Conditions

??spvc-wbt-warning??
??group-training-form-area??
??how-can-we-help-you-area??
??personalized-form-area??
??request-quote-area??

Sorry, there are no classes that meet your criteria.

Please contact us to schedule a class.
Close

self-paced
STOP! Before You Leave

Save 0% on this course!

Take advantage of our online-only offer & save 0% on any course !

Promo Code skip0 will be applied to your registration

Close
Nothing yet
here's the message from the cart

To view the cart, you can click "View Cart" on the right side of the heading on each page
Add to cart clicker.

Purchase Information

??elearning-coursenumber?? ??coursename??
View Cart

Need more Information?

Speak with our training specialists to continue your learning journey.

 

Delivery Formats

Close

By submitting this form, I agree to LearnQuest's Terms and Conditions

heres the new schedule
This website uses third-party profiling cookies to provide services in line with the preferences you reveal while browsing the Website. By continuing to browse this Website, you consent to the use of these cookies. If you wish to object such processing, please read the instructions described in our Privacy Policy.
Your use of this LearnQuest site affirms your consent to our use of session and persistent cookies to track how you use our website.