aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/platform/Kconfig
diff options
context:
space:
mode:
authorDavid 'Digit' Turner <digit@android.com>2013-01-21 23:48:21 +0000
committerGreg Kroah-Hartman <gregkh@linuxfoundation.org>2013-01-24 13:49:34 -0800
commitc89f2750e9845aa115ca30c062edd569da619cad (patch)
treef2a230d581d13a84172cfa42c12130fb76f636b2 /drivers/platform/Kconfig
parentgoldfish: add the goldfish virtual bus (diff)
downloadlinux-dev-c89f2750e9845aa115ca30c062edd569da619cad.tar.xz
linux-dev-c89f2750e9845aa115ca30c062edd569da619cad.zip
goldfish: add QEMU pipe driver
A QEMU pipe is a very fast communication channel between the guest system and the emulator. Usage from the guest is simply something like; // connect to special device fd = open("/dev/qemu_pipe", O_RDWR); // tell which service we want to talk to (must be zero-terminated) write(fd, "pipeName", strlen("pipeName")+1); // do read()/write() through fd now ... // close channel close(fd); Signed-off-by: David 'Digit' Turner <digit@android.com> [Added support for parameter buffers for speed] igned-off-by: Xin, Xiaohui <xiaohui.xin@intel.com> Signed-off-by: Jiang, Yunhong <yunhong.jiang@intel.com> Signed-off-by: Nakajima, Jun <jun.nakajima@intel.com> [Ported to 3.6] Signed-off-by: Tom Keel <thomas.keel@intel.com> [Ported to 3.7, moved to platform/goldfish] Signed-off-by: Alan Cox <alan@linux.intel.com> Signed-off-by: Greg Kroah-Hartman <gregkh@linuxfoundation.org>
Diffstat (limited to 'drivers/platform/Kconfig')
-rw-r--r--drivers/platform/Kconfig4
1 files changed, 4 insertions, 0 deletions
diff --git a/drivers/platform/Kconfig b/drivers/platform/Kconfig
index 8390dca2b4e1..69616aeaa966 100644
--- a/drivers/platform/Kconfig
+++ b/drivers/platform/Kconfig
@@ -1,3 +1,7 @@
if X86
source "drivers/platform/x86/Kconfig"
endif
+if GOLDFISH
+source "drivers/platform/goldfish/Kconfig"
+endif
+