Tagged Questions
0
votes
1answer
30 views
Linux IOCTL commands
Trying to implement IOCTL commands, and just encountered as below:
If _IO is for both read and write
than why should I consider _IOR and _IOW
any clue please ?
0
votes
1answer
36 views
Updating Linux Device Driver
I'm a LDD newbie and I've been assigned a task of upgrading a driver which worked on a 2.6.35 kernel to work on a current kernel, 3.6.10.
In order to get the driver to compile, I had to change from ...
0
votes
1answer
81 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 ...
1
vote
0answers
174 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
1answer
254 views
ioctl failing “No such File or Directory”
I am trying to control a LED on a custom board. I have written the device driver and successfully loaded it. I have created a device file in /dev directory with the correct major number. Then I wrote ...
1
vote
0answers
51 views
implement a filtering linux device
I like to make a linux device, that wraps an existing one and allows to peek on any calls made. For example, udev could be configured to make a renamed version of the original device soft link, and my ...
0
votes
1answer
1k views
Storage size of isn't known
This is part of an IOCTL switch case. I am getting the following error?
error: storage size of 'data' isn't known
error: 'mesg' undeclared (first use in this function)
case PASS_STRUCT:
...
0
votes
1answer
625 views
Passing struct to device driver through IOCTL
I am trying to pass a struct from user space to kernel space. I had been trying for many hours and it isn't working. Here is what I have done so far..
int device_ioctl(struct inode *inode, struct ...
0
votes
1answer
260 views
Device Driver IOCTL pass int
I have written a device driver and need to pass an int value to it. Am using copy_from_user() for this. Here is what I have done so far,
#define MY_MAGIC 'G'
#define TEST_IOCTL _IO(MY_MAGIC, 0)
...
2
votes
1answer
296 views
Why unlocked_ioctl in file_operations returns long, while ioctl() from sys/ioctl.h returrns int?
The signature of unlocked_ioctl inside struct file_operations in is
long (*unlocked_ioctl) (struct file *, unsigned int, unsigned long);
while the man 2 ioctl says the signature of ioctl(2) is:
...
3
votes
1answer
696 views
Issue with SPI (Serial Port Comm), stuck on ioctl()
I'm trying to access a SPI sensor using the SPIDEV driver but my code gets stuck on IOCTL.
I'm running embedded Linux on the SAM9X5EK (mounting AT91SAM9G25). The device is connected to SPI0. I ...
0
votes
1answer
942 views
Linux Char Driver: blocking ioctl call
I am new to driver development, and I am trying to write a simple char driver that has ioctl that allows user process to get the time(timespec) that my char driver took on last read and write.
long ...
1
vote
2answers
521 views
Linux 2.6.18 SCSI SPIN and SPOUT SG_IO ioctl's to a sg LTO5 device
I am trying to take advantage of hardware encryption of LTO5 devices using ioctl's in my fuse file system. It should be quite simple, setup a io_hdr with a cdb:
0xB5, 0x20, 0x00, 0x10, 0x00, 0x00, ...
2
votes
2answers
5k views
Can someone help me replace “lock_kernel” on a block device driver?
Thank you for looking at this post. I am trying to patch up a network block device driver. If you need to see the sources they are at http : / / code.ximeta.com.
I noticed that lock_kernel() seems ...
2
votes
3answers
4k views
Is it possible to call a user-space callback function from kernel space in Linux (ioctl)?
Is it possible to expand the ioctl interface in Linux so that the user-space application can send a pointer to a function to the kernel space driver?
I'm in particular thinking of ways to handle the ...
