Linux Device Driver Q&A

 Linux Device Driver Q&A

who calls the Probe function for Driver? 

  1. The starting trigger function for the driver->probe() callback is the module_init() macro called while loading the driver; this macro is defined in include/linux/module.h.

  2. module_init(my_driver_init) has the callback to my_driver_init() function. my_driver_init() function should have a call to platform_driver_register(my_driver)

  3. platform_driver_register(my_driver) assigns my_driver -> probe() handle to generic drv -> probe() and calls the driver_register(my_driver) function.

  4. driver_register(my_driver) function adds my_driver to the platform bus and calls driver_attach() function.

  5. In the same way, even the platform_device needs to attach to the platform bus.

  6. Finally, only if the driver_match_device() returns success based on the .name & .id_table of the driver matches in the platform devices list that comes either from ACPI/DTS, then the driver_probe_device() gets called that has the drv->probe() callback.


    SOURCE

 what is segmentation fault:

You cannot access nonexistent memory in your address space. This will cause a segmentation fault.

Page Fault:

If you access unmapped memory, the CPU raises a page fault and the OS handles it

Pgae:
Memory page, virtual page, or simply page are terms you use to refer to a fixed length contiguous block of virtual memory.


Frame:
Frame refers to a fixed-length contiguous block of physical memory on top of which the operating system maps a memory page    

  • In How Many Ways We Can Allocate Device Number?

In 2 ways we can allocate device numbers
a) statically b)dynamically

  • How Can We Allocate Device Number Statically?
register_chrdev_region() function will statically allocate device numbers. which is declared in <linux/fs.h>
int register_chrdev_region(dev_t first, unsigned int count, char *name);

Here;
first is the beginning device number of the range you would like to allocate. The minor number portion of first is often 0.
count is the total number of contiguous device numbers you are requesting.
name is the name of the device that should be associated with this number range. it will appear in /proc/devices and sysfs.
  • How Can We Allocate Device Number Dynamically ?
alloc_chrdev_region()will dynamically  allocate device numbers.
int alloc_chrdev_region(dev_t *dev, unsigned int firstminor, unsigned int count, char *name);
Here:
dev is an output-only parameter that will, on successful completion, hold the first number in your allocated range. 
firstminor should be the requested first minor number to use; it is usually 0
count is the total number of contiguous device numbers you are requesting.
name is the name of the device that should be associated with this number range. it will appear in /proc/devices and sysfs.
  • How Can We Free Device Numbers ?

void unregister_chrdev_region(dev_t first, unsigned int count);

  • What Is Major Number And It's Usage ?
It's an  integer number  mainly used to provide the association between the device driver and device file . this number is used by kernel .
                (or)

        The major number tells you which driver handles which device file. 

  • Can We Have Same Major Number For More Than One Device File ?
yes . we can have
  • What Is Minor Number And It's Usage ?
Answer :
The minor number is used only by the driver itself to differentiate which device it's operating on, just in case the driver handles more than one device.
(or)

one driver can control more than one device .minor will be used to distinguish the one device from other devices 

  • What Is Range Of Major And Minor Numbers?
0-255
  • What Is Use Of Dev_t Type ?
Answer :This is used to hold device numbers—both the major and minor parts.
  • How To Retrieve Major And Minor Number From Dev_t Type ?
To obtain the major or minor number  of a dev_t, use:
MAJOR(dev_t dev); // to obtain major number
MINOR(dev_t dev);  // to obtain minor number
int major=MAJOR(dev_t dev);

int minor =MINOR(dev_t dev);

  • How Can I Use My Own Major And Minor Number For A Device File ?

Answer :

if you have the major and minor numbers and need to turn them into a dev_t, use:

register_chrdev_region works well if you know ahead of time exactly which device numbers you want. Often, however, you will not know which major numbers your device will use; there is a constant effort within the Linux kernel development community to move over to the use of dynamically-allocated device numbers.

  • How To See Statically Assigned Major Numbers ?

Some major device numbers are statically assigned to the most common devices. A list of those devices can be found in Documentation/devices.txt within the kernel source tree

  • What Is The Disadvantage Of Dynamic Device Number Assignment ?
Answer :

The disadvantage of dynamic assignment is that you can't create the device nodes in advance, because the major number assigned to your module will vary.

  • Where Can We Write Allocation And Freeing Of Device Number's Code ?
Answer :

allocation : init function of a module 

freeing : cleanup function of a module


Comments

Popular posts from this blog

Overview of ISO/SAE 21434 Standard

Cryptography and Encryption Basics - I

ECU LIST