Tagged Questions
0
votes
1answer
22 views
How to determine the IRQ number for a USB device?
I am new to driver development. However, I purchased an OSR USB FX2 Learning Kit, which comes with sample codes for Windows kernel/user mode driver. However, I am writing the driver in Linux (Ubuntu ...
0
votes
1answer
12 views
linue kernel driver, dereference pointer and printk
this is a testing device driver code.
I have kernel space data which is dptr->data.
Afte I copyt it to user. I would like to printk it.
But my printk seems prints out address.
if (copy_to_user(buf, ...
0
votes
0answers
17 views
Where to start Android drivers with I2C
Thanks for taking a moment to read my question. I am a starving intern and I really want to get some work done!
I have a sensor device, OEM, that I will be adding to a dragonboard like this. ...
0
votes
0answers
8 views
How can I get the corresponding MSI message in an interrupt?
We are using an FPGA on a PCIe card. I am able to reserve the proper resources and the MSI interrupt fires correctly. My problem is discerning the interrupt sources from: My Linux driver receives only ...
1
vote
1answer
24 views
Change idVendor and idProduct of embedded USB device
Can I change those values on my Embedded device or do I need to recompile the Gadget Serial Driver?
0
votes
0answers
19 views
HAL layer vs Device driver
In Linux, HAL provides hardware abstraction and device driver too provide hardware abstraction. Can you please clarify me the difference between two ?
0
votes
0answers
39 views
DisplayLink Device on Linux - Mathematical Function
I'm developing a custom driver for a linux implementation of the open source DisplayLink driver.
DL Source Code -- http://libdlo.freedesktop.org/wiki/
I'm stuck in one step where I'm needing to send ...
0
votes
1answer
38 views
Is there any kill_proc() replacement for proprietary Linux kernel drivers?
I'm in the process of porting 4 proprietary (read: non-GPL) Linux kernel drivers (that I didn't write) from RHEL 5.x to RHEL 6.x (2.6.32 kernel). The drivers all use kill_proc() for signalling the ...
0
votes
0answers
18 views
Application agnostic and transparent proxy
I'd like to write a proxy which intercepts requests going out to a particular port of a remote host(at the TCP level), modify and replay it. I'd like this to happen transparently and I'd like to ...
0
votes
2answers
63 views
Make an usb video grabber driver
I have buy an usb video grabber on ebay but I haven't received an official device, it's a fake, and this one is the only one fake not supported by Linux. I would like to write the linux driver, but I ...
1
vote
0answers
48 views
get pointer for existing device class (struct class) in Linux kernel module
get pointer for existing device class (struct class) in Linux kernel module
Hi all!
I am trying to register a device in an existing device class, but I am having trouble getting the pointer to an ...
1
vote
1answer
54 views
What is the equivalent of IOCTL_STORAGE_QUERY_PROPERTY on linux?
I am trying to get the hard drives serial number on linux without the need for root access. This is possible on windows via this source In essence it does an DeviceIoControl with ...
3
votes
3answers
137 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
259 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
1answer
24 views
can not find the driver in /proc/device
I want to compile a device driver in kernel, and I configure it with *, (not in module ). After the compilation, I can't see the device in /proc/device. Also I check the output of make bzImage, the ...
0
votes
0answers
51 views
Why won't it do mouseclick?
I'm trying to modify the g15daemon driver and hardcoding the keypresses i want on my macro keys into the extra G-keys. I wanted to put mouse click on one button.
It gave me an error once saying that ...
-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
2answers
182 views
Understanding linux standard USB webcam drivers
I'm trying to understand the layers of software that interface with USB webcams.
As I understand it:
A standard webcam fits into the category of a 'USB Video Device Class', or 'UVC'.
And in linux, ...
0
votes
0answers
120 views
Samsung ARM SoC serial port platform driver registers no “serio device”
I am currently tinkering around with a Parrot DF3120 digital picture frame. Inside is Samsung SoC S3C2412 which runs linux quite nicely. I have hooked up a AVR microcontroller to the serial port which ...
0
votes
1answer
49 views
Double role WiFi SoftAP
I know the purpose of softAP in WiFi.
While enabling the softAP WiFi playing a host role we cant activate to client role till deactivate the softAP.
Why we can't design the double role softAP, ...
1
vote
1answer
83 views
“Device has no release() function” - what does this mean?
I am trying to write a simple linux kernel driver to turn a GPIO pin on while the module is loaded. Module loading works, but when I call rmmod to remove it I get this error:
sudo rmmod psctl
...
0
votes
0answers
122 views
USB isochronous transfer
Can anyone give me an example to do isochronous transfers(Read for example) in usb on a linux device driver.I am fairly new to linux device drivers and I am trying to write a device driver to capture ...
2
votes
0answers
109 views
My ioctl function is not called in kernelspace
Ok so the thing is: I am trying to create my own driver for my Gamepad right now, I found out the original reason why I wanted to create it does not exist but I still want to do it for the experience ...
0
votes
1answer
37 views
Is it possible to interfere in the headers of the MAC protocol in wifi using madwifi driver?
I'm working with a madwifi ath5k driver. basically what i'm trying to do is to change some things in the behavior of the MAC protocol in order to implement network coding.
in some parts of my project ...
0
votes
1answer
76 views
Raspbian/Java: Classpath and MySQL, working in Windows and not on Pi
I know this question has been asked/answered several times, but I still couldn't find a solution to this ClassNotFoundException error, because it works on my computer but not on my RasPi (on which I ...
0
votes
0answers
42 views
linux block driver queue
I have written a block driver for a SATA drive. I have some printk statements so I can see what is happening. When I process a new request, the requests always seem to be 8 sectors (4096 bytes) in ...
0
votes
0answers
136 views
How to capture Linux keyboard driver output?
I have a Linux embedded board with USB keyboard connected. There is no X installed, no XFree nor Xorg installed. I can see keyboard scancode events showing in /dev/input/event4.
But I want ASCII ...
1
vote
2answers
114 views
Linux Kernel: Getting packets from a netdevice
I'm trying to write a simple program that takes a packet from an interface and prints out its destination and source MAC addresses at the Linux Kernel level. This is my first project working with the ...
1
vote
0answers
884 views
Linux stuck in CPU soft lockup?
My system is a CentOS 6.3 (running kernel version 2.6.32-279.el6.x86_64). I have a loadable kernel module which is a driver that manages a PCIe card. If I manually "insmod" the driver while the OS ...
1
vote
1answer
102 views
Beginner Linux Networking 802.11 MAC/driver code [closed]
I am a beginner to linux networking stack and kernel programming.
I want to learn more about 802.11mac and wireless driver development. Currently, I am looking at some code in ...
0
votes
0answers
68 views
enable spi on android
i tried to enable spidev in android kernel:
# make menuconfig
and then set the spi driver enable.
compile the kernel and boot it on my device.
but during boot the device buzzer start to beep and ...
2
votes
1answer
60 views
Is it possible to have 2 kernel module linked to the same /dev/device?
I want to simulate an expensive device by a software mockup (we call it (B)) interacting with /dev/device in place of the real device
Currently a kernel module already exists to manage the real ...
1
vote
1answer
140 views
Linux kernel driver: IRQ triggered or timeout
In a linux kernel driver, I would like to repeat indefinitely the following sequence:
at time T, a hardware IRQ is enabled
between time T and T + "around" 15ms, the IRQ callback can be reached if ...
0
votes
0answers
35 views
Linux Interrupt Block Driver
I want to convert my block driver to be interrupt driven. I have a request function and an interrupt function. When the request function is called I will start a transfer then when the interrupt fires ...
0
votes
0answers
57 views
Prevent USB flash drive from being used
What I need, is to write a linux program/driver which will allow to use only flash drives with registered UUIDs.
Unregistered flash drives should not be accessible.
As I understand, if I have root ...
0
votes
2answers
142 views
How to write a packet to TAP interface in C?
Does any one know how to write a packet into a TAP interface in C? Or any other language?
I have constructed an Ethernet datagram by myself, and I want to write it to a specific tap interface.
...
1
vote
0answers
80 views
Linux Device driver with fdisk
I have developed a device driver for use with a block device. I have tried using fdisk on the device using
fdisk /dev/sda
I have some debug code in my driver and I can see that it is calling the ...
1
vote
0answers
87 views
Is there really no way to control priority of workqueue processing as compared to user processes/threads?
I've been reading a variety of references that discuss the use of bottom-half work queues for deferred processing in linux drivers. From what I glean, it seems like any work done by kernel work ...
-1
votes
1answer
51 views
communicate with a driver from a kernel module
I want to communicate with a driver (/dev device) from a kernel module. I have an application and some kernel modules associated with it. From the lowest KM I want to read and write to the driver. ...
1
vote
1answer
134 views
Linux or Android Driver for KR070PC7S LCD Display
I'm trying to build an android linux kernel for an amlogic meson3 processor. Specifically the current running Linux shows the display configuration is
CONFIG_AML_TCON_KR070PC7S
When searching on ...
1
vote
1answer
51 views
How do I know whether a device driver works in Linux?
For a mouse, if I issue the command cat /dev/input/mouse1 and then move the mouse, there will be outputs in the console. From this I know that the mouse works.
But for the touchpad of my laptop, ...
0
votes
0answers
80 views
Linux device driver error
I have an embedded system and I have developed a device driver for a hard disk controller. When I insert the driver using insmod I get the following error.
WARNING: at fs/sysfs/dir.c:455 ...
0
votes
0answers
208 views
c writing a pci device driver for linux [closed]
I have been writing a library to use with my programs to control my homemade pci card.
I know how to get addresses to io and memory, but I don't know, that how I should read their content and write ...
-1
votes
1answer
246 views
How to write an Hello world driver for linux [closed]
Recently I'm much excited about linux. I would like to learn how to write simple linux drivers.I know C and python . I'm using ubuntu 11.10 (3.0.0-12-generic kernal).
My Doubts
What are the ...
1
vote
1answer
53 views
how to test a selfwritten linux sounddriver?
I wrote a sounddriver for linux. It looks like it works fine. I tested it with the alsa applications: aplay and arecord
When I am trying to test it with another application (PJSUA) it doesn't work as ...
0
votes
0answers
120 views
node.js and linux kernel/user space communication?
I have devised an SPI character device driver (for a FPGA hardware device) on an embedded processor (a beaglebone).
With a C example program, I can start/stop the device (through sysfs entries), and ...
1
vote
1answer
153 views
Custom ALSA driver does not execute the open functions from struct snd_pcm_ops
I am trying to create my own custom sound driver using ALSA. So far I have succeeded loading the module, by which I mean:
my probe function is executed
the constructor is executed
I see the ...
-1
votes
1answer
91 views
how to set chip select for ds3234
We are writing an spi driver. How can I set the "chip select pin" for linux ds3234 driver? Name of the functions or the header file that can help would be appreciated.
1
vote
0answers
77 views
getting device instance in linux driver
In many linux drivers, you see the struct called device being used to reference device that is using the driver. I'm trying to find where the getter setter functions for this device struct are and ...
0
votes
0answers
62 views
no device file /dev/mem on virtual machine, how to create one
Rent a VPS (Ubuntu 12.04), have root access, however, don't see the device file /dev/mem.
Is there a way to create it to access bios info. Thanks.


