Tagged Questions

The tag has no wiki summary.

learn more… | top users | synonyms

21
votes
9answers
551 views

Content for Linux Operating Systems Class

I will be TA for an operating systems class this upcoming semester. The labs will be deal specifically with the Linux Kernel. What concepts/components of the Linux kernel do you think are the most ...
14
votes
2answers
1k views

How does the linux kernel manage less than 1GB physical memory?

I'm learning the linux kernel internals and while reading "Understanding Linux Kernel", quite a few memory related questions struck me. One of them is, how the Linux kernel handles the memory mapping ...
12
votes
1answer
479 views

Allocating more than 4 MB of pinned contiguous memory in the Linux Kernel

For some interaction with a PCI device that is being built, we'd like to create large contiguous pieces of memory that the board can access. As it stands now, the largest piece of memory that I've ...
9
votes
3answers
629 views

New to Linux Kernel/Driver development

Recently, i began developing a driver of an embedded device running linux. Until now i have only read about linux internals. Having no prior experience in driver devlopment, i am finding it a tad ...
7
votes
3answers
254 views

Linux Stack Sizes

I'm looking for a good description of stacks within the linux kernel, but I'm finding it surprisingly difficult to find anything useful. I know that stacks are limited to 4k for most systems, and 8k ...
7
votes
2answers
2k views

What are coding conventions for using floating-point in Linux device drivers?

This is related to this question. I'm not an expert on Linux device drivers or kernel modules, but I've been reading "Linux Device Drivers" [O'Reilly] by Rubini & Corbet and a number of online ...
6
votes
2answers
189 views

Emulate a hard drive in Linux

I have developed a FUSE-based file system as part of a research project and now have to study the actual read/write requests that are received by the hard drive. In an attempt to do this, I am looking ...
6
votes
1answer
431 views

Call trace when loading a module in Linux

I'm writing my first Linux kernel module, which actually is a RAM disk driver plus some additional features. When I tried to insmod the module, "Segmentation fault" happened. And here is the ...
6
votes
2answers
372 views

Linux kernel driver: what model for NVRAM access?

I just wrote a RTC driver for an NXP RTC chip on my board, it works great. This chip also has some battery backed RAM that I'd like to make available to a user space application. The RTC framework ...
6
votes
1answer
338 views

What is the sequence followed by the Linux kernel to configure a device?

As I understood after reading the chapter related to The Linux Device Model in the Linux Device Drivers 3rd Edition, when a new device is configured, the kernel (2.6) follows more or less this ...
6
votes
8answers
989 views

how to code drivers?

I want to code drivers in C in linux os, though I think its very tough. Can I get some hints as to how to start or books to follow? Drivers can be from my USB port to graphics card!! I know as to ...
5
votes
1answer
374 views

Linux kernel interrupt handler mutex protection?

Do I need to protect my interrupt handler being called many times for the same interrupt? Given the following code, I am not sure on the system calls I should make. I am getting rare, random ...
5
votes
2answers
325 views

Embedded device drivers development notes

I want to develop some HAL (Hardware Abstraction Layers) to use in PIC32 and some ARM. Basically I want to make some code that's usually available on a OS, like generic pin access, communication ...
5
votes
4answers
207 views

mounting without -o loop

I have written a dummy (ram disk) block device driver for linux kernel. When the driver is loaded, I can see it as /dev/mybd. I can successfully transfer data onto it using dd command, compare the ...
5
votes
3answers
9k views

How does Linux Kernel know where to look for driver firmware?

I'm compiling a custom kernel under Ubuntu and I'm running into the problem that my kernel doesn't seem to know where to look for firmware. Under Ubuntu 8.04, firmware is tied to kernel version the ...
4
votes
1answer
111 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 ...
4
votes
1answer
153 views

Who calls the probe() of driver

How does probe() call gets called? who calls it? As per my understanding, __init() registers driver and then somehow probe() is called to register the device data and irq etc..How exactly it happens? ...
4
votes
2answers
249 views

How can I monitor the NIC status(up/down) in a C program without polling the kernel?

Now I need to get the status of the NIC(up or down) in the real time. That means I have to catch the kernel interrupt when the NIC up or down in a blocked loop. The first stupid method from mine is ...
4
votes
1answer
83 views

In Linux, what kinds of files are memory mapped?

What are the different types of Linux files that can be created entirely in memory? For example, a pipe file may be created, but does the location of where a file is created (or the filesystem type ...
4
votes
2answers
1k views

Linux kernel device driver to DMA from a device into user-space memory

I'm getting confused with the direction to implement. I want to get data from a DMA enabled, PCIe hardware device into user-space as quickly as possible. Q: How do I combine "direct I/O to user-space ...
4
votes
2answers
381 views

How to test the kernel for kernel panics?

I am testing the linux kernel on an embedded device and would like to find situations/ scenarios in which kernel would issue panics. Can you suggest some test steps (manual or code automated) to ...
4
votes
2answers
677 views

Linux Kernel 2.6.3x and device driver related books/articles

I have developed a few Linux device drivers and understood that its an art to develop good drivers, which I am 'trying' to perfect. In this regard would like to get deeper understanding of Kernel ...
4
votes
5answers
386 views

Where to use volatile?

I read about volatile keyword, but I don't know in what situations I should use it. When the memory (variable) is getting updated and process is not aware of that? In what cases should drivers use ...
4
votes
2answers
460 views

Linux: how do i know the module that exports a device node?

If a have a /dev device node and its major/minor numbers how do i know the kernel module name that exported this node?
4
votes
3answers
1k views

How to write a userspace linux block device driver?

I would like to write a linux block device driver. The driver would not need to access the hardware so it can be in userspace. To start, I have tried to build an example block device driver with this ...
4
votes
2answers
670 views

Force Linux to use only memory over 4G?

I have a Linux device driver that interfaces to a device that, in theory, can perform DMA using 64-bit addresses. I'd like to test to see that this actually works. Is there a simple way that I can ...
4
votes
4answers
1k views

How might I learn to write char device drivers for Linux?

How to write char device drivers in Linux?
4
votes
6answers
245 views

What are the consequences of calling write() with zero length?

At fairly high level in the Linux write() function, it filters out requests for writing 0 length buffers. Which makes sense. Who'd want to the OS wasting it's time drilling through layers only to ...
3
votes
3answers
58 views

How to create a device in /dev automatically upon loading of the kernel module for a device driver?

I am attempting to develop Linux device drivers and as my first attempt I am trying to develop a char device driver that has the following file options, struct file_operations fops{ ...
3
votes
1answer
138 views

EHCI USB Controller and USB Device (gadget) mode

In SoC I'm working on there is USB EHCI Compatible Controller. Does all EHCI Controllers can work as Host or Device ? Does EHCI Linux driver cover device/gadget mode for such controller ? BR, ...
3
votes
2answers
83 views

How to combine multiple struct BIOs into a single struct request?

I'm working on Linux kernel version 2.6.39.1, and am developing a block device driver. In this regard, I want to combine multiple struct bios into a single struct request, which is then added to the ...
3
votes
1answer
74 views

kmalloc returning the same adress over and over again [Linux 2.4]

I working on some code in the linux kernel (2.4) and for some reason kmalloc returns the same address (I believe it only happens after the middle of the test). I checked that no calls to kfree were ...
3
votes
3answers
261 views

How to register a device in linux

i need to register a new device in linux but i noticed that in kernel 2.6.34 function device_register is not exported...Which could be the solution?
3
votes
1answer
80 views

Can ISRs migrate to other CPUs when preempted?

In older versions of the Linux kernel, the interrupt service routines (ISRs) for hardware IRQs in an SMP system were executed on the CPU where they started, from the beginning to the end. If preempted ...
3
votes
1answer
190 views

Mapping DMA interrupts in the linux kernel

I'm writing a kernel module for a powerpc SoC which contains a DMA controller. I want to map the DMA interrupts in the linux kernel. my DMA structure has two interrupts: struct dma { u32 dma1; ...
3
votes
2answers
186 views

Linux programs that communicate with devices

I can program but I don't really know much about computers. I'm using Ubuntu Linux, and I understand (on the surface) what device files are. What I'd like to do is to write a program that takes raw ...
3
votes
1answer
641 views

How reliable is current_kernel_time()?

I am working on performance benchmarking of a SDIO UART Linux/Android driver and used current_kernel_time() at start and end of the to-be-analysed read, write function implementation, then printing ...
3
votes
2answers
616 views

Function caller in linux kernel

Is there a way to get function caller in linux kernel? I know __func__ returns the function name which is executing. I am looking for the function which called "__func__"
3
votes
4answers
756 views

Mapping DMA buffers to userspace

i am writing a device driver on linux-2.6.26. I want to have a dma buffer mapped into userspace for sending data from driver to userspace application. Please suggest some good tutorial on it. Thanks ...
3
votes
1answer
131 views

Linux driver phys_mem_access_prot undefined

I have a loadable module that is throwing a warning about phys_mem_access_prot when built under Ubuntu 9.10 (Linux 2.6.31-22-server). [664] make -C /lib/modules/`uname -r`/build M=`pwd` make: ...
3
votes
1answer
1k views

Probe problem when writing a I2C device driver

I am a newbie in writing linux device driver, forgive me if anything stupid a asked and my poor English^^ I am trying to write a driver for a touch panel, which communicate with CPU via I2C. I tried ...
3
votes
3answers
692 views

How to keep asm output from Linux kernel module build

I'm working on a Linux kernel module for a 2.6.x kernel and I need to view the assembly output, though it's currently being done as a temporary file an deleted afterwords. I'd like to have the ...
3
votes
2answers
324 views

learning linux drivers

I am learning now days programming drivers. I am doing my learning from this book Linux Device Drivers But I am little bit lack of practice. Can you recommend me some simple projects that I can get ...
3
votes
2answers
438 views

copy_from_user twice - character device

I've implemented a character device and I'd like to ask If this is correct: In a Userspace I've a struct with 2 pointers. I write this struct into my device. In my write function in char device I ...
3
votes
2answers
1k views

Where has the the owner field of struct proc_dir_entry gone? [ Linux Kernel ]

According to the list of API changes in the 2.6 kernel series on LWN the .owner field of struct proc_dir_entry was removed in the 2.6.30 Kernel. So here's a couple of questions: Was it really ever ...
3
votes
2answers
532 views

“Echo” device for Unit Testing

I'm currently writing up some CPPunit tests for a program that tests a hardware communication port (yes, I'm writing unit tests for a tester app ;-) ). One of the classes I'm testing is basically a ...
3
votes
2answers
387 views

Linux device driver unsafe FXSAVE/FXRSTOR bug — any precedents?

There's a nasty problem that has temporarily stumped a number of engineers at my company trying to debug it. The C++ program is normally run on a cluster of multicore computers with MPI. It will run ...
2
votes
1answer
54 views

How to start learn linux device driver development?(worked on windows only)

i want to learn linux device driver development. positives 1.i have developed small driver on Wince and worked on SPI,i2c interface from application i.e. opening , reading and writing driver. 2. ...
2
votes
2answers
94 views

Which part of process virtual memory layout does mmap() uses?

The mmap() function shall establish a mapping between a process virtual address space and a device file or physical memory region. A process virtual memory layout has the following sections: ...
2
votes
1answer
31 views

“irq_to_desc” undefined?

everybody. I need to use $irq_to_desc in my project, but despite the fact I included all h files it needs, gcc still emits ""irq_to_desc" undefined!" messages. I found something on the topic here ...

1 2 3 4 5 8