Displaying 20 results from an estimated 25 matches for "hvc_vio".
2009 Dec 22
4
[PATCH 00/31] virtio: console: Fixes, multiple devices and generic ports
.../char/hvc_beat.c | 2 +-
drivers/char/hvc_console.c | 9 +-
drivers/char/hvc_console.h | 9 +-
drivers/char/hvc_iseries.c | 2 +-
drivers/char/hvc_iucv.c | 2 +-
drivers/char/hvc_rtas.c | 2 +-
drivers/char/hvc_udbg.c | 2 +-
drivers/char/hvc_vio.c | 2 +-
drivers/char/hvc_xen.c | 2 +-
drivers/char/virtio_console.c | 1575 ++++++++++++++++++++++++++++++++++++----
include/linux/virtio_console.h | 44 ++-
12 files changed, 1498 insertions(+), 161 deletions(-)
2009 Dec 22
4
[PATCH 00/31] virtio: console: Fixes, multiple devices and generic ports
.../char/hvc_beat.c | 2 +-
drivers/char/hvc_console.c | 9 +-
drivers/char/hvc_console.h | 9 +-
drivers/char/hvc_iseries.c | 2 +-
drivers/char/hvc_iucv.c | 2 +-
drivers/char/hvc_rtas.c | 2 +-
drivers/char/hvc_udbg.c | 2 +-
drivers/char/hvc_vio.c | 2 +-
drivers/char/hvc_xen.c | 2 +-
drivers/char/virtio_console.c | 1575 ++++++++++++++++++++++++++++++++++++----
include/linux/virtio_console.h | 44 ++-
12 files changed, 1498 insertions(+), 161 deletions(-)
2008 Jun 03
12
[RFC 0/3]: hvc_console rework for platform without hard irqs
This patch set if my first attempt to make virtio_console usable on s390.
To do so, I had to change hvc_console, because s390 has no request_irq and
no free_irq.
I want to get feedback from the main users of hvc_console before I proceed.
The basic idea of this patch set is to remove the calls to request_irq and
free_irq and replace them with backend specific callbacks.
Please see the
2008 Jun 03
12
[RFC 0/3]: hvc_console rework for platform without hard irqs
This patch set if my first attempt to make virtio_console usable on s390.
To do so, I had to change hvc_console, because s390 has no request_irq and
no free_irq.
I want to get feedback from the main users of hvc_console before I proceed.
The basic idea of this patch set is to remove the calls to request_irq and
free_irq and replace them with backend specific callbacks.
Please see the
2008 Jul 25
0
[PULL] virtio patches
...ig | 11 ++++-
drivers/char/Makefile | 1 +
drivers/char/hvc_console.c | 85 ++++++++----------------------
drivers/char/hvc_console.h | 35 +++++++++++--
drivers/char/hvc_irq.c | 44 +++++++++++++++
drivers/char/hvc_iseries.c | 2 +
drivers/char/hvc_vio.c | 2 +
drivers/char/hvc_xen.c | 2 +
drivers/char/virtio_console.c | 40 ++++++++++++---
drivers/lguest/lguest_device.c | 14 +++--
drivers/net/virtio_net.c | 114 +++++++++++++++++++++++++++++++++++-----
drivers/s390/kvm/kvm_virtio.c | 34 ++++++++++--
driver...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 11/13] x86_64 HVC attempt.
...================================================
--- work-pv.orig/drivers/char/Makefile
+++ work-pv/drivers/char/Makefile
@@ -43,7 +43,7 @@ obj-$(CONFIG_AMIGA_BUILTIN_SERIAL) += am
obj-$(CONFIG_SX) += sx.o generic_serial.o
obj-$(CONFIG_RIO) += rio/ generic_serial.o
obj-$(CONFIG_HVC_CONSOLE) += hvc_vio.o hvsi.o
-obj-$(CONFIG_LGUEST_GUEST) += hvc_lguest.o
+obj-$(CONFIG_HVC_GUEST) += hvc_lguest.o
obj-$(CONFIG_HVC_ISERIES) += hvc_iseries.o
obj-$(CONFIG_HVC_RTAS) += hvc_rtas.o
obj-$(CONFIG_HVC_DRIVER) += hvc_console.o
Index: work-pv/drivers/char/hvc_lguest.c
=====================================...
2007 Apr 18
0
[RFC/PATCH LGUEST X86_64 11/13] x86_64 HVC attempt.
...================================================
--- work-pv.orig/drivers/char/Makefile
+++ work-pv/drivers/char/Makefile
@@ -43,7 +43,7 @@ obj-$(CONFIG_AMIGA_BUILTIN_SERIAL) += am
obj-$(CONFIG_SX) += sx.o generic_serial.o
obj-$(CONFIG_RIO) += rio/ generic_serial.o
obj-$(CONFIG_HVC_CONSOLE) += hvc_vio.o hvsi.o
-obj-$(CONFIG_LGUEST_GUEST) += hvc_lguest.o
+obj-$(CONFIG_HVC_GUEST) += hvc_lguest.o
obj-$(CONFIG_HVC_ISERIES) += hvc_iseries.o
obj-$(CONFIG_HVC_RTAS) += hvc_rtas.o
obj-$(CONFIG_HVC_DRIVER) += hvc_console.o
Index: work-pv/drivers/char/hvc_lguest.c
=====================================...
2008 Jul 25
0
[PULL] virtio patches
...ig | 11 ++++-
drivers/char/Makefile | 1 +
drivers/char/hvc_console.c | 85 ++++++++----------------------
drivers/char/hvc_console.h | 35 +++++++++++--
drivers/char/hvc_irq.c | 44 +++++++++++++++
drivers/char/hvc_iseries.c | 2 +
drivers/char/hvc_vio.c | 2 +
drivers/char/hvc_xen.c | 2 +
drivers/char/virtio_console.c | 40 ++++++++++++---
drivers/lguest/lguest_device.c | 14 +++--
drivers/net/virtio_net.c | 114 +++++++++++++++++++++++++++++++++++-----
drivers/s390/kvm/kvm_virtio.c | 34 ++++++++++--
driver...
2007 May 09
0
[patch 6/9] lguest: the console driver
...he-console-driver drivers/char/Makefile
--- a/drivers/char/Makefile~lguest-the-console-driver
+++ a/drivers/char/Makefile
@@ -44,6 +44,7 @@ obj-$(CONFIG_AMIGA_BUILTIN_SERIAL) += am
obj-$(CONFIG_SX) += sx.o generic_serial.o
obj-$(CONFIG_RIO) += rio/ generic_serial.o
obj-$(CONFIG_HVC_CONSOLE) += hvc_vio.o hvsi.o
+obj-$(CONFIG_LGUEST_GUEST) += hvc_lguest.o
obj-$(CONFIG_HVC_ISERIES) += hvc_iseries.o
obj-$(CONFIG_HVC_RTAS) += hvc_rtas.o
obj-$(CONFIG_HVC_BEAT) += hvc_beat.o
diff -puN /dev/null drivers/char/hvc_lguest.c
--- /dev/null
+++ a/drivers/char/hvc_lguest.c
@@ -0,0 +1,99 @@
+/* Simple cons...
2007 May 09
0
[patch 6/9] lguest: the console driver
...he-console-driver drivers/char/Makefile
--- a/drivers/char/Makefile~lguest-the-console-driver
+++ a/drivers/char/Makefile
@@ -44,6 +44,7 @@ obj-$(CONFIG_AMIGA_BUILTIN_SERIAL) += am
obj-$(CONFIG_SX) += sx.o generic_serial.o
obj-$(CONFIG_RIO) += rio/ generic_serial.o
obj-$(CONFIG_HVC_CONSOLE) += hvc_vio.o hvsi.o
+obj-$(CONFIG_LGUEST_GUEST) += hvc_lguest.o
obj-$(CONFIG_HVC_ISERIES) += hvc_iseries.o
obj-$(CONFIG_HVC_RTAS) += hvc_rtas.o
obj-$(CONFIG_HVC_BEAT) += hvc_beat.o
diff -puN /dev/null drivers/char/hvc_lguest.c
--- /dev/null
+++ a/drivers/char/hvc_lguest.c
@@ -0,0 +1,99 @@
+/* Simple cons...
2010 Feb 24
0
[PULL] virtio & lguest
...vc_beat.c | 2 +-
drivers/char/hvc_console.c | 7 +-
drivers/char/hvc_console.h | 7 +-
drivers/char/hvc_iseries.c | 2 +-
drivers/char/hvc_iucv.c | 2 +-
drivers/char/hvc_rtas.c | 2 +-
drivers/char/hvc_udbg.c | 2 +-
drivers/char/hvc_vio.c | 2 +-
drivers/char/hvc_xen.c | 2 +-
drivers/char/virtio_console.c | 1578 +++++++++++++++++++++++++++++++++++----
drivers/virtio/virtio_balloon.c | 109 +++-
drivers/virtio/virtio_pci.c | 2 +-
drivers/virtio/virtio_ring.c | 59 ++-
include/linux/virtio.h...
2010 Feb 24
0
[PULL] virtio & lguest
...vc_beat.c | 2 +-
drivers/char/hvc_console.c | 7 +-
drivers/char/hvc_console.h | 7 +-
drivers/char/hvc_iseries.c | 2 +-
drivers/char/hvc_iucv.c | 2 +-
drivers/char/hvc_rtas.c | 2 +-
drivers/char/hvc_udbg.c | 2 +-
drivers/char/hvc_vio.c | 2 +-
drivers/char/hvc_xen.c | 2 +-
drivers/char/virtio_console.c | 1578 +++++++++++++++++++++++++++++++++++----
drivers/virtio/virtio_balloon.c | 109 +++-
drivers/virtio/virtio_pci.c | 2 +-
drivers/virtio/virtio_ring.c | 59 ++-
include/linux/virtio.h...
2009 Nov 10
3
[PATCH 1/8] virtio: console: comment cleanup
Remove old lguest-style comments.
Signed-off-by: Rusty Russell <rusty at rustcorp.com.au>
---
drivers/char/virtio_console.c | 30 ++++++------------------------
1 file changed, 6 insertions(+), 24 deletions(-)
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
--- a/drivers/char/virtio_console.c
+++ b/drivers/char/virtio_console.c
@@ -1,18 +1,5 @@
-/*D:300
- *
2009 Nov 10
3
[PATCH 1/8] virtio: console: comment cleanup
Remove old lguest-style comments.
Signed-off-by: Rusty Russell <rusty at rustcorp.com.au>
---
drivers/char/virtio_console.c | 30 ++++++------------------------
1 file changed, 6 insertions(+), 24 deletions(-)
diff --git a/drivers/char/virtio_console.c b/drivers/char/virtio_console.c
--- a/drivers/char/virtio_console.c
+++ b/drivers/char/virtio_console.c
@@ -1,18 +1,5 @@
-/*D:300
- *
2008 Jul 23
2
[PULL] lguest and virtio patches
...r/Kconfig | 11 +-
drivers/char/Makefile | 1 +
drivers/char/hvc_console.c | 85 ++----
drivers/char/hvc_console.h | 35 ++-
drivers/char/hvc_irq.c | 44 +++
drivers/char/hvc_iseries.c | 2 +
drivers/char/hvc_vio.c | 2 +
drivers/char/hvc_xen.c | 2 +
drivers/char/virtio_console.c | 40 ++-
drivers/lguest/core.c | 1 +
drivers/lguest/interrupts_and_traps.c | 24 +-
drivers/lguest/lguest_device.c | 14 +-
drivers/lguest/x86/core.c...
2008 Jul 23
2
[PULL] lguest and virtio patches
...r/Kconfig | 11 +-
drivers/char/Makefile | 1 +
drivers/char/hvc_console.c | 85 ++----
drivers/char/hvc_console.h | 35 ++-
drivers/char/hvc_irq.c | 44 +++
drivers/char/hvc_iseries.c | 2 +
drivers/char/hvc_vio.c | 2 +
drivers/char/hvc_xen.c | 2 +
drivers/char/virtio_console.c | 40 ++-
drivers/lguest/core.c | 1 +
drivers/lguest/interrupts_and_traps.c | 24 +-
drivers/lguest/lguest_device.c | 14 +-
drivers/lguest/x86/core.c...
2010 Jan 18
2
[PATCH 00/32] virtio: console: Fixes, multiple devices and generic ports
.../char/hvc_beat.c | 2 +-
drivers/char/hvc_console.c | 9 +-
drivers/char/hvc_console.h | 9 +-
drivers/char/hvc_iseries.c | 2 +-
drivers/char/hvc_iucv.c | 2 +-
drivers/char/hvc_rtas.c | 2 +-
drivers/char/hvc_udbg.c | 2 +-
drivers/char/hvc_vio.c | 2 +-
drivers/char/hvc_xen.c | 2 +-
drivers/char/virtio_console.c | 1559 ++++++++++++++++++++++++++++++++++++----
drivers/virtio/virtio_ring.c | 25 +
include/linux/virtio.h | 4 +
include/linux/virtio_console.h | 31 +-
14 files changed, 1496 insertion...
2010 Jan 18
2
[PATCH 00/32] virtio: console: Fixes, multiple devices and generic ports
.../char/hvc_beat.c | 2 +-
drivers/char/hvc_console.c | 9 +-
drivers/char/hvc_console.h | 9 +-
drivers/char/hvc_iseries.c | 2 +-
drivers/char/hvc_iucv.c | 2 +-
drivers/char/hvc_rtas.c | 2 +-
drivers/char/hvc_udbg.c | 2 +-
drivers/char/hvc_vio.c | 2 +-
drivers/char/hvc_xen.c | 2 +-
drivers/char/virtio_console.c | 1559 ++++++++++++++++++++++++++++++++++++----
drivers/virtio/virtio_ring.c | 25 +
include/linux/virtio.h | 4 +
include/linux/virtio_console.h | 31 +-
14 files changed, 1496 insertion...
2009 Nov 28
3
[PATCH 00/28] virtio: console: Fixes, support for generic ports
.../char/hvc_beat.c | 2 +-
drivers/char/hvc_console.c | 8 +-
drivers/char/hvc_console.h | 7 +-
drivers/char/hvc_iseries.c | 2 +-
drivers/char/hvc_iucv.c | 2 +-
drivers/char/hvc_rtas.c | 2 +-
drivers/char/hvc_udbg.c | 2 +-
drivers/char/hvc_vio.c | 2 +-
drivers/char/hvc_xen.c | 2 +-
drivers/char/virtio_console.c | 1500 ++++++++++++++++++++++++++++++++++++----
include/linux/virtio_console.h | 46 ++-
12 files changed, 1415 insertions(+), 168 deletions(-)
2009 Nov 28
3
[PATCH 00/28] virtio: console: Fixes, support for generic ports
.../char/hvc_beat.c | 2 +-
drivers/char/hvc_console.c | 8 +-
drivers/char/hvc_console.h | 7 +-
drivers/char/hvc_iseries.c | 2 +-
drivers/char/hvc_iucv.c | 2 +-
drivers/char/hvc_rtas.c | 2 +-
drivers/char/hvc_udbg.c | 2 +-
drivers/char/hvc_vio.c | 2 +-
drivers/char/hvc_xen.c | 2 +-
drivers/char/virtio_console.c | 1500 ++++++++++++++++++++++++++++++++++++----
include/linux/virtio_console.h | 46 ++-
12 files changed, 1415 insertions(+), 168 deletions(-)