본문 바로가기

리디 접속이 원활하지 않습니다.
강제 새로 고침(Ctrl + F5)이나 브라우저 캐시 삭제를 진행해주세요.
계속해서 문제가 발생한다면 리디 접속 테스트를 통해 원인을 파악하고 대응 방법을 안내드리겠습니다.
테스트 페이지로 이동하기

Mastering Linux Device Driver Development 상세페이지

컴퓨터/IT 개발/프로그래밍 ,   컴퓨터/IT IT 해외원서

Mastering Linux Device Driver Development

Write custom device drivers to support computer peripherals in Linux operating systems
소장전자책 정가31,000
판매가31,000
Mastering Linux Device Driver Development 표지 이미지

Mastering Linux Device Driver Development작품 소개

<Mastering Linux Device Driver Development> Master the art of developing customized device drivers for your embedded Linux systems

▶What You Will Learn
⦁Explore and adopt Linux kernel helpers for locking, work deferral, and interrupt management
⦁Understand the Regmap subsystem to manage memory accesses and work with the IRQ subsystem
⦁Get to grips with the PCI subsystem and write reliable drivers for PCI devices
⦁Write full multimedia device drivers using ALSA SoC and the V4L2 framework
⦁Build power-aware device drivers using the kernel power management framework
⦁Find out how to get the most out of miscellaneous kernel subsystems such as NVMEM and Watchdog

▶Key Features
⦁Stay up to date with the Linux PCI, ASoC, and V4L2 subsystems and write device drivers for them
⦁Get to grips with the Linux kernel power management infrastructure
⦁Adopt a practical approach to customizing your Linux environment using best practices

▶Who This Book Is For
This book is for embedded developers, Linux system engineers, and system programmers who want to explore Linux kernel frameworks and subsystems. C programming skills and a basic understanding of driver development are necessary to get started with this book.

▶What this book covers
⦁ Chapter 1, Linux Kernel Concepts for Embedded Developers, walks through the Linux kernel helpers for locking, blocking I/O, deferring work, and interrupt management.

⦁ Chapter 2, Leveraging the Regmap API and Simplifying the Code, provides an overview of the Regmap framework and shows you how to leverage its APIs to ease interrupt management and abstract register access.

⦁ Chapter 3, Delving into the MFD Subsystem and Syscon API, focuses on MFD drivers in the Linux kernel, their APIs, and their structures, as well as introducing the syscon and simple-mfd helpers.

⦁ Chapter 4, Storming the Common Clock Framework, explains the Linux kernel clock framework and explores both producer and consumer device drivers, as well as their device tree bindings.

⦁ Chapter 5, ALSA SoC Framework – Leveraging Codec and Platform Class Drivers, discusses ALSA driver development for both codec and platform devices and introduces concepts such as kcontrol and digital audio power management (DAPM).

⦁ Chapter 6, ALSA SoC Framework – Delving into the Machine Class Drivers, dives into ALSA machine class driver development and shows you how to bind both codec and platform together and how to define audio routes.

⦁ Chapter 7, Demystifying V4L2 and Video Capture Device Drivers, describes V4L2's key concepts. It focuses on bridge video devices, introduces the concept of subdevices, and covers their respective device drivers.

⦁ Chapter 8, Integrating with V4L2 Async and Media Controller Frameworks, introduces the concept of asynchronous probing so that you don't have to care about bridge and subdevice probing order. Finally, this chapter introduces media controller frameworks in order to provide video routing and video pipe customizations.

⦁ Chapter 9, Leveraging V4L2 API from the User Space, closes our teaching series on V4L2 and deals with V4L2 from the user space. It first teaches you how to write C code in order to open, configure, and grab data from a video device. It then shows you how to write as little code as possible by leveraging user-space video-related tools such as v4l2-ctl and media-ctl.

⦁ Chapter 10, Linux Kernel Power Management, discusses power management on Linuxbased systems and teaches you how to write power-aware device drivers.

⦁ Chapter 11, Writing PCI Device Drivers, deals with the PCI subsystem and introduces you to its Linux kernel implementation. This chapter also shows you how to write PCI device drivers.

⦁ Chapter 12, Leveraging the NVMEM Framework, describes the Linux Non-Volatile Memory (NVEM) subsystem. It first teaches you how to write both provider and consumer drivers as well as their device tree bindings. Then, it shows you how to take the most out of the device from user space.

⦁ Chapter 13, Watchdog Device Drivers, provides an accurate description of the Linux kernel Watchdog subsystem. It first introduces you to Watchdog device drivers and gradually takes you through the core of the subsystem, introducing some key concepts such as pre-timeout and governors. Toward the end, this chapter teaches you how to manage the subsystem from the user space.

⦁ Chapter 14, Linux Kernel Debugging Tips and Best Practices, highlights the most-used Linux kernel debugging and tracing techniques using kernel-embedded tools such as ftrace and oops message analysis.


출판사 서평

▶ Preface
Linux is one of the fastest-growing operating systems around the world, and in the last few years, the Linux kernel has evolved significantly to support a wide variety of embedded devices with its improved subsystems and a range of new features. With this book, you'll find out how you can enhance your skills to write custom device drivers for your Linux operating system.

Mastering Linux Device Driver Development provides complete coverage of kernel topics, including video and audio frameworks, that usually go unaddressed. You'll work with some of the most complex and impactful Linux kernel frameworks, such as PCI, ALSA for SoC, and Video4Linux2, and discover expert tips and best practices along the way. In addition to this, you'll understand how to make the most of frameworks such as NVMEM and Watchdog. Once you've got to grips with Linux kernel helpers, you'll advance to working with special device types such as Multi-Function Devices (MFD) followed by video and audio device drivers.

By the end of this book, you'll be able to write feature-rich device drivers and integrate them with some of the most complex Linux kernel frameworks, including V4L2 and ALSA for SoC.


저자 소개

▶About the Author
- John Madieu
John Madieu is an embedded Linux and kernel engineer living in Paris, France. His main activities consist of developing device drivers and Board Support Packages (BSPs) for companies in domains such as IoT, automation, transport, healthcare, energy, and the military. John is the founder and chief consultant at LABCSMART, a company that provides training and services for embedded Linux and Linux kernel engineering. He is an open source and embedded systems enthusiast, convinced that it is only by sharing knowledge that we can learn more. He is passionate about boxing, which he practiced for 6 years professionally, and continues to channel this passion through training sessions that he provides voluntarily.

목차

▶TABLE of CONTENTS
▷ Section 1: Kernel Core Frameworks for Embedded Device Driver Development
⦁Chapter 1: Linux Kernel Concepts for Embedded Developers
⦁Chapter 2: Leveraging the Regmap API and Simplifying the Code
⦁Chapter 3: Delving into the MFD Subsystem and Syscon API
⦁Chapter 4: Storming the Common Clock Framework

▷ Section 2: Multimedia and Power Saving in Embedded Linux Systems
⦁Chapter 5: ALSA SoC Framework – Leveraging Codec and Platform Class Drivers
⦁Chapter 6: ALSA SoC Framework – Delving into the Machine Class Drivers
⦁Chapter 7: Demystifying V4L2 and Video Capture Device Drivers
⦁Chapter 8: Integrating with V4L2 Async and Media Controller Frameworks
⦁Chapter 9:Leveraging the V4L2 API from the User Space
⦁Chapter 10: Linux Kernel Power Management

▷ Section 3: Staying Up to Date with Other Linux Kernel Subsystems
⦁Chapter 11: Writing PCI Device Drivers
⦁Chapter 12: Leveraging the NVMEM Framework
⦁Chapter 13: Watchdog Device Drivers
⦁Chapter 14: Linux Kernel Debugging Tips and Best Practices


리뷰

구매자 별점

0.0

점수비율
  • 5
  • 4
  • 3
  • 2
  • 1

0명이 평가함

리뷰 작성 영역

이 책을 평가해주세요!

내가 남긴 별점 0.0

별로예요

그저 그래요

보통이에요

좋아요

최고예요

별점 취소

구매자 표시 기준은 무엇인가요?

'구매자' 표시는 리디에서 유료도서 결제 후 다운로드 하시거나 리디셀렉트 도서를 다운로드하신 경우에만 표시됩니다.

무료 도서 (프로모션 등으로 무료로 전환된 도서 포함)
'구매자'로 표시되지 않습니다.
시리즈 도서 내 무료 도서
'구매자’로 표시되지 않습니다. 하지만 같은 시리즈의 유료 도서를 결제한 뒤 리뷰를 수정하거나 재등록하면 '구매자'로 표시됩니다.
영구 삭제
도서를 영구 삭제해도 ‘구매자’ 표시는 남아있습니다.
결제 취소
‘구매자’ 표시가 자동으로 사라집니다.

이 책과 함께 구매한 책


이 책과 함께 둘러본 책



본문 끝 최상단으로 돌아가기

spinner
모바일 버전