From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from [140.186.70.92] (port=48145 helo=eggs.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1OC7cx-0005Ys-2A for qemu-devel@nongnu.org; Wed, 12 May 2010 04:49:15 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.69) (envelope-from ) id 1OC7cu-0005GA-Gd for qemu-devel@nongnu.org; Wed, 12 May 2010 04:49:14 -0400 Received: from mail-vw0-f45.google.com ([209.85.212.45]:53444) by eggs.gnu.org with esmtp (Exim 4.69) (envelope-from ) id 1OC7cs-0005Fm-W3 for qemu-devel@nongnu.org; Wed, 12 May 2010 04:49:12 -0400 Received: by vws10 with SMTP id 10so733617vws.4 for ; Wed, 12 May 2010 01:49:10 -0700 (PDT) MIME-Version: 1.0 Date: Wed, 12 May 2010 16:49:09 +0800 Message-ID: From: chen huacai Content-Type: text/plain; charset=ISO-8859-1 Subject: [Qemu-devel] [PATCH 0/6] MIPS: Initial support for fulong (Loongson-2E based) mini pc. List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: aurelien@aurel32.net, Stefan Weil Cc: qemu-devel@nongnu.org This series of patches are for qemu master branch. They make qemu initially support fulong (Loongson-2E based) mini pc, a new type of MIPS machine. Usage: 1, Load PMON as bios, and then load OS in PMON shell qemu-system-mips64el -M fulong2e -bios pmon_fulong2e.bin -hda /root/hda.img 2, Load OS directly with -kernel parameter qemu-system-mips64el -M fulong2e -kernel vmlinux -append "root=/dev/hda1 console=ttyS0" -hda /root/hda.img Patches include: [PATCH 1/6] MIPS: Initial support of bonito north bridge used by fulong mini pc [PATCH 2/6] MIPS: Initial support of vt82686b south bridge used by fulong mini pc [PATCH 3/6] MIPS: Initial support of VIA IDE controller used by fulong mini pc [PATCH 4/6] MIPS: Initial support of VIA USB controller used by fulong mini pc [PATCH 5/6] MIPS: Initial support of fulong mini pc (CPU definition, machine construction, etc.) [PATCH 6/6] MIPS: add PMON (binary file) used by fulong mini pc In this version, fulong is limited to mips64el only (doesn't affect mips, mips64 and mipsel); qdev model is used for Bonito north bridge, code style and other errors have been fixed. Signed-off-by: Huacai Chen -- Huacai Chen