[Qemu-devel] [PATCH] configure: no need to mkdir QMP

2014-08-18 Thread Liming Wang
commit 7537fe04 QMP: QMP/ -> docs/qmp/ Above commit has moved last QMP files to docs/qmp and it's not necessary to create QMP directory. So remove it from configure. Signed-off-by: Liming Wang --- configure | 4 1 file changed, 4 deletions(-) diff --git a/configure b/configu

[Qemu-devel] [PATCH] qemu-options.hx: fix a typo of chardev

2014-08-12 Thread Liming Wang
Change host to port. Signed-off-by: Liming Wang --- qemu-options.hx | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/qemu-options.hx b/qemu-options.hx index 1549625..ac9e985 100644 --- a/qemu-options.hx +++ b/qemu-options.hx @@ -1926,7 +1926,7 @@ ETEXI DEF("ch

[Qemu-devel] [PATCH] net: add missing include file

2012-12-21 Thread Liming Wang
] cc1: all warnings being treated as errors Signed-off-by: Liming Wang --- net/vde.c |1 + 1 file changed, 1 insertion(+) diff --git a/net/vde.c b/net/vde.c index 754a141..4dea32d 100644 --- a/net/vde.c +++ b/net/vde.c @@ -29,6 +29,7 @@ #include "clients.h" #include "qemu-comm

[Qemu-devel] [PATCH] xilinx_zynq: Fix wrong IRQ number of the second EHCI controller

2012-12-03 Thread Liming Wang
The IRQ number of the second EHCI controller should be 76, not 75. Signed-off-by: Liming Wang --- hw/xilinx_zynq.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/xilinx_zynq.c b/hw/xilinx_zynq.c index 1f12a3d..808de68 100644 --- a/hw/xilinx_zynq.c +++ b/hw

[Qemu-devel] [PATCH 2/2] exynos4210: Add ehci support

2012-12-01 Thread Liming Wang
Add ehci host controller to exynos4210. Signed-off-by: Liming Wang --- hw/exynos4210.c |6 ++ hw/exynos4210_gic.c |2 +- 2 files changed, 7 insertions(+), 1 deletion(-) diff --git a/hw/exynos4210.c b/hw/exynos4210.c index 00d4db8..e0913a5 100644 --- a/hw/exynos4210.c +++ b/hw

[Qemu-devel] [PATCH 1/2] usb/ehci: Refactor ehci-sysbus to add exynos4210 ehci support

2012-12-01 Thread Liming Wang
Refactor ehci-sysbus to accept different capsbase and opregbase. And then add exynos4210 ehci support to ehci-sysbus. Signed-off-by: Liming Wang --- hw/usb/hcd-ehci-sysbus.c | 48 -- 1 file changed, 38 insertions(+), 10 deletions(-) diff --git a/hw

[Qemu-devel] [PATCH] xilinx_zynq: Add one variable to avoid overwriting QSPI bus

2012-11-28 Thread Liming Wang
s NULL and the last two m25p80 flashes won't be attached to the spi1 bus, but to main-system-bus. Here we add one variable to avoid overwriting. Signed-off-by: Liming Wang --- hw/xilinx_zynq.c |9 + 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/hw/xilinx_zynq.c b/h

[Qemu-devel] [PATCH] m25p80: Fix wrong jedec id for Numonyx n25q128

2012-11-19 Thread Liming Wang
The jedec id of "n25q128" should be 0x20bb18, not 0x20ba18. Signed-off-by: Liming Wang --- hw/m25p80.c |2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/hw/m25p80.c b/hw/m25p80.c index 3895e73..58ae754 100644 --- a/hw/m25p80.c +++ b/hw/m25p80.c @@ -177,7 +177,7

[Qemu-devel] [PATCH] trace: Remove "info trace" from documents

2012-11-15 Thread Liming Wang
commit 88affa1c monitor: remove unused do_info_trace has removed "info trace" function from monitor, so remove it from documents. Signed-off-by: Liming Wang --- docs/tracing.txt |9 - hmp-commands.hx |7 --- 2 files changed, 16 deletions(-) diff --git a/docs/tra

[Qemu-devel] [PATCH v2] hw/vexpress.c: Add NOR flash model

2012-03-20 Thread Liming Wang
Vexpress motherboard has two 2x16 NOR flash, but pflash_cfi01 doesn't support interleaving, so here only models two 1x32 flash. Although it's not exactly modeled, it works fine for running linux. Signed-off-by: Liming Wang --- v2: - swap NORFLASH0 and NORFLASH0ALIAS and reserve NORF

[Qemu-devel] [PATCH 1/2] hw/pflash_cfi01: add "0xf0" to select and deselect read mode

2012-03-20 Thread Liming Wang
00, wcycle 0x0 cmd 0x0 value 0xf0)". This patch fixes this mistake. Signed-off-by: Liming Wang --- hw/pflash_cfi01.c |5 +++-- 1 files changed, 3 insertions(+), 2 deletions(-) diff --git a/hw/pflash_cfi01.c b/hw/pflash_cfi01.c index b03f623..2e6fa71 100644 --- a/hw/pflash_cfi01.c

[Qemu-devel] [PATCH 2/2] hw/pflash_cfi01: change print method to avoid complaint

2012-03-20 Thread Liming Wang
Linux guest os often writes invalid cmd data to reset into read mode, which leads many qemu complaint. Here we place all the debug message into macro PFLASH_DEBUG. We can turn on the all debug info by define PFLASH_DEBUG if we want to debug pflash_cfi01. Signed-off-by: Liming Wang --- hw

[Qemu-devel] [PATCH] hw/vexpress.c: Add NOR flash model

2012-03-20 Thread Liming Wang
Vexpress motherboard has two 2x16 NOR flash, but pflash_cfi01 doesn't support interleaving, so here only models two 1x32 flash. Although it's not exactly modeled, it works fine for running linux. Signed-off-by: Liming Wang --- hw/vexpress.c | 19 +-- 1 files c