diff options
author | David 'Digit' Turner <digit@android.com> | 2013-01-22 00:48:21 +0100 |
---|---|---|
committer | Greg Kroah-Hartman <gregkh@linuxfoundation.org> | 2013-01-24 22:49:34 +0100 |
commit | c89f2750e9845aa115ca30c062edd569da619cad (patch) | |
tree | f2a230d581d13a84172cfa42c12130fb76f636b2 /drivers/platform/goldfish/Makefile | |
parent | goldfish: add the goldfish virtual bus (diff) | |
download | linux-c89f2750e9845aa115ca30c062edd569da619cad.tar.xz linux-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/goldfish/Makefile')
-rw-r--r-- | drivers/platform/goldfish/Makefile | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/drivers/platform/goldfish/Makefile b/drivers/platform/goldfish/Makefile index 6c591f6b2707..a0022395eee9 100644 --- a/drivers/platform/goldfish/Makefile +++ b/drivers/platform/goldfish/Makefile @@ -2,3 +2,4 @@ # Makefile for Goldfish platform specific drivers # obj-$(CONFIG_GOLDFISH) += pdev_bus.o +obj-$(CONFIG_GOLDFISH_PIPE) += goldfish_pipe.o |