Tagged Questions
0
votes
1answer
39 views
Cannot Wake up Atmel ATSHA204 Using I2C
I've recently been given the task of writing drivers for some of the I2C devices in our product. I was a complete beginner at this, but I've managed to use a mixture of i2cset and i2cget along with ...
0
votes
2answers
71 views
why do we need to burn a root file system in embedded system development
You know when we do embedded system development,we'll burn a root file system first(like cramfs etc.) and then burn a Linux kernel.Since there's already a file system in the Linux kernel, why should ...
2
votes
2answers
57 views
How to convert kmalloc() address to physical address
I have a PCI device which exposes a BAR and few offsets in the bar for accessing the device.
On one of the Bar offset, i need to program a 64KB allocated memory. In my Linux driver, i allocate a 64KB ...
0
votes
0answers
27 views
printk stopped writing to after booting into new compiled kernel
I have compiled latest Linux kernel version (3.7.6) on my VMware machine and was able to successfully boot into new kernel, however for some reason I am not able to view printk messages from kernel in ...
0
votes
0answers
48 views
Why filp_open get failed here?
In mu linux kernel
driver A register my device and creates node as
/dev/xyz
Now after that driver B's probe is called inside that i am opening my device with flip_open()
mm_segment_t fs;
fs ...
1
vote
0answers
57 views
flush linux OS serial buffer
I have a serial program connecting to two devices via two different ports. Whenever I read, of course I have a local buffer with allocated statically with size of packet I am willing to read from ...
3
votes
1answer
74 views
How can I send data packets into the network without using sockets?
I want to send data packets into the network bypassing the Linux network stack. I mean is there any way where I can interrupt the network card driver and place a frame in the network card buffer ...
2
votes
2answers
78 views
How to allocate user space buffer in kernel driver?
In some mess up i need to call one kernel function who is not suppose to call from kernel space because in argument it takes buffer from user space allocated.
const char __user *buf
But i need to ...
0
votes
2answers
53 views
How to associate a kernel module to a specific device (driver instance)?
dev-audio declares two devices:
struct platform_device s5pv210_device_iis0 = {
63 .name = "samsung-i2s",
64 .id = 0,
65 .num_resources = ...
2
votes
1answer
93 views
How to create a simple sysfs class attribute in Linux kernel v3.2
I'm learning how to use sysfs in my Linux modules, but I'm having the hardest time finding current documentation on these topics. The Linux Device Drivers 3rd Edition book I've been using seems to be ...
2
votes
1answer
93 views
compiling raspbian wheezy usb driver ch341.c to ch341.ko
I am supposed to compile /usb/serial/ch341.c file to ch341.ko.
I am using rs485 module which is not working. I found on some forums that other people also facing this problem because drivers come with ...
1
vote
1answer
36 views
Purpose of wake_up_sync/wake_up_interruptible_sync in the Linux kernel
I'm following an example in the Linux Device Drivers 3rd Edition book:
if (temp = = 0)
wake_up_interruptible_sync(&scull_w_wait); /* awake other uid's */
return 0;
The author states:
...
0
votes
1answer
86 views
Including ioctl codes in userspace program
Is there is a common practice for userspace programs to include ioctl codes used in a kernel module.
mydev.h:
#ifndef MYDEV_H
#define MYDEV_H
#define <linux/ioctl.h>
#define MYDEV_IOC_MAGIC ...
3
votes
3answers
157 views
What's the point of a Linux character device driver if you can just use outb/inb from userspace? [closed]
I'm having a hard time understand when I should write a device driver instead of just sending opcodes directly to the hardware via outb from my userspace programs. I initially figured that I should ...
1
vote
2answers
273 views
Call a userspace function from within a Linux kernel module
I'm programming a simple Linux character device driver to output data to a piece of hardware via I/O ports. I have a function which performs floating point operations to calculate the correct output ...
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 ...
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 ...
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 ...
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
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
2answers
170 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 ...
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 ...
2
votes
0answers
168 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 ...
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) {
...
5
votes
1answer
388 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
77 views
On a linux (raspbian) system can I get at low level mmc driver features such as erase?
I want to erase an SD card using the MMC driver. Can I get at these features through the standard IO functions if I open the drive at a raw level? I do not want to write or modify my own driver. I'm ...
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 ...
2
votes
2answers
89 views
process information at runtime at kernel level
I am working on a linux kernel module which would take care of all the processes that are running for a specific task. Is it possible to know if the certain process named 'X' is still running or not ...
0
votes
2answers
81 views
Making automated 2D machine movement with C
I have this little project, that is a machine which movement in 2 Dimensions, "walking" 1 block at time. So I´m starting with programming and I would like to print the numbers in order, like the ...
0
votes
1answer
181 views
Getting MAC address for a given IP from ARP entry (Linux kernel)
I am writing a kernel module and need, for a given IP, to verify if there is an ARP entry on the ARP cache of the kernel for that IP. If it exists, I need to then fetch the MAC address from this ARP ...
1
vote
1answer
82 views
Within char device, where do i put ioread?
I've got a pci device and all I want is to read its memory by "cat"ing from /dev/pcidevice. My first attempt for the char device's read function looked like this:
ssize_t cdev_read(struct file *filp, ...
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, ...
0
votes
1answer
51 views
What is the value returned by following macro
What is the value returned by following macro if SNDRV_CARDS is equal to 8
#define SNDRV_DEFAULT_IDX { [0 ... (SNDRV_CARDS-1)] = -1 }
I found this in a driver code.
2
votes
1answer
614 views
copy_to_user vs memcpy
I have always been told(In books and tutorials) that while copying data from kernel space to user space, we should use copy_to_user() and using memcpy() would cause problems to the system. Recently by ...
1
vote
1answer
223 views
adding attributes to platform device in linux kernel drivers
I have created a simple test device. My intention is to create a few custom sysfs files and get setting from them. I tried first by adding a kobject and with my own sys_ops. That worked well. However, ...
0
votes
1answer
134 views
What is the use scenario of switch_dev_register
I am trying to understand the fsa9485 driver(USB switch). there in dock initialization code I came across:
switch_dev_register(&switch_dock)
switch_dock is a structure of type switch_dev and in ...
0
votes
0answers
133 views
disable TCP/IP protocol stack in linux [closed]
I am testing my own protocol stack for IP packets & this is done with the help of kernel-modules. So i registers my stack as the handler for IP packets in the linux kernel. But due to TCP/IP stack ...
1
vote
3answers
167 views
using spinlocks in user-space application
I am trying to create a kernel-module which has an structure & i want to use the same structure in user-space application and this application works with the given module.
the main problem is ...
4
votes
2answers
517 views
Programmatically obtaining the Vendor ID, Product ID of a USB device on Linux platform
I am a Newbie in Device Driver Coding. I have been trying to write a simple device driver, in which I am suppossed to get the Vendor ID and Product ID Programmatically. Having gone through almost all ...
1
vote
2answers
249 views
why to register struct cdev in driver code
This may be a novice question, but please help me to understand it.
Why exactly do we need to register the struct cdev in our character driver?
0
votes
1answer
109 views
What prevents mtd from being read?
I have a small program which I'm using to attempt to read out the details of the MTDs on my embedded Linux platform. I'm running into problems where most blocks can't be read and I'm not 100% sure why ...
1
vote
1answer
164 views
How to get rid of warning when copy_to_user(struct *file, const char __user *buf, size_t len, loff_t *off_t )
This is my myread and mywrite function of the null driver.
#define SIZE 6
static char c[SIZE];
static ssize_t myread(struct file *file,char __user *buf,size_t len, loff_t *fops)
{
...
0
votes
1answer
70 views
How to reset the buffer(initialize to zero) in driver read function:myread(struct file *file,char __user *buf,size_t len, loff_t *fops)?
I need to make this user space buffer to zero before copying the string c into the buf How to initialize the buffer to zero.
static ssize_t myread(struct file *file,char __user *buf,size_t len, ...
0
votes
2answers
69 views
In my read function myread it is continuously printing the read data when i do cat /driver/mydriver. I need to print only once how to do that
I wrote h into driver by doing echo:
echo -n h /dev/mydriver
When I do cat /dev/mydriver, myread function is printing h continuously. I wanted to print once. How to do that.
static char m;
static ...
0
votes
2answers
296 views
Reading character devices in linux
I read the device file /dev/hidraw0 when in the terminal by typing
cat /dev/hidraw0
as the hidraw0 was the usb mouse, the output was a sequence of characters. This sequence was generated as I moved ...
-2
votes
2answers
62 views
One time function execution
One function is called from two diffirent files to load some data, in some cases it is loaded from one file and in some it is loaded from other. But in corner cases it is called from both the files, ...





