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 ??
0
votes
1answer
28 views

How Devfs and dev file system differ

I read about devfs(known as device file system ) to facilitate device driver programming as mentioned in linux device drivers text . How different is devfs from /dev directory in linux.Are they ...
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 ...
0
votes
0answers
72 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 ...
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 ...
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, ...
0
votes
2answers
295 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 ...
0
votes
0answers
42 views

Socket in Device Driver Module

Is it possible to use TCP socket function like socket(), bind(), listen(), accept() while writing device driver module ?? Same header file <sys/socket.h> ??
1
vote
1answer
220 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
130 views

Linux allocates memory at specific physical address

I am testing a PCI Endpoint driver, I would like to do simple copy from the PCI RootPort side to the PCI Endpoint side. In PCI Endpoint side, we have address translation from PCI address to CPU ...
-1
votes
2answers
64 views

I want to learn driver developement so how to start in this? [closed]

I want to learn device driver development so how to start ? Any media for beginner or something ?
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 ...
2
votes
1answer
146 views

implementing read/write file_operations in a pci device driver

i'm new to device drivers, and i'm writing a pci driver for a PCIe FPGA card. i'm not sure how to implement the "read" and "write" functions - meaning how to use the arguments: struct file *filp, ...
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 ...
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 ...
0
votes
0answers
89 views

Cisco vpn client driver (cisco_ipsec.ko) when insmod'ed cause kernel panic

Hi I compiled cisco vpn client stack for my embedded device which has linux-2.6.39. I got the driver cisco_ipsec.ko. Since this is for an embedded device which does not have any make utility, I cross ...
0
votes
1answer
384 views

select() isnt responding to writing on /dev/input/mice [duplicate]

Possible Duplicate: select() isn't responding to writing on /dev/input/mice I am writing a program which monitors through select() on keyboard and mouse device files. It waits for any ...
1
vote
0answers
105 views

How to add a rtc node in PPC DTS?

I'm new in PPC device driver development, and I've recently encountered a problem in DTS. Our team add a rtc chip rtc-pcf8563 in to the new developing board in PPC platform. The driver is availiable ...
0
votes
0answers
35 views

Is there any way to write a common device driver for windows and linux [closed]

As far as I know we need to develop separate device drivers for windows and Linux platforms. And the programming concepts will also be very different. I'm about to start a project that makes it ...
-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
vote
1answer
84 views

Linux device file is missing

I find the driver specific stuff in /sys/class/graphic/XM_403 But in /dev/ is no XM_403 file. Here is the pertinent code. graphic_class = class_create(THIS_MODULE,"graphic"); ...
-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.
1
vote
1answer
268 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. ...
2
votes
1answer
401 views

BSP vs Device-Drivers

While understanding each by itself (or maybe not), looks like I'm far from understanding the practical differences between the two. Per my understanding, a BSP is a package of drivers and ...
0
votes
3answers
335 views

How A Device Link To Driver In Linux

Device file link to driver by major and minor number. So how drivers link to devices??? When we plug-in a device, how can kernel know it work with which module had loaded
0
votes
1answer
1k views

How usb OTG works(master/slave)

A device has usb OTG Following is scenarios when a device connected to PC ,then device act as slave (how device knows it has to act as slave) when a device connected to printer ,then device act as ...
0
votes
0answers
127 views

Timestamped serial Linux device driver

I have a system that reads two serial packet streams from two sensors. In order to maintain accuracy, the relative timing between the two streams needs to be timestamped with microsecond accuracy. ...
3
votes
3answers
355 views

C Linux Device Programming - Reading Straight from /Dev

I have been playing with creating sounds using mathematical wave functions in C. The next step in my project is getting user input from a MIDI keyboard controller in order to modulate the waves to ...
0
votes
1answer
233 views

How to write from linux device driver to hard drive using DMA

I can transfer chunks of data from application to device driver but unable to write the interface from device driver to actual harddrive using DMA. Is there any sample code or pointer on this? Would ...
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
888 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 ...
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 ...
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
2answers
205 views

What does “binary” means in device driver?

I am very much new to Device driver programming. I was going through below website. http://www.codeproject.com/KB/system/driverdev.aspx I was just confused with the word "binary". The particular ...
0
votes
1answer
125 views

Multiple IR Key Press Events

I'm currently working on an IR key handler for a box running on linux kernel 2.6.15. I'm fetching IR key events from tts/1. The issue I'm facing is that for a single key press on the remote results in ...
0
votes
2answers
466 views

How does the kernel Makefile magically knows what to compile?

I'm new in writing Linux device driver, and I'm wondering how the kernel Makefile magically knows what to compile. To illustrate what I don't understand, consider the following case: I did a #include ...
1
vote
2answers
350 views

Should I be writing a device driver for this?

I'm planning on a little hobby project, running on Linux on a SBC with GPIO. My idea is to generate PWM output on GPIO pins, and allow each pin to be available as a file in /dev, in the same way that ...
5
votes
1answer
282 views

Linux spin_lock vs. NT KeAcquireSpinLock

From what I can gather: NT's KeAcquireSpinLock is equivalent to spin_lock_bh: the one raises IRQL to DISPATCH_LEVEL, the other masks the bottom half interrupts -- functionally the same. While the NT ...
1
vote
1answer
173 views

Android apps, communicating with a device via USB port

I am new to Android Platform and I Like to know whether it is possile for an Android device(App) to communicate with Linux system via USB port for 2 way communication . If yes how it can be done . ...
2
votes
2answers
999 views

Android - Read “device attribute” fails with error “invalid length”

I am working on the TI OMAP platform with Android as the operating system. For one UseCase, we have to toggle one of the LED's in the device. The LED has number of "Device Attributes" and from the ...

1 2