Re: [Qemu-devel] [PATCH 00/11] Goldfish

2011-08-22 Thread Patrick Jackson
Apologies for the line-wrapping on this patchset, the series can be found as the most recent commits on the master branch of g...@github.com:patricksjackson/qemu.git, with web link here<https://github.com/patricksjackson/qemu/tree/master> . On Mon, Aug 22, 2011 at 5:36 AM, Patrick Jackson

[Qemu-devel] [PATCH 11/11] Goldfish: Added device setup for NICs.

2011-08-22 Thread Patrick Jackson
Signed-off-by: Patrick Jackson --- hw/android_arm.c | 19 +++ 1 files changed, 19 insertions(+), 0 deletions(-) diff --git a/hw/android_arm.c b/hw/android_arm.c index 5d8372d..f85db5c 100644 --- a/hw/android_arm.c +++ b/hw/android_arm.c @@ -74,6 +74,25 @@ static void

[Qemu-devel] [PATCH 09/11] Goldfish: Added battery device.

2011-08-22 Thread Patrick Jackson
Signed-off-by: Patrick Jackson --- Makefile.target |1 + hw/android_arm.c |1 + hw/goldfish_battery.c | 247 + hw/goldfish_device.h |3 + hw/power_supply.h | 109 ++ 5 files changed, 361 insertions

[Qemu-devel] [PATCH 10/11] Goldfish: Added switch device.

2011-08-22 Thread Patrick Jackson
Signed-off-by: Patrick Jackson --- Makefile.target |2 +- hw/android_arm.c | 18 + hw/goldfish_device.h |2 + hw/goldfish_switch.c | 168 ++ 4 files changed, 189 insertions(+), 1 deletions(-) create mode 100644 hw

[Qemu-devel] [PATCH 08/11] Goldfish: Added the memory logger device.

2011-08-22 Thread Patrick Jackson
Signed-off-by: Patrick Jackson --- Makefile.target |2 +- hw/android_arm.c |1 + hw/goldfish_device.h |1 + hw/goldfish_memlog.c | 106 ++ 4 files changed, 109 insertions(+), 1 deletions(-) create mode 100644 hw

[Qemu-devel] [PATCH 05/11] Goldfish: Added a tty device:

2011-08-22 Thread Patrick Jackson
This device allows for viewing the kernel output using the command line options below. -append "console=ttyS0" -serial stdio Signed-off-by: Patrick Jackson --- Makefile.target |1 + hw/android_arm.c |9 ++ hw/goldfish_device.h |1 + hw/goldfish_tty.c

[Qemu-devel] [PATCH 04/11] Goldfish: Added timing devices.

2011-08-22 Thread Patrick Jackson
Includes a timer and a real time clock. Signed-off-by: Patrick Jackson --- Makefile.target |2 +- hw/android_arm.c |2 + hw/goldfish_device.h |2 + hw/goldfish_timer.c | 241 ++ 4 files changed, 246 insertions(+), 1

[Qemu-devel] [PATCH 03/11] Goldfish: Added an interrupt device.

2011-08-22 Thread Patrick Jackson
Signed-off-by: Patrick Jackson --- Makefile.target |2 +- hw/android_arm.c|5 ++ hw/goldfish_device.h|1 + hw/goldfish_interrupt.c | 182 +++ 4 files changed, 189 insertions(+), 1 deletions(-) create mode 100644 hw

[Qemu-devel] [PATCH 02/11] Goldfish: Adding devices for handling qdev needs in goldfish.

2011-08-22 Thread Patrick Jackson
This commit includes a bridge device and a bus, as well as necessary access functions. Signed-off-by: Patrick Jackson --- Makefile.target |2 +- hw/goldfish_device.c | 294 ++ hw/goldfish_device.h | 52 + 3 files changed, 347

[Qemu-devel] [PATCH 01/11] Goldfish: Create a minimal "android_arm" machine.

2011-08-22 Thread Patrick Jackson
Signed-off-by: Patrick Jackson --- Makefile.target |1 + hw/android_arm.c | 76 ++ 2 files changed, 77 insertions(+), 0 deletions(-) create mode 100644 hw/android_arm.c diff --git a/Makefile.target b/Makefile.target index 096214a

[Qemu-devel] [PATCH 00/11] Goldfish

2011-08-22 Thread Patrick Jackson
This patchset is a step towards integrating the Goldfish hardware that is necessary to run Android in QEMU. It contains all of the devices that I was able to get working during my GSOC project, but is missing several important devices and as a result does not allow for a usable Android OS (Specific