A device driver is a specialized software component (usually considered "system software") which allows a system to interact with a particular type or class of hardware device, such as a keyboard, serial port, disk drive, video display, memory controller, or other peripheral.

learn more… | top users | synonyms

0
votes
2answers
443 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
348 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 ...
1
vote
1answer
260 views

Standard COM port commands for Atmel's microchips CDCs

I'm trying to use an AT90USB162 Atmel chip as a Communication Device Class (CDC) for communicating some external sensors to some Windows applications. In Atmel Application Notes site for this chip I ...
0
votes
0answers
351 views

Installing custom driver on Win7 64-bit

I'm trying to install a custom driver (.sys, virtual device) on Windows 7 64-bit, but I always get this error in Event Viewer: "The following boot-start or system-start driver(s) failed to load" ...
1
vote
1answer
131 views

.INF files and NCF_HAS_UI: how to write .dll for displaying advanced properties tab of network driver?

I have a NDIS driver, which gets listed both in connection properties's installed items list and in device manager; the question is, how do I write an extension which will be used for managing ...
1
vote
0answers
88 views

generic graphics driver for mirroring

Is it possible to write an Windows generic graphics driver that will 1) use the currently installed driver for standard monitor out AND 2) perform some custom stuff with the video buffers (like ...
1
vote
1answer
109 views

Does windows require a user-mode driver to be signed?

I have an inf file for a user-mode driver for a device. Does windows require me to get this driver signed? Are there any risks of not having this driver signed? I know that kernel-mode drivers ...
1
vote
2answers
431 views

Can I allocate memory pages at a specified physical address in a kernel module?

I am writing a kernel module in a guest operating system that will be run on a virtual machine using KVM. Here I want to allcoate a memory page at a particular physical address. kmalloc() gives me ...
0
votes
1answer
338 views

implementation of ioctl in freebsd

I want to know how to implement ioctl command for a character device in FreeBSD. I already write a character device with open() close() read() write() but I don't know what argument should I pass to ...
1
vote
1answer
316 views

Handling SERIRQ Interrupts from LPC-Connected Devices

How are SERIRQ interrupts generated by devices connected via an LPC (Low Pin Count) bus handled by Linux device drivers? In particular, how is an interrupt generated by one device on the bus ...
2
votes
1answer
453 views

migrating a linux driver to Android

I'm porting a 3G modem written for Linux for laptops to an embedded android (Gingerbread) device with an ARM processor. I already got the device driver compiled (C code) as a module (.ko file) and ...
1
vote
1answer
1k views

Device driver: Windows ReadFile function timeout

I am using a device driver that occasionaly misses an interrupt from hardware. To read data from the device, I use the function BOOL WINAPI ReadFile( __in HANDLE hFile, __out ...
0
votes
1answer
228 views

No kernel file specified Error On KEXT MAC Environment

I try implement KEXT for USBHID Device. If i am checking on Terminal It able to load KEXT ie Newtok:Desktop Rasheed$ kextutil -nt SampleKextDriver.kext No kernel file specified; using ...
2
votes
1answer
667 views

Device Driver created with Xcode won't load

I have implemented a Device Driver Application based on this link http://developer.apple.com/library/mac/#documentation/Darwin/Conceptual/KEXTConcept/KEXTConceptIOKit/iokit_tutorial.html If I try to ...
2
votes
0answers
243 views

Can I write a Windows filter driver for an HID device to invert vertical scrolling?

I would like to emulate OS X Lion's inverted vertical scrolling using a trackpad on Windows. I wonder if it would be possible to create a filter driver for a target HID device, intercept ... something ...
5
votes
1answer
280 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 ...
0
votes
1answer
196 views

Creating and using an IRP internally within a driver

I am writing a driver which currently handles IRPs send from userland. My question is: is there any way to construct IRPs inside the driver and pass them internally to the functions currently ...
0
votes
1answer
390 views

Creating a Device Driver with Xcode Cocoa Application

Hi Friends.. I am try to create a Device driver Application In X-Code, From This Link:- ...
0
votes
1answer
245 views

how to send input to multiple emulated mice using dsf(device simulation framework)?

How do i send input to 4 different emulated mice? This is specific to dsf(device simulation framework). I would like to send an input report to the emulated usb mouse devices the script creates in ...
0
votes
0answers
360 views

How to retrieve vendorId from STORAGE_DEVICE_DESCRIPTOR.vendorId

Documentation says vendorIdOffset Specifies the byte offset from the beginning of the structure to a null-terminated ASCII string that contains the device's vendor ID. If the device has no ...
0
votes
1answer
151 views

Driver development: Uninstalling Windows driver

I'm hacking on a virtual HID driver, and for some reason, I'm unable to disable and unable to uninstall the driver in Device Manager. devcon.exe remove also throws an error. Removing the device in ...
2
votes
1answer
204 views

What is the proper way to acknowledge an ATA/IDE interrupt?

I am currently working on a hobby OS, specifically the ATA driver. I am having some issues with PIO data-in commands with interrupts. I am trying to execute the READ MULTIPLE command to read multiple ...
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 . ...
3
votes
1answer
7k views

Replacing Touchscreen driver in Android Kernel

I'm adapting a Gingerbread kernel for my custom board. I'm trying to replace a resistive touch screen that uses an on-chip ADC controller (S5PV210 processor from Samsung). In my design, I need a ...
1
vote
1answer
147 views

Where to start learning for writing driver for devices and capacitive screen?

I am expecting some work in near future related to capacitive screen devices, there we have to write the software for capacitive touch screen. Please guide me how to start for that , and also how to ...
2
votes
2answers
991 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 ...
0
votes
1answer
76 views

Mounting a stream encoder as a drive in windows?

For a variety of reasons, revolving around cost of copy and the travails of the Windows filesystem, I need to mount a stream encoder as a drive, so that incoming data can simply be blindly directed at ...
0
votes
2answers
192 views

How to write a custom action to install a UMDF driver?

I want to install a UMDF software only driver from our MSI, I understand that to do it, I need to create a root enumerated device and then install the driver to driver store. I have never written a ...
5
votes
1answer
449 views

How come two devices share the same major-minor device number?

I am reading "Linux device drivers, 3rd edition", and found something i can't understand. in Chapter 3.2, the author said: Traditionally, the major number identifies the driver associated with ...
3
votes
1answer
2k views

Linux USB device driver not getting probed

I'm working on a device driver for Linux. It's a USB pen tablet. The problem is that the driver's probe callback never gets called. dmesg just shows: generic-usb: probe of 0003:099A:2620.000F failed ...
1
vote
1answer
392 views

service created but not started

I am trying to run a driver I created as a service. I managed to create a service out of the driver (using "sc.exe create ..."): The service now appears in the registry (under ...
1
vote
0answers
191 views

how to learn the structure of Wireless drivers (mac80211)?

There is so many structure in Linux wireless driver mac80211. something like struct net_device, struct ieee80211_hw, struct ieee80211_vif and struct ieee80211_local and so on. So many structures that ...
2
votes
3answers
453 views

Driver on 64 bit

I have a driver code which works good on 32 bit. On 64 bit i compiled it and also digitally signed it. The driver loads but fails to work properly. The main functionality of the driver to to register ...
1
vote
1answer
289 views

Changing / restricting used frequencies for Logitech wireless devices

I'm using a Logitech wireless gamepad (F710) and am noticing that it's automatic frequency hopping feature, which makes the joystick work well, is actually blowing away my wireless communications for ...
3
votes
1answer
735 views

Kernel Debugging: Windows 7 hangs at boot time

Sometimes, I have the situation that Windows waits at boot time for the kernel debugger to be attached. You see the text "Windows starting" but not the logo yet. If I attach the debugger now, Windows ...
1
vote
1answer
413 views

difference between device id and pnp device id

can somebody please explain difference between those two terms, when I'm trying to print structs from Win32_AllocatedResource() I can find pnp device id (something like PCI\\VEN_...) and when I'm ...
0
votes
2answers
536 views

How to forward IOCTL's from i2c-dev.c to adapter driver (i2c-rt3352.c)

I'm writing the I2C adapter driver for SOC. This adapter exist now in system and RTC driver works with it via .master_xfer. I would like to send IOCTL's from application via /dev/i2c. I have loaded ...
1
vote
2answers
614 views

How can I get the OS X version number in a kext?

I have a kext that needs to know what version of OS X it is running on. CocoaDev has an article which describes how to get the OS X version info using Gestalt(), but the code requires Cocoa. Can I ...
4
votes
1answer
386 views

writing android drivers?

I need to develop few drivers for android that should work on Android4SAM eval board. I started writing the drivers as a normal char drivers in linux kernel, and they work as planned. whats the next ...
2
votes
1answer
254 views

Visual Studio 2010 - Very slow display update on MacPro running Win7/Bootcamp

I'm a .Net developer running Windows 7 Ultimate (x64) on a 2010 MacPro (2.27Ghz/6GB RAM) using Bootcamp. Until about a month ago its been, imo, the ultimate dev workstation. However recently I've ...
1
vote
1answer
437 views

Receive raw print data in asp.net?

I would like to be able to have a Printer installed on a windows client. When someone prints to said printer it captures the print stream and dumps it into a file. I will eventually need to parse this ...
1
vote
2answers
276 views

Nexus S - access\modify drivers

I am developing with the Nexus S, and would like to know if there is a way I can access\modify the drivers on this device? I may be looking into building my own device, however if there is a way I can ...
2
votes
1answer
1k views

I2C linux drivers

I will need to write my own drivers for few controllers in my chipset.I work on SoC with SDK, that doesn't provide "linux i2c compatible" driver. It has simple char driver for i2c. I would like to use ...
0
votes
1answer
360 views

Problem Driving Two ATI Graphics Cards [closed]

I want to drive two ATI FirePro V4800 graphics cards in parallel (none of that Crossfire). The aticonfig --list-adapters gives * 0. 06:00.0 ATI FirePro (FireGL) Graphics Adapter 1. 05:00.0 ATI ...
2
votes
0answers
349 views

Producer consumer implementation in a block device driver?

I'm trying to implement a producer-consumer like situation in my block level driver (on linux kernel version 2.6.39.1). My block driver's make_request_fn receives a stream of struct bio from a ...
1
vote
2answers
760 views

Why does Windows return ERROR_ACCESS_DENIED when I try to open a delete pended file

When we open a delete pended file, the Windows subsystem returns ERROR_ACCESS_DENIED even though they have the ERROR_DELETE_PENDING status. HANDLE h = CreateFile(L"C:\\test.txt", GENERIC_READ, ...
0
votes
1answer
124 views

How can I speed up the first-time loading of a Windows device driver for an USB device?

We have some boxes running Windows XP for an automated production process. I (not me personally but a robot) connect new USB devices to these boxes. There is a device driver for this device type and ...
0
votes
2answers
457 views

connecting application with device driver

This is an interview question. I had written device driver for a char device so I know that code structure looks like this struct file_operations something { .owner=my_device_open; ...
1
vote
2answers
227 views

Delay execution of IRP_MN_SET_POWER

I am developing a Windows device-driver and need to delay execution of a system shutdown for about 10 secs. I am using following code inside DispatchPower() function of my driver: NTSTATUS ...
0
votes
1answer
198 views

making a usb device from scratch… what are the pros of a VCP driver?

I'm building a thingy that will have a usb interface, I'm pretty keen on the FT232RL for this purpose. The manufacturers offer virtual com port drivers for linux and windows. I haven't really done ...

1 5 6 7 8 9 13