0
votes
1answer
32 views

Difference between 2 process and 2 threads in contex of usage of device file ( node file )

I had made a driver(simpler one). Now i am opening device file through 2 process (By fork()) and through 2 threads. What is the differences of them ??
2
votes
0answers
62 views

Kernel panics : trying to write / read on tiny tty driver

I'm a beginner to the Linux programming and trying my hands on some device driver examples while practising. The below code (a trimmed down version of tiny_tty.c) loads perfectly using insmod and I'm ...
1
vote
1answer
71 views

Linux USB driver: Interrupt URBs

I suppose I actually have two separate questions, but I think that they are related enough to include them both. The context is a Linux USB device driver (not userspace). After transmitting a ...
1
vote
2answers
80 views

About to print KERNEL messages on terminal

According to manual page it told that if priority of message's log level is higher than default set log level then it will be printed on terminal. But when I had used sentence like printk(KERN_ALERT ...
0
votes
0answers
71 views

Performance test tool for GPU drivers Open source Mali/UMP

I am using ARMv7 TV Board, having board specific GPU driver mali400x4 (OpenGL ES 1.1, 2.0 and OpenVG 1.1). I would like to know any test project suite to test performance, stress, Lmbench for this ...
0
votes
0answers
29 views

lregistry replacement in Linux kernel driver

Background: I'm porting a driver from Windows to Linux. The driver uses the Windows Registry to persist data across invocations. Basically, there are few key/values in the registry that the user / ...
0
votes
2answers
123 views

IOCTL device driver

can anyone explain for me ,what is IOCTL and what it is used for? and how can I use it ,why cant I define new function that does the same work as IOCTL ? thanks
0
votes
2answers
122 views

Regarding how the parameters to the read function is passed in simple char driver

I am newbei to driver programming i am started writing the simple char driver . Then i created special file for my char driver mknod /dev/simple-driver c 250 0 .when it type cat /dev/simple-driver. it ...
1
vote
3answers
149 views

device_create with existing device name

I'm learning how to write character device drivers as dynamically-loadable modules for the Linux. Typically I use the following sequence of function calls to register the device and create a device ...
1
vote
1answer
53 views

How to support IA-32 for mmap on x86_64?

I need to support an old hardware, which user land library doesn't have source code, but I have the source code for the device driver. Therefore, I have to rewrite the device driver to support IA-32 ...
0
votes
1answer
80 views

getting original MAC address using driver

Linux : uname -a :2.6.18 as well as 2.6.39 I am very new in it... When the driver is first loaded, before ifconfig can change the MAC address, the existing (permanent) MAC address is stored away, ...
1
vote
1answer
219 views

For a shared interrupt line how do I find which interrupt handler to use?

For a shared interrupt line,I can have several interrupt handler. The kernel will sequentially invoke all the handlers for that particular shared line. As far as I know each handler when invoked ...
1
vote
2answers
150 views

Kernel macro for counting bits set

Is there a standard Linux Kernel bit operation macro, which returns the number of bits set in an unsigned long ?
0
votes
2answers
100 views

Disabling Keyboard device from user level

How can I disable the keyboard temporarily inside a C program. What I have already thought is to disable the IRQ line(IRQ 2) for the Keyboard. I googled for it and found the disable_irq() function ...
0
votes
1answer
52 views

del_gendisk haging during cleanup of block device after media removal during IO

I have block driver for a hot-pluggable PCI storage device. if the device is removed during IO, I never seem to get a call to release (i.e. mydev_blk_release(struct gendisk *gd, fmode_t mode)), which ...
1
vote
1answer
41 views

NULL pointer dereference in swiotlb_unmap_sg_attrs() on disk IO

I'm getting an error I really don't understand when reading or writing files using a PCIe block device driver. I seem to be hitting an issue in swiotlb_unmap_sg_attrs(), which appears to be doing a ...
1
vote
0answers
123 views

Linux block driver merge bio's

I have a block device driver which is working, after a fashion. It is for a PCIe device, and I am handling the bios directly with a make_request_fn rather than use a request queue, as the device has ...
0
votes
1answer
32 views

blk_cleanup_queue() doesn't return on block device deregistration

I'm writing a block device driver for a hot-pluggable PCI memory device on 2.6.43.2-6.fc15 (so LDD3 is out of date with respect to a lot of functions) and I'm having trouble getting the block device ...
3
votes
1answer
228 views

where is device driver code executed? Kernel space or User space?

Part1: To the linux/unix experts out there, Could you please help me understanding about device drivers. As i understood, a driver is a piece of code that directly interacts with hardware and exposes ...
0
votes
1answer
147 views

Keeping device functionality inside device controller rather than OS kernel. What are consequences?

A friend of mine asked me this question in the class and I could not answer it. He asked: Since we know kernel controls the physical hardware via device drivers. What if all this functionality is ...
1
vote
0answers
88 views

How does Linux kernel handle double click event for a PS/2 mouse in mousedev.c

I am trying to understand how linux kernel handles the mouse interrupts in detail. I was able to trace out the flow starting from the interrupt in i8042.c to an event in mousedev.c. In the function ...
-1
votes
1answer
672 views

What is the difference between devm_kzalloc() and kzalloc() in linux driver programming

I have found devm_kzalloc() and kzalloc() in device driver programmong. But I don't know when/where to use these functions. Can anyone please specify the importance of these functions and their usage. ...
-1
votes
2answers
357 views

Linux function class_device_create changed to?

I use a 2.6.32 Kernel. It seems that the function class_device_create() changed. But I can't find the corresponding function.
4
votes
3answers
2k views

In Linux, how do you use device_create within an existing class?

Note: I'm listing this problem as it is today, I'm not opposed to changing the implementation (moving the creation of the class to a common area for example) if it makes things easier... I'm just not ...
1
vote
1answer
267 views

change smp_affinity from linux device driver

If I examine the cat /proc/interrupts command, all the IRQs are listed under cpu0 in SMP system. I can change the smp_affinity mask to tag the IRQ to particular CPU using following command. ...
1
vote
2answers
247 views

is memory allocated by kmalloc() ever automatically freed?

I'm writing a device driver that, among other things, allocates a block of memory with kmalloc. This memory is freed when the user program closes the file. In one of my experiments, the user program ...
3
votes
1answer
216 views

How do I port a serial port device driver from Linux 2.6.21 to 2.6.36?

It appears that some time between these two kernels a lot of data structures were changed, and it breaks my driver in several places. First, in 2.6.21 the struct uart_port had a field "struct ...
0
votes
1answer
81 views

Device Driver proc entry ownership

I am a newbye in Device Driver and I am struggling with a /sys/class/net/atm0/statistics/* problem, I would like now which module is owner of that entry, there is a way to do that ? Thanks in ...
0
votes
0answers
177 views

How do I use same folder in /sys/class for all the sensors?

I am trying to put all the sensors at one place in sysfs, under the folder /sys/class/sensors. Presently, only barometer is the one which does class creates as follows: barom->class = ...
1
vote
1answer
151 views

How to split bio into multiple bios?

I want create a block device that get a bio with request for n sector and split it into n bio with 1 sector. I used bio_split but it doesn't work and reaches BUG_ON. Is there any function to do such ...
0
votes
1answer
1k views

Documentation about device driver programming on kernel 3.x

I have some homework which I should program a virtual device driver on kernel 3.x Can you suggest some documentation about it? I'm using fedora btw. I know there are lots of tutorials, but there is ...
0
votes
2answers
864 views

After insmod I am not able to see the device entry in /proc/devices

After performing the command "insmod demo_device" the modules listed in /proc/modules **demo_device 2528 0 - Live 0xe02da000** fp_indicators 5072 1 - Live 0xe02d2000 (P) screader 22672 1 - Live ...
1
vote
2answers
222 views

Best way to install interrupt handler for port 0x60

I'm writing a simple key logger as a means to understanding interrupts and IO ports for linux drivers. Now from what I've read, I need to register interrupt handlers via ... int request_irq(unsigned ...
4
votes
1answer
111 views

system calls failing for iomapped memory in linux.

I am mapping some io memory to vmalloced area of in the driver. I am also sharing this area with user processes using flag (PAGE_SHARED in ioremap_page_range). Now I am able to access this shared ...
2
votes
2answers
210 views

Linux device driver's used minor numbers

From the /proc/devices file it is possible to see the device drivers' major number. Is there a way to list the minor numbers supported by a device driver? I don't have the sources, I need a way to get ...
0
votes
1answer
452 views

Connection between mmap user call to mmap kernel call

I am trying to understand how mmap works. User level call of mmap looks like below. void *mmap(void *addr, size_t len, int prot, int flags, int fildes, off_t off); but kernel level mmap ...
1
vote
1answer
886 views

Find event device for keyboard, mouse

What is a foolproof method to find the event device node for the hardware keyboard or mouse? What I have tried is to read /proc/bus/input/devices and search for 'Keyboard' or 'Mouse' in the device ...
2
votes
1answer
100 views

Does order of independent kernel-module insertion at system startup matter?

This is the background for this question - I've got some problems with Huawei sometime back as it was being detected as a usb storage device but not as a data card. I came across this thread while I ...
1
vote
1answer
385 views

Clarifying who decides memory mappings and port IO mappings

I studied a bit about port mapped IO and memory mapped IO and I figured out how the first works (not the second yet), so if you have something well-explained about how memory mapped IO is performed (I ...
4
votes
2answers
2k views

Memory mapped IO - how is it done?

I've read about the difference between port mapped IO and memory mapped IO, but I can't figure out how memory mapped Io is implemented in modern operating systems (windows or linux) What I know is ...
0
votes
1answer
84 views

How i can open a special file?

i am newbie to driver coding. Now i am trying implement ioctl in my code. To make a call using ioctl from my user program, i need to open my special file and the return value from the 'open' call to ...
0
votes
1answer
208 views

tty core flow characters

I am running linux on hardware without screen and dumping all the data onto serial. I am reading linux serial out through applications like hyperterm or teraterm. I get properly formatted output for ...
3
votes
1answer
447 views

Link between low level drivers and tty drivers

I was writing a console driver for linux and I came across the tty interface that I need to set up for this driver. I got confused as to how tty drivers are bound with low-level drivers. Many times ...
2
votes
1answer
66 views

Need for /dev nodes at the time of accessing Linux Drivers

I am trying to understand the necessity of /dev node in Linux 2.6 . I do understand that, in Linux 2.4 days, entries under this directory were necessary so as to access the Drivers from userspace. But ...
1
vote
1answer
258 views

talking to device in linux. WRITE function

I'm trying to write a simple device driver, and use the Dev_Read() and Dev_Write() functions, which I have already defined. My driver registers a character device tied to a given major number this way ...
0
votes
2answers
211 views

relation between user space printing, console and tty

I have already posted a question to do printing from user space on a kind of unconventional serial port. linux non-standard serial console However, I realized that I am a bit confused over the ...
0
votes
1answer
164 views

linux non-standard serial console

I am porting linux to one of the custom architectures. My serial console is unconventional, in the sense it does not work on interrupts. I am trying to output messages from linux boot process onto ...
1
vote
1answer
330 views

How to access DMA in Linux

I am writing a device driver in linux for which I need to implement DMA. It is clear that DMA buffers can be allocated by a call to pci_alloc_consistent(). But how can we write commands to those ...
0
votes
3answers
436 views

Device Driver Development in Linux

I plan to learn embedded linux and writing linux device drivers. After reading about device drivers and walking through some tutorials, I'm a little confused about the kernel-source that to be used ...
1
vote
1answer
150 views

Make contiguous region in kernel space

I'm allocating memory by alloc_page(GFP_USER) and I have allocated more than one page. I need to make that I will see it as contiguous region (I need to make from it buffer), so I want to revoke to it ...

1 2