Tagged Questions
1
vote
1answer
136 views
How to implement a Linux Device Driver for Data Acquisition Hardware?
I am developing an acquisition device which requires DMA operation to transfer large data frames to the main memory. For now I am assuming the destination is a contiguous memory region so I am ...
1
vote
0answers
65 views
Does select() use kernel timer( in jiffies ) or high res timer
I have a application in which i have to sleep for a very short time ( in order of few micro seconds ). Fortunately my linux kernel 2.8.* supports high res timers.
I have 2 options to sleep now
1) ...
2
votes
1answer
267 views
how does open works for normal file and device drivers
Currently, I am learning Linux device drivers. And got stuck over how opening a device file works ?
What I got until now...
Consider the a simple code that opens a normal file..
...
1
vote
1answer
464 views
wait queues vs semaphores in linux
Why do we use wait queues in the linux kernel rather than use semaphores for synchronization ? What is the difference between using wait queues vs semaphores for synchronization ?
0
votes
2answers
2k views
Which OS support wifi direct? [closed]
I have read that we only need a special software(driver) in order to support WiFi Direct in a specific operating system, that is to say, we don't need buying new network interfaces, so the key is the ...
2
votes
2answers
647 views
init function invocation of drivers compiled into kernel
In Linux if device drivers are built as loadable kernel modules, then upon inserting the device driver kernel module, the kernel calls the init function of the device driver as pointed out by ...
0
votes
2answers
69 views
how does keyboard input reach the right virtual terminal in GUI
Lets say we have an 8 core system running linux and you are using GUI desktop and have 10-20 terminal open.
When you type something, the user input appears on the correct terminal. How does that ...
1
vote
2answers
678 views
How would one prevent MMAP from caching values?
I've written a linux driver that ioremaps exports PCI BAR0 for a particular device to a sysfs binary attribute allowing userspace to directly control it.
The problem rears when I attempt to MMAP on ...
0
votes
1answer
102 views
uart problem with linux and user written operating system
statement: i have tried almost all the options for getting to work, trying to send data thru UART from a intel pentium 2 system using a device driver in polled io mode written by me, its very simple ...
2
votes
1answer
752 views
Worker threads in linux
Why is it sometimes necessary to create new worker threads, that execute deferrable work functions, instead of just scheduling it on the default "events/n" kernel worker thread ?
5
votes
6answers
870 views
Where to use volatile?
I read about volatile keyword, but I don't know in what situations I should use it.
When the memory (variable) is getting updated and process is not aware of that?
In what cases should drivers use ...
3
votes
3answers
4k views
module_init and init_module of linux
I have been trying to port few linux drivers and realized that there is substantial difference between kernel version 2.4 and 2.6 of linux.
In the 2.4 version of kernel, the module programming was as ...
0
votes
0answers
969 views
userspace to kernel space and sysfs and how to use sysfs to change one reservered value in igmpv3 pkt
I have posted query previously and i am repeating same I want to modify igmpv3 (Linux) which is inbuilt in kernel2.6.-- such that it reads a value from a file and appropriately decides reserved(res 1) ...