Understanding the Structure of a Linux Kernel Device Driver

Поделиться
HTML-код
  • Опубликовано: 3 окт 2024

Комментарии • 73

  • @samiurkhan
    @samiurkhan Год назад +17

    Thanks a million for this. Seeing a device driver actually getting made made it make way more sense than the official book. Cheers

    • @spradotube
      @spradotube  7 месяцев назад +1

      I am glad you enjoyed it @samiurkhan!

  • @ninthsign76
    @ninthsign76 3 месяца назад +1

    Thanks for a great presentation to understand the driver. It is really amazing how you have broken this into steps which makes the structure and its underlying working so much easier to understand

    • @spradotube
      @spradotube  3 месяца назад

      I am glad you enjoyed it!

  • @radhakrishnans785
    @radhakrishnans785 6 месяцев назад +1

    This gives basic understanding and overview of device driver in a simpler way.
    It is is good for beginers to watch this video before reading any books, blog...etc

    • @spradotube
      @spradotube  6 месяцев назад

      That was the purpose, yeah. Thanks for commenting!

  • @David-yp9oz
    @David-yp9oz Месяц назад +1

    Thank you so much! This was very helpful

    • @spradotube
      @spradotube  Месяц назад

      I am glad you enjoyed it!

  • @richjamjam
    @richjamjam 9 месяцев назад +5

    Very good video. I learned a lot. Having just come from Low Level Learning and Low Bytes Productions, this solidified it all.

    • @spradotube
      @spradotube  7 месяцев назад

      Hey @richjamjam! I am glad you enjoyed it

  • @shashidhark.v5111
    @shashidhark.v5111 Год назад +5

    I have seen other videos of yours. You explain things really well. Thank you very much for sharing your knowledge with us.

  • @pkl2000us
    @pkl2000us 2 года назад +7

    hey. Do you have a link to the code

    • @spradotube
      @spradotube  7 месяцев назад

      The link to the code is in the description of the video.

  • @mithrandirthegrey7644
    @mithrandirthegrey7644 Год назад +3

    fml been trying to write a bridge driver for an LCD for 3 weeks can't get it working. I hate computers.

    • @fabriciomansillapuente
      @fabriciomansillapuente Год назад

      Let's talk. Let's hang out, I am also interested on that

    • @mithrandirthegrey7644
      @mithrandirthegrey7644 Год назад

      @@fabriciomansillapuente I ended up trying to set up the bridge as a panel in the device tree instead just to force some MIPI DSI signals out.

    • @spradotube
      @spradotube  7 месяцев назад

      @mithrandirthegrey7644 I am glad you could work that out!

  • @sangsuplee5467
    @sangsuplee5467 Год назад +1

    Thanks for your nice lecture.

  • @adammontgomery7980
    @adammontgomery7980 Месяц назад +1

    Nice! What is that hardware setup? It looks like a daughter board with the LED on an itx motherboard.

    • @spradotube
      @spradotube  Месяц назад

      I used a Toradex platform (Colibri iMX6 + Aster carrier board) with a custom expansion board. You can translate to English the link below in case you want more info about the hardware:
      sergioprado.org/aster-ipe-cape-e-o-novo-kit-de-desenvolvimento-da-embedded-labworks/

    • @adammontgomery7980
      @adammontgomery7980 Месяц назад

      ​@@spradotube Thank you for the response. It's even more complicated than I thought.

  • @justcurious1940
    @justcurious1940 17 дней назад +1

    Great video Sergio, can u write a device (NIC) driver that always sends a copy of any packet to a specific IP address?

    • @spradotube
      @spradotube  15 дней назад

      It is certainly possible to hook up into kernel functions to do this, but probably this is better done nowadays with eBPF (ebpf.io/)

  • @electrolance7505
    @electrolance7505 Год назад +3

    I find this presentation has right balance of theory and actual code, has given very good basic understanding how drivers works in linux kernel.

    • @spradotube
      @spradotube  7 месяцев назад

      I am glad you enjoyed it @electrolance7505!

  • @kumarnkvc
    @kumarnkvc Год назад

    This is very helpful. Thank you.

    • @spradotube
      @spradotube  7 месяцев назад

      Hi @kumarnkvc! I am glad you enjoyed it!

  • @ericgorder1
    @ericgorder1 4 месяца назад +1

    Thanks so much you have made it so clear what the real difference of user space and kernel space interfaces. Well presented video, good work!

    • @spradotube
      @spradotube  4 месяца назад

      I am glad you enjoyed it!

  • @nandishsg9805
    @nandishsg9805 2 года назад +2

    Nice explaining

    • @spradotube
      @spradotube  7 месяцев назад

      I am glad you enjoyed it!

  • @SmartBoy-l1f
    @SmartBoy-l1f 8 дней назад

    Hi sergio,
    This is one of the "Best" content i've ever seen on linux device driver, these 58 mins. helped me save months to understand linux device driver.
    Pls continue to give some insights on linux process management, file-systems and network subsystems as well.
    A million thanks for creating this lecture.

    • @spradotube
      @spradotube  7 дней назад

      Thanks for the kind words! I am glad you enjoyed it!

  • @moatasemelsayed6226
    @moatasemelsayed6226 Год назад +1

    how to know all the framework that is supported by Linux like led ,I2c,watchdog ,etc ?

    • @spradotube
      @spradotube  7 месяцев назад

      Unfortunately, there is no easy way to answer this question. I don't know of any document that describes all frameworks. Probably the source code is the best place to look at. Most frameworks are a subdirectory inside the drivers/ directory in the Linux source code, but there might frameworks in other places.

  • @radhakrishnans785
    @radhakrishnans785 6 месяцев назад +1

    @9:15
    I think flow sequence may be bi-directional.
    Based on components and its arrangement in your test/target board shows that you have good experience in 8-bit microcontroller based developments and leveraged those experiences in this test/target board.

    • @spradotube
      @spradotube  6 месяцев назад

      Yeah, you are right, for every request there is a response, so the flow sequence is bi-directional (though in the diagram I wanted to represent only the request).

  • @junwu680
    @junwu680 4 месяца назад +1

    Great tutorial and step by step guide from a simple start to a complete nice solution. Many thanks.

    • @spradotube
      @spradotube  4 месяца назад

      Thanks! I am glad you enjoyed it!

  • @MillaGamer
    @MillaGamer 9 месяцев назад +1

    Sergio tu tem o GIT com esses exemplos? Parabéns pelo conteúdo.

    • @spradotube
      @spradotube  7 месяцев назад

      Olá Milla! O código de exemplo está na descrição do video.

  • @sd07kwon
    @sd07kwon 10 месяцев назад +1

    리눅스의 device 제어에 대하여 상세하게 설명을 해주셨네요. 정말 좋은 강의였습니다. 반복해서 볼께요

    • @spradotube
      @spradotube  7 месяцев назад

      Thanks @sd07kwon! I am glad you enjoyed it!

  • @catcatcatcatcatcatcatcatcatca
    @catcatcatcatcatcatcatcatcatca Год назад +1

    I definitely lacked a lot of knowledge compared to the target audience, but this was still helpful for introducing the consepts. Will probably rewatch this in few months and hopefully understand much more.

    • @spradotube
      @spradotube  7 месяцев назад

      I am glad you enjoyed it!

  • @andrerclaudio
    @andrerclaudio Год назад +3

    Olá, Sérgio. Você tem git repositório para os arquivos.c desse hands-on?

    • @spradotube
      @spradotube  7 месяцев назад

      Olá @andreribeiroclaudio2747! O link para baixar o código-fonte está na descrição do video.

  • @bennguyen1313
    @bennguyen1313 Год назад

    How do you call functions from a driver's source file? I have a USB (VID0A46 / PID9621) Ethernet Adapter and found driver source code for it,
    qop_kernel/drivers/net/usb/dm9620
    But not sure how I can use it (compile, load, call functions)! For example, I installed gcc and plugged it in , but how do I call functions from that file.. like "dm_write_eeprom_word"?

    • @spradotube
      @spradotube  7 месяцев назад +1

      Hi @bennguyen1313,
      You usually don't call functions from drivers. Linux device drivers use kernel subsystems to export an interface to the user (usually in /sys or /dev).
      For example, there is a LED driver with a function to turn on/off this LED. You don't call this function directly. To turn on/off the LED, you write to a file exposed by the driver (via the LED framework) in /sys/class/leds//brightness.

  • @kenyie8080
    @kenyie8080 Месяц назад

    I really appreciate the structure of the talk. Starting from the most basic and simple implementation, then demonstrating the issues with basic implementations and then explaining why each framework is introduced as a best practice provides a great way to understand the necessity of each abstraction and framework and what problems are solved by the current best practices. I wish all talks could explain what problems are solved and why we need to adopt the current best practices.

    • @spradotube
      @spradotube  Месяц назад

      Thanks for the kind words!I am glad you enjoyed the talk!

  • @ivanpiri8982
    @ivanpiri8982 9 месяцев назад

    Very clear talk, probably the best introduction of the subject present here on yt. My only question that I have while following along is, why when in the "hands on" part we do modprobe drvled the loading of the module doesn't taint the kernel? All my drivers do and i can't figure out how to stop this from happening. My module is built inside the kernel since when i boot i can do "modprobe drivername" so the kernel knows my module but i don't know if i have to do other things

    • @spradotube
      @spradotube  7 месяцев назад

      Thanks @ivanpiri8982!
      About your question, loading an out-of-tree kernel driver does not always taint the kernel. Whether loading a driver taints the kernel depends on the licensing and behavior of the module.
      If you load a kernel module that it is not licensed under a GPL compatible license or performs actions that are considered risky or unstable, like using certain unsafe APIs or mechanisms, it might taint the kernel.
      If an out-of-tree driver is licensed under a compatible open-source license (like GPL), and it properly declares its license to the kernel, like in my examples, it doesn't cause the kernel to be tainted.

  • @viktor1772
    @viktor1772 Год назад +1

    Hi Sergio, it is a very nice lecture on linux Kernel Device Drivers. I am trying to practice in this topic, so please, could you provide the source code from this tutorial to have a deep look on it? Thanks in advace! 😃

    • @spradotube
      @spradotube  7 месяцев назад

      Hi @viktor1772! I am glad you enjoyed it. You can find the source code in the video's description.

  • @David-7815
    @David-7815 9 месяцев назад

    Thank you fr this insightful lecture Mr. Prado!
    Can you kindly share exactly what hardware do you use in your demo so who's interested can follow hand on with your demonstrations?

    • @spradotube
      @spradotube  7 месяцев назад +1

      Thanks @David-7815! I've used a Colibri iMX6 SoM connected to the Aster carrier board (both from Toradex).

  • @ahmedzain6270
    @ahmedzain6270 4 месяца назад

    Many thanks I keep revisit your presentation, the order you created is very good

    • @spradotube
      @spradotube  4 месяца назад

      I am glad you liked it!

  • @armando6114
    @armando6114 4 месяца назад

    Muito bom o video!

  • @aashishchauhan1989
    @aashishchauhan1989 Год назад +1

    Brilliant

    • @spradotube
      @spradotube  7 месяцев назад

      I am glad you enjoyed it @aashishchauhan1989!

  • @agarwalminal
    @agarwalminal 11 месяцев назад

    Do you give guidance for the open source contribution to Linux and other projects? If so, can i get a sessoin?

    • @spradotube
      @spradotube  7 месяцев назад

      Hi @agarwalminal! Currently, I don't do that. But I have plans to do some Ask me anything sessions. Make sure you are subscribed to the channel, enable notifications, and join one of those sessions.

  • @venkatanagarajendraprasadv5152
    @venkatanagarajendraprasadv5152 7 месяцев назад

    Excellent video

  • @yjiang7894
    @yjiang7894 7 месяцев назад

    The depth of this tutorial is spot on. Thank you so much!

    • @spradotube
      @spradotube  7 месяцев назад

      I am glad you enjoyed it @yjiang7894!

  • @icojb25
    @icojb25 Год назад

    Great video, thanks a lot

    • @spradotube
      @spradotube  7 месяцев назад

      Thanks @icojb25! I am glad you enjoyed!

  • @calyptratus474
    @calyptratus474 2 месяца назад

    Brasil citado! faz o L

    • @spradotube
      @spradotube  2 месяца назад

      I am glad you enjoyed it!