Tagged Questions
2
votes
0answers
25 views
In Linux Driver, how to disable a specific USB Device [closed]
Assume a USB devices is powered by USB bus. Sometimes the firmware in the USB device encounter a problem and can't recovery by itself. I have to unplug and plug the USB device from the host.
Is there ...
0
votes
1answer
31 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 ??
3
votes
3answers
155 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
271 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
254 views
how to install kernel 3.4 and fglrx drivers 13.1 on ubuntu 12.04 [closed]
I have tried to upgrade from kernel 3.2 to kernel 3.4 (here) and after that installing fglrx drivers 13.1 (compatible up to kernel 3.5). Here are the steps I followed:
Removing (purging) existing ...
0
votes
2answers
121 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
74 views
Unable to spot the error in echo kernel module
I am trying to write a very simple echo Linux driver.
The driver takes a maximum of 250 characters from command-line and just writes it into a dummy device 'mydev'. This is again read back from the ...
1
vote
1answer
30 views
Exynos4_PPMU Struct Explanation
I am looking at the exynos4_bus.c file in the Linux kernel (drivers/devfreq) and have encountered this struct:
struct exynos4_ppmu {
void __iomem *hw_base;
unsigned int ccnt;
unsigned int ...
0
votes
1answer
68 views
where does file data go in a device file?
I'm writing a character device file and would like to know if there's any way to have a section of data for each instance of a device file. I've been looking at the inode and file structures for a ...
2
votes
0answers
51 views
Unlocking a read lock set while iterating task list before doing a sleepy operation on kernel
From my kernel module I want to iterate over task list and do some sleepy operation for all the processes for which my task->flag is set. I know by holding read_lock(tasklist_lock)/rcu_read_lock, I ...
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 ...
1
vote
0answers
1k 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 ...
2
votes
0answers
713 views
Writing USB driver for Raspberry Pi [closed]
I am trying to write a USB device driver for Raspberry Pi board (practising on my Ubuntu desktop first).
Whenever two flash drives are inserted, data from second will automatically be copied into the ...
2
votes
1answer
179 views
Driver linux : pass platform_data through struct resource
I have a problem writing a device driver. The number of fields in the platform_data struct is getting too big because of the different use cases. I already have 14 fields and I have to add at least 5 ...
1
vote
1answer
79 views
As kernel driver developer how can I know what IOCTLs and functions I should supply to Android?
http://www.kandroid.org/online-pdk/guide/display_drivers.html
accessing the driver by calling open on /dev/fb0
using the FBIOGET_FSCREENINFO and FBIOGET_VSCREENINFO Input / Output
Control ...
1
vote
1answer
440 views
Using USB OTG hardware as USB host only
I'm porting Linux to an ARM platform. The platform I'm developing for has an OTG chip which I would like to attach a driver to. It doesn't have an OTG driver yet. However, it is based on the EHCI ...
1
vote
0answers
126 views
Poll() with POLLOUT event always returns 0 when two threads are polling, but works with one
I am using a program called Netmap. I have two interfaces (eth0 and eth1) and I create a netmap instance on each of the interfaces.
Let's call the file descriptor of eth0's netmap instance as fd0. ...
1
vote
0answers
84 views
Xen : between wich layers should I put my custom UART driver
I'm developping an UART driver for EmbededXen (hypervisor for arm architecture based on Xen). As I have no kernel experience at this level, I can't determine where I should put my driver.
With the ...
3
votes
2answers
181 views
Is it possible to write to multiple devices that use different PCIe lanes on the same PCIe slot?
I am writing a Linux device driver which supports multiple devices. I have a x8 PCIe card with 4 of these devices on it. Each runs through a PCIe switch and gets 2 PCIe lanes. Is there a way to have ...
2
votes
1answer
314 views
Linux PCIe device driver read/write functions not working for certain addresses
I have written a PCIe device driver and the read/write functions are not working correctly. The device has 3 memory regions which begin at 0x10800000, 0x0c000000, and 0x80000000. Just for testing ...
-3
votes
3answers
293 views
Kernel hacking methodology - how to find out where to hack the linux kernel [closed]
I have a throw-away cheap laptop I'd like to twiddle around, a Thinkpad SL 500.
What bothers me are two leds, the one for wireless connectivity, and the one for hibernation, which don't light up at ...
-1
votes
2answers
356 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.
0
votes
1answer
119 views
Add Linux Driver Attribution file fails
I try to run a example program from a Linux driver book, which I study.
But it crash and I don't know why.
Is there a possibility to control the DEVICE_ATTR macro? Because maybe there is the ...
0
votes
2answers
1k views
Mapping physical addresses to virtual address linux
I am working on a small embedded system. When my linux boots up into user space, I know where are my devices in the physical memory. I want to map them into user space virtual addresses. Currently, I ...
0
votes
3answers
192 views
I need to execute a user space application every time a USB device is connected
I am working with an embedded platform. Typical software in this devices are Linux 2.6 + Busybox, so resources are limited.
I need to run an user space application every time a USB device is ...
0
votes
1answer
88 views
How should I read or write APIC register “APIC_ICR”?
Here is the code:
static int __init test3_init(void)
{
uint64_t v,i;
for (i=0;i<10;i++)
{
v= native_x2apic_icr_read();
printk("v=%llx\n",v);
}
return 0;
}
And here ...
2
votes
1answer
719 views
Does a kernel driver implementing mmap() have to create a character device?
I am trying to write a kernel driver to manage some memory blocks of physically contiguous and DMAable memory (I am using kmalloc() since these are only DMA streams). To pull some functionality into ...
3
votes
3answers
785 views
Execute shell command in kernel module
Is it possible to execute shell command in kernel module. I know that we can do it in user space C code using system subroutine.
I am debugging a kernel module which has memory leak issue. After doing ...
1
vote
2answers
1k views
major number minor number and driver loading
I'm a beginner. I've some idea about major number and minor number related with device driver. Also I know that most of the devices that can be plugged into a Linux system have a major number. And ...
1
vote
2answers
1k views
Timers in linux device drivers
I want to implement a counter in linux device drivers which increments after every fixed interval of time.I want to do this with the help of timers.
Can anyone please guide me how do I go about doing ...
1
vote
1answer
87 views
cma_alloc fails to create memory chunk of 10M
I am working on Camera Driver and whenever I try to allocate the memory around 10M, it fails but 4-5M memory is created. Is there a limit to memory allocation using cma_alloc? If yes, how do I ...
1
vote
2answers
271 views
How to write a Linux Driver, that only forwards file operations?
I need to implement a Linux Kernel Driver, that (in the first step) only forwards all file operations to another file (in later steps, this should be managed and manipulated, but I don't want to ...
1
vote
0answers
260 views
Linux Device Driver - How to receive notification of added device when exporting GPIO?
This is my first post to stackoverflow and hopefully this question is appropriate.
I am writing a Linux device driver for a virtual GPIO chip configured with some pins for input and output where some ...
0
votes
1answer
88 views
Where do I find the keymap for linux?
Let I have all my keycodes. If I want to look up my ascii character for 'a' which would be scancode 30 on press, this translates to 0141 via keymap. Where do I find this keymap?
1
vote
2answers
222 views
Best way to install interrupt handler for port 0x60
I'm writing a simple key logger as a means to understanding interrupts and IO ports for linux drivers. Now from what I've read, I need to register interrupt handlers via ...
int request_irq(unsigned ...
0
votes
1answer
358 views
How can I pick a good magic/type number for ioctl?
I was wondering if there was a macro that could assign my device a random 'magic' number that linux was currently not using. This is obviously in the interest of portability. Also if this is not ...
1
vote
4answers
126 views
In what order does user space code execute?
Hi I'm writting a char driver that reads and writes to a particular device. Since I'm a noob, this is a very simple and easy char drive that only utilizes the simplest of protocols such as open, read, ...
2
votes
3answers
1k views
What would be the kernel equivalent macro to memset?
I'm writting a driver that requires me to clear all the memory allocated to zero. Memset is a userspace function, but I would like to know if the kernel provides a macro that helps me do this.
Thanks
...
4
votes
1answer
3k views
What's the difference b/w __raw_readl/__raw_writel and readl/writel in linux kernel?
What's the difference b/w __raw_readl/__raw_writel and readl/writel in linux kernel? It is said readl/writel is safer than __raw_readl/__raw_writel, then why do we still use __raw_readl/__raw_writel ? ...
0
votes
1answer
572 views
How do I print a string from kernel buffer? Am I using copy_from_user() right?
Hi I'm writing a write() method for my character driver and I was wondering why when I copy data from the user into my kernel buffer that my buffer contains random jibberish. Bellow is the method that ...
1
vote
1answer
385 views
Clarifying who decides memory mappings and port IO mappings
I studied a bit about port mapped IO and memory mapped IO and I figured out how the first works (not the second yet), so if you have something well-explained about how memory mapped IO is performed (I ...
1
vote
1answer
251 views
GCC: disguising between GCC versions
This question was emerged from this question.
The problem is that there is a NVidia driver for Linux, compiled wth GCC 4.5. The kernel is compiled with GCC 4.6. Well, the stuff doesn't work because ...
0
votes
1answer
149 views
List character device programically
In my code NVRAM is implemented as character device and I want to give a condition to check whether it is character device or not. Can someone help me to implement it programmatically? How can I do it ...
0
votes
1answer
84 views
How i can open a special file?
i am newbie to driver coding. Now i am trying implement ioctl in my code. To make a call using ioctl from my user program, i need to open my special file and the return value from the 'open' call to ...
0
votes
3answers
675 views
What is the difference between an open file and inode?
I'm reading Linux Device Driver programming 3rd edition and I've been trying to get a grasp of openfiles vs inodes. From what the book says , "a file structure in the kernel is considered to be an ...
0
votes
1answer
496 views
How can I get a mouse button (not recognized by xev) working? [closed]
I am using Microsoft Explorer Touch Mouse and I am trying to get two buttons (Page Up, Page Down) recognized. Mouse, of course, comes with a custom software for Windows and Macosx to customize the ...
0
votes
1answer
144 views
How do I check if tasklet_init call has failed?
Is there any way to check if the tasklet_init function which initializes a tasklet has failed?
2
votes
1answer
748 views
Linux USB driver probe() problem
I'm currently work on kernel-mode USB driver for Seowon SWU-3220A WiMAX USB modem. It is a complex device (after plugging it appear in system as USB CDROM, and driver needs to switch it to modem ...
0
votes
1answer
44 views
How to check the registers value of the network card on ARM Linux?
On our device, we observed that the IPv6 NS packet with multicast address of Layer2 were droped. The tcpdump cannot capture these packet so I guess the packets were dropped by the network card ...
2
votes
1answer
421 views
Failing to create devices with minor number 0 and 1
I am failing to create two device nodes with minor number 0 and 1 under /proc. device_create creates the first device with minor number 0, but how do I create the second device with minor number 1?
...



