2005-04-17 00:20:36 +02:00
|
|
|
# drivers/Kconfig
|
|
|
|
|
|
|
|
menu "Device Drivers"
|
|
|
|
|
|
|
|
source "drivers/base/Kconfig"
|
|
|
|
|
2005-09-12 04:15:07 +02:00
|
|
|
source "drivers/connector/Kconfig"
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
source "drivers/mtd/Kconfig"
|
|
|
|
|
2007-05-01 08:40:36 +02:00
|
|
|
source "drivers/of/Kconfig"
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
source "drivers/parport/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/pnp/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/block/Kconfig"
|
|
|
|
|
2006-10-17 09:09:25 +02:00
|
|
|
# misc before ide - BLK_DEV_SGIIOC4 depends on SGI_IOC4
|
|
|
|
|
|
|
|
source "drivers/misc/Kconfig"
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
source "drivers/ide/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/scsi/Kconfig"
|
|
|
|
|
2006-08-10 13:31:37 +02:00
|
|
|
source "drivers/ata/Kconfig"
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
source "drivers/md/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/message/fusion/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/ieee1394/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/message/i2o/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/macintosh/Kconfig"
|
|
|
|
|
2005-07-12 06:03:49 +02:00
|
|
|
source "drivers/net/Kconfig"
|
2005-04-17 00:20:36 +02:00
|
|
|
|
|
|
|
source "drivers/isdn/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/telephony/Kconfig"
|
|
|
|
|
|
|
|
# input before char - char/joystick depends on it. As does USB.
|
|
|
|
|
|
|
|
source "drivers/input/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/char/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/i2c/Kconfig"
|
|
|
|
|
[PATCH] spi: simple SPI framework
This is the core of a small SPI framework, implementing the model of a
queue of messages which complete asynchronously (with thin synchronous
wrappers on top).
- It's still less than 2KB of ".text" (ARM). If there's got to be a
mid-layer for something so simple, that's the right size budget. :)
- The guts use board-specific SPI device tables to build the driver
model tree. (Hardware probing is rarely an option.)
- This version of Kconfig includes no drivers. At this writing there
are two known master controller drivers (PXA/SSP, OMAP MicroWire)
and three protocol drivers (CS8415a, ADS7846, DataFlash) with LKML
mentions of other drivers in development.
- No userspace API. There are several implementations to compare.
Implement them like any other driver, and bind them with sysfs.
The changes from last version posted to LKML (on 11-Nov-2005) are minor,
and include:
- One bugfix (removes a FIXME), with the visible effect of making device
names be "spiB.C" where B is the bus number and C is the chipselect.
- The "caller provides DMA mappings" mechanism now has kerneldoc, for
DMA drivers that want to be fancy.
- Hey, the framework init can be subsys_init. Even though board init
logic fires earlier, at arch_init ... since the framework init is
for driver support, and the board init support uses static init.
- Various additional spec/doc clarifications based on discussions
with other folk. It adds a brief "thank you" at the end, for folk
who've helped nudge this framework into existence.
As I've said before, I think that "protocol tweaking" is the main support
that this driver framework will need to evolve.
From: Mark Underwood <basicmark@yahoo.com>
Update the SPI framework to remove a potential priority inversion case by
reverting to kmalloc if the pre-allocated DMA-safe buffer isn't available.
Signed-off-by: David Brownell <dbrownell@users.sourceforge.net>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Greg Kroah-Hartman <gregkh@suse.de>
2006-01-08 22:34:19 +01:00
|
|
|
source "drivers/spi/Kconfig"
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
source "drivers/w1/Kconfig"
|
|
|
|
|
2007-05-03 22:27:45 +02:00
|
|
|
source "drivers/power/Kconfig"
|
|
|
|
|
2005-07-02 18:15:49 +02:00
|
|
|
source "drivers/hwmon/Kconfig"
|
|
|
|
|
2007-09-18 21:12:50 +02:00
|
|
|
source "drivers/ssb/Kconfig"
|
|
|
|
|
2005-08-18 11:06:59 +02:00
|
|
|
source "drivers/mfd/Kconfig"
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
source "drivers/media/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/video/Kconfig"
|
|
|
|
|
|
|
|
source "sound/Kconfig"
|
|
|
|
|
2006-12-08 18:41:30 +01:00
|
|
|
source "drivers/hid/Kconfig"
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
source "drivers/usb/Kconfig"
|
|
|
|
|
|
|
|
source "drivers/mmc/Kconfig"
|
|
|
|
|
2006-03-31 12:31:04 +02:00
|
|
|
source "drivers/leds/Kconfig"
|
|
|
|
|
2005-04-17 00:20:36 +02:00
|
|
|
source "drivers/infiniband/Kconfig"
|
|
|
|
|
2006-01-19 02:44:13 +01:00
|
|
|
source "drivers/edac/Kconfig"
|
|
|
|
|
2006-03-27 11:16:34 +02:00
|
|
|
source "drivers/rtc/Kconfig"
|
|
|
|
|
2006-05-24 02:18:44 +02:00
|
|
|
source "drivers/dma/Kconfig"
|
|
|
|
|
2007-10-16 10:27:41 +02:00
|
|
|
source "drivers/dca/Kconfig"
|
|
|
|
|
2007-02-10 10:44:32 +01:00
|
|
|
source "drivers/auxdisplay/Kconfig"
|
|
|
|
|
[PATCH] kvm: userspace interface
web site: http://kvm.sourceforge.net
mailing list: kvm-devel@lists.sourceforge.net
(http://lists.sourceforge.net/lists/listinfo/kvm-devel)
The following patchset adds a driver for Intel's hardware virtualization
extensions to the x86 architecture. The driver adds a character device
(/dev/kvm) that exposes the virtualization capabilities to userspace. Using
this driver, a process can run a virtual machine (a "guest") in a fully
virtualized PC containing its own virtual hard disks, network adapters, and
display.
Using this driver, one can start multiple virtual machines on a host.
Each virtual machine is a process on the host; a virtual cpu is a thread in
that process. kill(1), nice(1), top(1) work as expected. In effect, the
driver adds a third execution mode to the existing two: we now have kernel
mode, user mode, and guest mode. Guest mode has its own address space mapping
guest physical memory (which is accessible to user mode by mmap()ing
/dev/kvm). Guest mode has no access to any I/O devices; any such access is
intercepted and directed to user mode for emulation.
The driver supports i386 and x86_64 hosts and guests. All combinations are
allowed except x86_64 guest on i386 host. For i386 guests and hosts, both pae
and non-pae paging modes are supported.
SMP hosts and UP guests are supported. At the moment only Intel
hardware is supported, but AMD virtualization support is being worked on.
Performance currently is non-stellar due to the naive implementation of the
mmu virtualization, which throws away most of the shadow page table entries
every context switch. We plan to address this in two ways:
- cache shadow page tables across tlb flushes
- wait until AMD and Intel release processors with nested page tables
Currently a virtual desktop is responsive but consumes a lot of CPU. Under
Windows I tried playing pinball and watching a few flash movies; with a recent
CPU one can hardly feel the virtualization. Linux/X is slower, probably due
to X being in a separate process.
In addition to the driver, you need a slightly modified qemu to provide I/O
device emulation and the BIOS.
Caveats (akpm: might no longer be true):
- The Windows install currently bluescreens due to a problem with the
virtual APIC. We are working on a fix. A temporary workaround is to
use an existing image or install through qemu
- Windows 64-bit does not work. That's also true for qemu, so it's
probably a problem with the device model.
[bero@arklinux.org: build fix]
[simon.kagstrom@bth.se: build fix, other fixes]
[uril@qumranet.com: KVM: Expose interrupt bitmap]
[akpm@osdl.org: i386 build fix]
[mingo@elte.hu: i386 fixes]
[rdreier@cisco.com: add log levels to all printks]
[randy.dunlap@oracle.com: Fix sparse NULL and C99 struct init warnings]
[anthony@codemonkey.ws: KVM: AMD SVM: 32-bit host support]
Signed-off-by: Yaniv Kamay <yaniv@qumranet.com>
Signed-off-by: Avi Kivity <avi@qumranet.com>
Cc: Simon Kagstrom <simon.kagstrom@bth.se>
Cc: Bernhard Rosenkraenzer <bero@arklinux.org>
Signed-off-by: Uri Lublin <uril@qumranet.com>
Cc: Ingo Molnar <mingo@elte.hu>
Cc: Roland Dreier <rolandd@cisco.com>
Signed-off-by: Randy Dunlap <randy.dunlap@oracle.com>
Signed-off-by: Anthony Liguori <anthony@codemonkey.ws>
Signed-off-by: Andrew Morton <akpm@osdl.org>
Signed-off-by: Linus Torvalds <torvalds@osdl.org>
2006-12-10 11:21:36 +01:00
|
|
|
source "drivers/kvm/Kconfig"
|
|
|
|
|
2006-12-07 10:58:29 +01:00
|
|
|
source "drivers/uio/Kconfig"
|
2007-07-19 10:49:27 +02:00
|
|
|
|
|
|
|
source "drivers/lguest/Kconfig"
|
2005-04-17 00:20:36 +02:00
|
|
|
endmenu
|