Device drivers take on a special role in the Linux kernel. They are distinct “black boxes” that make a particular piece of hardware respond to a well-defined internal programming interface; they hide completely the details of how the device works.
0
votes
1answer
82 views
What Kconfig file Represents?
I had written one driver for serial communication. Now I want to add it to my linux kernel. So for that I have to change Kconfig file in drivers/usb/serial.
I have rerffered Kconfig file in that. But ...
-3
votes
1answer
86 views
Linux Network Device Driver [duplicate]
I am writing Linux driver for I/O data transfer. The data transfer should be through network communication. So, I need transfer data from kernel to Ethernet port. The Ethernet port connected to ...
0
votes
0answers
37 views
dbus-monitor --system command not responding to changes made to network interface
dbus-monitor --system command not responding to changes made to network interface, on Raspberry pi containing Linux raspberrypi 3.6.11
I am new to use Raspberry and Dbus too. I need to check the ...
0
votes
1answer
46 views
Why does my printk messages are updated in the log file lately?
I have written a simple module as follows:
#include<linux/module.h>
#include<linux/kernel.h>
static int __init own_init(void)
{
printk(KERN_INFO "Hi");
return 0;
}
static int ...
0
votes
3answers
129 views
Calling kernel_fpu_begin twice before kernel_fpu_end
I'm using the kernel_fpu_begin and kernel_fpu_end functions in asm/i387.h to protect the FPU register states for some simple floating point arithmetic inside of a Linux kernel module.
I'm curious ...
0
votes
1answer
71 views
TCP not working for custom network device driver
We have developed an ASIC for Power Line Communications and are developing a ethernet device driver for the same. The chip is connected to our host processor (iMX233 ARM9) via Serial Peripheral ...
-1
votes
2answers
67 views
Network device driver [closed]
I want to write Linux device driver for network based device. This network device is just Input output control only and also this device connects through Ethernet port via ethernet cable. How can i ...
1
vote
1answer
78 views
Volatile in C, How does it work internally [duplicate]
Just wondering how exactly volatile keyword works internally.
Tried with GCC and Turbo C(DOS based) both cases it behaves in different manners.
volatile int iData;
iData = 5;
printf("%d %d %d %d %d ...
2
votes
1answer
109 views
Linux driver for embedded Linux
I'm looking to attach some USB devices to my embedded Linux board.
It is an TI-ARM processor running embedded Linux, but I guess it could be any embedded Linux board.
If I purchase an USB device ...
1
vote
0answers
44 views
Is it possible to transmit a packet while the network interface is blocked using netif_stop_queue?
I'm trying to implement a time-slotted queueing algorithm for wifi mesh networks, using a loadable kernel module. During certain slots, packets from higher layers are allowed to pass through the wlan ...
1
vote
0answers
188 views
Spidev do not write/read simultaneously using ioctl
I hope to find some help even if this issue might be more hardware than software related (we'll see). I'm working on a custom board based on Freescales P1021 processor (ppc, e500v2 core). A external ...
1
vote
1answer
87 views
The irq in kernel function asm_do_IRQ() is different from the one I request in module
I did some experiment with a cortex-A9 development board. I used gpio_to_irq() to get an irq num and I requested the irq and wrote a small driver with it , it was 196 in syslog . And I added some ...
0
votes
0answers
36 views
Keyboard device in Unix
In Unix is it possible to tell which keyboard device are we connected to and what does it mean to open a keyboard device? And if we write a program that opens keyboard device how does the program know ...
1
vote
1answer
49 views
How to block packets received by eth0 from going up to TCP/IP stack
We are using dev_add_pack with ETH_P_ALL to get copies of sk_buff of all ethernet frames received by eth1. Is there a way we can prevent eth1 from forwarding all the ethernet frames up to TCP/IP layer ...
0
votes
1answer
88 views
Linux can bus driver
I am going through a can base network driver for MCP-2515
https://github.com/raspberrypi/linux/blob/rpi-3.6.y/drivers/net/can/mcp251x.c
Please suggest where i can find the description of the ...
1
vote
0answers
33 views
instert kprobes at each system call
how a kernel probe can be inserted at each system call point? I need to track all syscalls made by a program.I managed to instrument some routines, but not the actual syscall.
thaks
0
votes
1answer
63 views
Please tell about the query of network packet traversal in linux
I was reading Understanding linux networking Internal book and the pdf Network packet capture in Linux kernelspace on the link networkkernel.pdf
In the Understanding linux networking Internal under ...
1
vote
0answers
70 views
How to find device driver associated with a device file?
ls -l /dev
command lists the device files, and the associated information like major number, minor number.
cat proc/devices
command helps me to find the device name associated with a major ...
0
votes
1answer
79 views
DMA on virtual address returned from ioremap
Is there any way to do DMA on virtual address returned from ioremap
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
1
vote
0answers
30 views
Query Related to Packet traversal in kernel
After reading the book "Understanding Linux Network internals".
I came to know about some concepts of how we get the packet from the network:-
> When working in interrupt driven model, the nic ...
0
votes
0answers
77 views
Programmatically reclaim HID device from default driver in Linux
I have a USB device with HID digitizer profile(It needs only one Interrupt IN end point), It has another Interrupt OUT endpoint for properitary communication. When I connect the device to my Linux ...
1
vote
1answer
149 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
1answer
31 views
Some good material on how to test a device driver?
I am newbie in device driver development and test, i have a good idea o C and Data structures, Perl and C++ to some extent.
Can any one suggest me a good book/web material for testing a device driver ...
1
vote
2answers
169 views
COM port detection in Linux
Please let me know if there is any API, system call, function (in Linux) which I can use my C program to detect a COM port dynamically, i.e., whenever a USB modem dongle is inserted in the port I will ...
1
vote
1answer
32 views
What is idr_alloc()
In the source code implementation it says idr_alloc() is used to allocate new idr entry. I couldn't find the man page and want to know why it is used especially when writing drivers for MTD devices.
0
votes
0answers
38 views
get_user_pages failed for PCIe memory
I have mapped the pci memory in user space like
fs = open("/dev/mem",O_RDWR | O_SYNC);
mmap_src = mmap(NULL, BUFF_COUNT, PROT_READ | PROT_WRITE, MAP_SHARED, fs, 0xe0000000);
0xe0000000 is the ...
0
votes
0answers
24 views
How to find out a station got disassociated in mad wifi driver
I'm working with mad wifi drivers for 802.11 (linux version 2.6.32-44).
In the AP code i need to detect when a station leaves the network (gets disassociated) in order to free some buffers i work ...
2
votes
2answers
52 views
Get man pages for driver functions
I am new to linux device drivers. I would like to know if there are man pages for the driver functions like register_chrdev. If yes, then how do I get them? Is there a package that I can download ...
2
votes
1answer
62 views
What does a i2c_new_dummy do?
I am working on an mfd driver. There is a single i2c bus, shared by four i2c client devices (on s single IC). The i2c_new_dummy API is used when attaching an adapter to each of the clients.
Why is it ...
2
votes
1answer
164 views
Simple char device driver / module - Linux RedHat 8 (2.4.18) on VM segmentation fault after ./module_unload
edit: I fixed the code and turned it to a more compact code regarding memory allocations, everything works now . You might aware me if I'm doing something wrong
I'm not sure that the Write&Read ...
-3
votes
2answers
37 views
Is it theoretically possible to achieve JIT compilation of windows drivers into linux drivers in order to bypass complex proprietary windows drivers? [closed]
I would suspect such a method might not even expose much from an engineering standpoint from the architecture and hence to not even be intrusive to the involved entity's intellectual property.
1
vote
1answer
52 views
What does an mfd_cell structure describe in a linux kernel driver. Is it describing sub devices or a hierarchy node for sub-devices
I have been trying to understand the mfd framework in linux kernel to write my drivers but there seems to be hardly any documentation and the mfd core itself doesnt seem to have much helpful comments. ...
2
votes
0answers
167 views
Simulating multi-touch events (one finger linear swipe)
I am doing an edit to a driver file that uses Multi-Touch protocol.
My goal is to bind a swipe gesture from (x1,y1) to (x2,y2) that follows a line.
To do this i execute this function inside the key ...
0
votes
1answer
92 views
Error while compiling kernel: missing double arithmetic?
I am compiling an android kernel with android toolchain.
Inside a driver, I need to use double arithmetic, but when I compile i get lots of error, one for each time i use double type.
For instance i ...
0
votes
1answer
87 views
How to use CAN-Bus on an Intel Atom Q7 module with EG20T chipset on Linux?
I want to use the CAN-Bus interface on an Intel Q7 module with the EG20T chipset. I got it to work on Windows but now i have to get it to work on Linux but I barely find any information.
I just need ...
0
votes
0answers
35 views
linux drivers Is there a way to remove a module
How can i remove .ko module using an API call instead of a shell command. System() function i already know. Is there any other way?
1
vote
3answers
97 views
How is “for_each_possible_cpu” expanded in cpufreq.c file?
I was browsing through driver/cpufreq/cpufreq.c to understand how it works. I came across this piece of code which I could not understand.
In cpufreq_core_init :
for_each_possible_cpu(cpu) {
...
0
votes
0answers
52 views
linux FATAL kernel is too old [closed]
kernel dependancy with my binary...when I executes it it shows " FATAL:kernel is too old " how can I solve it ? Should I use alternative functions ?
uname -a
Linux manage 2.6.18.8-1smp #23 SMP Fri ...
1
vote
1answer
69 views
How do I determine the files corresponding to a uinput device?
In linux when a uinput device is created, one or more event files corresponding to that device get created in the file system. (For example, if I create a uinput mouse, then the file ...
5
votes
1answer
387 views
What is the difference between Platform driver and normal device driver..?
I previously had a thought about the platform driver as well as normal device driver like :
Platform driver is for those devices that are on chip. and ,
Normal device driver are for those that are ...
0
votes
0answers
54 views
Zynq Clock To Use With Devfreq
I am looking at the exynos4_bus.c driver that is used with devfreq power management to try to develop a similar driver for a peripheral on the a Zynq SoC. The method I'm concerned about is this one:
...
1
vote
1answer
30 views
Exynos4_PPMU Struct Explanation
I am looking at the exynos4_bus.c file in the Linux kernel (drivers/devfreq) and have encountered this struct:
struct exynos4_ppmu {
void __iomem *hw_base;
unsigned int ccnt;
unsigned int ...
0
votes
2answers
105 views
Writing memory of the traced process.
I am playing around with ptrace in linux. I am trying to write the memory of the traced process using /proc/pid/mem interface.
the function I ma using for accomplish this task is :
void ...
1
vote
1answer
53 views
Limitations on printing to kernel logs
I'm working on a linux device driver (kernel version 2.6.32-37). I debug my code mostly by printing to the kernel logs (using printk). everything goes well, until my computer suddenly stop responding. ...
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
1answer
67 views
How to test a pressure sensor on Android?
I have seen this app, but how can I test the driver of the pressure sensor on Android ?
4
votes
1answer
272 views
What is the difference between module_init and subsys_initcall while initializing the driver?
What is the difference between module_init and subsys_initcall while initializing the driver?
0
votes
0answers
193 views
/dev/video0 : invalid argument
Why I am not able to read this file. I tried reading this file with cat as :
cat /dev/video0
But it says
cat: /dev/video0 : invalid arguments
Similarly, if I try to use dd as :
dd ...
0
votes
1answer
101 views
Userspace PCI BAR access returns 0xFF at every offset
I am trying to access a PCI BAR (#5) for a PCIe SATA bridge from userspace, but whenever I mmap() from the BAR via the /sys/bus/pci/devices/.../resource5, I get 0xFF at every offset in the file. Other ...



