device number registration


 
Thread Tools Search this Thread
Top Forums UNIX for Advanced & Expert Users device number registration
# 1  
Old 07-18-2012
device number registration

I would THANK if you answer my doubts in DETAILS please.

Here's a sample code to create a device:

Code:
if(scull_major) {
  dev=MKDEV(scull_major, scull_minor);
  result=register_chrdev_region(dev, scull_nr_devs, "scull");
} else{
   result=alloc_chrdev_region(&dev, scull_minor, scull_nr_devs,  "scull");
 scull_major=MAJOR(dev);
}

if(result < 0)
{
   printk(KERN_WARNING "scull:can't get major %d\n", scull_major);
   return result;
}

1. I didn't understand the first line! In the second and third lines, a device is created using the given minor and major numbers (I am sure this is a static allocation) and register_chrdev creates multiple instances of it.
what about the first line? I can't understand what that if(major number) doing there, what's so relevant to it?

2. if the major number is not created it goes to while n creates a dynamic major number. Major number means the driver ID to which the device associates with, OK? but so far, how would the kernel know about which driver it shall connect it? it just allocates one dynamically!

3.
Quote:
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.
!!! what's so relevant between major number and device numbers in 3? major number is the driver number the device associates with and it's not the device number (that's minor number). So, why 3 notes that?

4. Why do we need a seperate script to read /proc/devices file?
# 2  
Old 08-01-2012
Please post what Operating System and version you have and what Shell (or other language) this is? The syntax is alien to me because there are no space characters between commands and code block brackets.
# 3  
Old 08-01-2012
Quote:
Originally Posted by methyl
The syntax is alien to me because there are no space characters between commands and code block brackets.
This alien language is undoubtedly C and this is part of a Linux device driver code.

@dr_mabuse The first line is a very common C shortcut for
Code:
if(scull_major != 0)

or the equivalent
Code:
if(scull_major != NULL)

Beyond that, have a look at what alloc_chrdev_region is doing to investigate your second question. Chapter 3 of this book might help you.
Login or Register to Ask a Question

Previous Thread | Next Thread

3 More Discussions You Might Find Interesting

1. Solaris

some questions on the minor number of device

hi, dear all Now I have a problem on the minor number of device. I have many sd disks. The sd driver will create many minor numbers for these disks when attached. But the sd driver may be not remove thest minor number when detached. The minor number will become very big If I attach and... (2 Replies)
Discussion started by: ForgetChen
2 Replies

2. Linux

Device serial number

Hey! I'm trying to figure out a sollution for a problem I have at my company with an Iomega MiniMax 500 GB USB disk. If i run cat /proc/bus/usb/devices I get this information: T: Bus=01 Lev=02 Prnt=04 Port=00 Cnt=01 Dev#= 5 Spd=480 MxCh= 0 D: Ver= 2.00 Cls=00(>ifc ) Sub=00 Prot=00... (2 Replies)
Discussion started by: noratx
2 Replies

3. Programming

How to check number of first slot on the MO or TAPE device?

Hi, I need to discover is MO or Tape device counting slots begining on 0 or 1. THS (0 Replies)
Discussion started by: HrnjicaMujo
0 Replies
Login or Register to Ask a Question