From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([208.118.235.92]:52786) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TvHKU-0003y2-P3 for qemu-devel@nongnu.org; Tue, 15 Jan 2013 19:58:12 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1TvHKT-0002ST-GL for qemu-devel@nongnu.org; Tue, 15 Jan 2013 19:58:10 -0500 Received: from mout.web.de ([212.227.17.11]:54419) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1TvHKT-0002SC-6D for qemu-devel@nongnu.org; Tue, 15 Jan 2013 19:58:09 -0500 From: =?UTF-8?q?Andreas=20F=C3=A4rber?= Date: Wed, 16 Jan 2013 01:57:53 +0100 Message-Id: <1358297879-26576-1-git-send-email-andreas.faerber@web.de> MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Subject: [Qemu-devel] [PATCH for-1.4 v4 0/6] I2C libqos and tmp105 qtest support List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Alex Horn , =?UTF-8?q?Andreas=20F=C3=A4rber?= , anthony@codemonkey.ws, Peter Maydell Hello Anthony, Here's another rebased version of $subject. Please review changed bits and apply. Regards, Andreas v3 -> v4: * Rebased tmp105 onto already-const TypeInfo. * Rebased qtest Makefile additions onto second build reorganization. v2 -> v3: * Alex' tmp105.h patch was applied. * Rebased onto header reorganization. * Rebased onto introduction of gcov support. * Switched order of test case and bugfix to keep make check happy. * Dropped extra white line and renamed int64_t value -> temp to make patch smaller. v1 -> v2: * Factor out libqos API for I2C and an OMAP driver * Avoid casts by using uint8_t* in API, suggested by Blue * Ignore SBD bit in omap_i2c driver * Drop omap_i2c patch clearing SBD * Incorporate Alex' tmp105.h patch * Split out tmp105_regs.h for qtest, inspired by rtc-test * Append replacement for Alex' fix * Append QOM cleanup and turn setter function into QOM property Cc: Anthony Liguori Cc: Alex Horn Cc: Andrzej Zaborowski Cc: Peter Maydell Andreas Färber (6): libqtest: Prepare I2C libqos tmp105: Split out I2C message constants from header tmp105: Fix I2C protocol bug tests: Add tmp105 qtest test case tmp105: QOM'ify tmp105: Add temperature QOM property hw/tmp105.c | 77 ++++++++++++++---------- hw/tmp105.h | 64 +++++++------------- hw/tmp105_regs.h | 50 ++++++++++++++++ tests/Makefile | 4 ++ tests/libi2c-omap.c | 166 +++++++++++++++++++++++++++++++++++++++++++++++++++ tests/libi2c.c | 22 +++++++ tests/libi2c.h | 30 ++++++++++ tests/tmp105-test.c | 76 +++++++++++++++++++++++ 8 Dateien geändert, 416 Zeilen hinzugefügt(+), 73 Zeilen entfernt(-) create mode 100644 hw/tmp105_regs.h create mode 100644 tests/libi2c-omap.c create mode 100644 tests/libi2c.c create mode 100644 tests/libi2c.h create mode 100644 tests/tmp105-test.c -- 1.7.10.4