[{"id":1772434,"web_url":"http://patchwork.ozlabs.org/comment/1772434/","msgid":"<CALHRZupkDOR0ztSZ8xiiq0jo8uCNsth26s==iJnG2Zff=_MT1Q@mail.gmail.com>","list_archive_url":null,"date":"2017-09-21T06:11:44","subject":"Re: [Qemu-devel] [PATCH v11 0/5] Add support for Smartfusion2 SoC","submitter":{"id":64324,"url":"http://patchwork.ozlabs.org/api/people/64324/","name":"sundeep subbaraya","email":"sundeep.lkml@gmail.com"},"content":"Thanks Philippe :)\n\nSundeep\n\nOn Thu, Sep 21, 2017 at 1:47 AM, Philippe Mathieu-Daudé <f4bug@amsat.org>\nwrote:\n\n> Hi Peter,\n>\n> Now than Igor's patch landed, I respin Sundeep's series updating it to work\n> after the \"arm: drop intermediate cpu_model -> cpu type parsing and use cpu\n> type directly\" patch.\n>\n> v11:\n> - msf2-soc.c: add a check for null m3clk\n> - msf2-soc.c, msf2-som.c: drop cpu_model to directly use cpu type\n>\n> --\n>\n> Sundeep original cover:\n>\n> I am trying to add Smartfusion2 SoC.\n> SoC is from Microsemi and System on Module(SOM)\n> board is from Emcraft systems. Smartfusion2 has hardened\n> Microcontroller(Cortex-M3)based Sub System and FPGA fabric.\n> At the moment only system timer, sysreg and SPI\n> controller are modelled.\n>\n> Testing:\n> ./arm-softmmu/qemu-system-arm -M emcraft-sf2 -serial mon:stdio \\\n> -kernel u-boot.bin -display none -drive file=spi.bin,if=mtd,format=raw\n>\n> Binaries u-boot.bin and spi.bin are at:\n> https://github.com/Subbaraya-Sundeep/qemu-test-binaries.git\n>\n> U-boot is from Emcraft with modified\n>     - SPI driver not to use PDMA.\n>     - ugly hack to pass dtb to kernel in r1.\n> @\n> https://github.com/Subbaraya-Sundeep/emcraft-uboot-sf2.git\n>\n> Linux is 4.5 linux with Smartfusion2 SoC dts and clocksource\n> driver added by myself @\n> https://github.com/Subbaraya-Sundeep/linux.git\n>\n> v10:\n>     Added msf2_sysreg_realize in msf2-sysreg.c\n>     modified unimplemented devices names:\n>         pdma->dma and hpdma->hs-dma\n>     used uint8_t for apb divisors properties\n>     simplified msf2_divbits() using ctz32()\n>\n> v9:\n>     used trace instead of DB_PRINT in msf2-sysreg.c\n>     used LOG_UNIMP for non guest errors in msf2-sysreg.c\n>     added unimplemented devices in msf2-soc.c\n>     removed .alias suffix in alias memory region name for eNVM\n>     removed mc->ignore_memory_transaction_failures in msf2-som.c\n>\n> v8:\n>     memory_region_init_ram to memory_region_init_rom in soc\n>     %s/emcraft_sf2_init/emcraft_sf2_s2s010_init/g in som\n>     Added mc->ignore_memory_transaction_failures = true in som\n>         as per latest commit.\n>     Code simplifications as suggested by Alistair in sysreg and ssi.\n>\n> v7:\n>     Removed vmstate_register_ram_global as per latest commit\n>     Moved header files to C which are local to C source files\n>     Removed abort() from msf2-sysreg.c\n>     Added VMStateDescription in mss-timer.c\n>\n> v6:\n>     Moved some defines from header files to source files\n>     Added properties m3clk, apb0div, apb0div1 properties\n>     to soc.\n>     Added properties apb0divisor, apb1divisor to sysreg\n>     Update system_clock_source in msf2-soc.c\n>     Changed machine name smartfusion2-som->emcraft-sf2\n>\n> v5\n>     As per Philippe comments:\n>         Added abort in Sysreg if guest tries to remap memory\n>         other than default mapping.\n>         Use of CONFIG_MSF2 in Makefile for soc.c\n>         Fixed incorrect logic in timer model.\n>         Renamed msf2-timer.c -> mss-timer.c\n>                 msf2-spi.c -> mss-spi.c also type names\n>         Renamed function msf2_init->emcraft_sf2_init in msf2-som.c\n>         Added part-name,eNVM-size,eSRAM-size,pclk0 and pclk1\n>             properties to soc.\n>         Pass soc part-name,memory size and clock rate properties from som.\n> v4:\n>     Fixed build failure by using PRIx macros.\n> v3:\n>     Added SoC file and board file as per Alistair comments.\n> v2:\n>     Added SPI controller so that u-boot loads kernel from spi flash.\n> v1:\n>     Initial patch set with timer and sysreg\n>\n> Thanks,\n> Sundeep\n>\n> Subbaraya Sundeep (5):\n>   msf2: Add Smartfusion2 System timer\n>   msf2: Microsemi Smartfusion2 System Register block\n>   msf2: Add Smartfusion2 SPI controller\n>   msf2: Add Smartfusion2 SoC\n>   msf2: Add Emcraft's Smartfusion2 SOM kit\n>\n>  default-configs/arm-softmmu.mak |   1 +\n>  include/hw/arm/msf2-soc.h       |  67 +++++++\n>  include/hw/misc/msf2-sysreg.h   |  77 ++++++++\n>  include/hw/ssi/mss-spi.h        |  58 ++++++\n>  include/hw/timer/mss-timer.h    |  64 +++++++\n>  hw/arm/msf2-soc.c               | 238 +++++++++++++++++++++++\n>  hw/arm/msf2-som.c               | 105 +++++++++++\n>  hw/misc/msf2-sysreg.c           | 160 ++++++++++++++++\n>  hw/ssi/mss-spi.c                | 404 ++++++++++++++++++++++++++++++\n> ++++++++++\n>  hw/timer/mss-timer.c            | 289 ++++++++++++++++++++++++++++\n>  hw/arm/Makefile.objs            |   1 +\n>  hw/misc/Makefile.objs           |   1 +\n>  hw/misc/trace-events            |   5 +\n>  hw/ssi/Makefile.objs            |   1 +\n>  hw/timer/Makefile.objs          |   1 +\n>  15 files changed, 1472 insertions(+)\n>  create mode 100644 include/hw/arm/msf2-soc.h\n>  create mode 100644 include/hw/misc/msf2-sysreg.h\n>  create mode 100644 include/hw/ssi/mss-spi.h\n>  create mode 100644 include/hw/timer/mss-timer.h\n>  create mode 100644 hw/arm/msf2-soc.c\n>  create mode 100644 hw/arm/msf2-som.c\n>  create mode 100644 hw/misc/msf2-sysreg.c\n>  create mode 100644 hw/ssi/mss-spi.c\n>  create mode 100644 hw/timer/mss-timer.c\n>\n> --\n> 2.14.1\n>\n>","headers":{"Return-Path":"<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@bilbo.ozlabs.org","Authentication-Results":["ozlabs.org;\n\tspf=pass (mailfrom) smtp.mailfrom=nongnu.org\n\t(client-ip=2001:4830:134:3::11; helo=lists.gnu.org;\n\tenvelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org;\n\treceiver=<UNKNOWN>)","ozlabs.org;\n\tdkim=fail reason=\"signature verification failed\" (2048-bit key;\n\tunprotected) header.d=gmail.com header.i=@gmail.com\n\theader.b=\"KlORNHAB\"; dkim-atps=neutral"],"Received":["from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11])\n\t(using TLSv1 with cipher AES256-SHA (256/256 bits))\n\t(No client certificate requested)\n\tby ozlabs.org (Postfix) with ESMTPS id 3xyR8v1CRbz9t3C\n\tfor <incoming@patchwork.ozlabs.org>;\n\tThu, 21 Sep 2017 16:12:13 +1000 (AEST)","from localhost ([::1]:51961 helo=lists.gnu.org)\n\tby lists.gnu.org with esmtp (Exim 4.71) (envelope-from\n\t<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>)\n\tid 1duuiY-0005AW-KD\n\tfor incoming@patchwork.ozlabs.org; Thu, 21 Sep 2017 02:12:10 -0400","from eggs.gnu.org ([2001:4830:134:3::10]:33350)\n\tby lists.gnu.org with esmtp (Exim 4.71)\n\t(envelope-from <sundeep.lkml@gmail.com>) id 1duuiC-0005AP-Uc\n\tfor qemu-devel@nongnu.org; Thu, 21 Sep 2017 02:11:50 -0400","from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)\n\t(envelope-from <sundeep.lkml@gmail.com>) id 1duuiB-0006B2-6n\n\tfor qemu-devel@nongnu.org; Thu, 21 Sep 2017 02:11:48 -0400","from mail-ua0-x243.google.com ([2607:f8b0:400c:c08::243]:38205)\n\tby eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16)\n\t(Exim 4.71) (envelope-from <sundeep.lkml@gmail.com>)\n\tid 1duuiB-0006Ap-0X; Thu, 21 Sep 2017 02:11:47 -0400","by mail-ua0-x243.google.com with SMTP id l24so1464717uaa.5;\n\tWed, 20 Sep 2017 23:11:45 -0700 (PDT)","by 10.176.66.68 with HTTP; Wed, 20 Sep 2017 23:11:44 -0700 (PDT)"],"DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;\n\th=mime-version:in-reply-to:references:from:date:message-id:subject:to\n\t:cc; bh=lVMrr6Qs6xrpuCTNaPbLRD/ZtmffvOW6fjQC2MRq/mQ=;\n\tb=KlORNHABGWJHoSY6DPx4BwHErsNLTDIpcGKW5oAYlIxonK239LHLwfmUM+rjfbyDSX\n\tahKS2iJPPSuPeHuDyTl9QigYupCoFc4nJ5UjwVnb5VoOUzkB5+/+yS5q3xKudf7OiJbJ\n\t0amwv0GRexQQni8VN9pde3haOv2Wzi9lLTFYm4YcrfkaUK8mhjJ2FuCJaPF1ps99nyox\n\t/c6nWJSK1ywUmnw6GkPfvW+h4Gi0rBqiRYoBcNLb/5yK4HZOZcs01IJrDxnLr+iWG6iH\n\t7C4vTHvLPlPc4gQJaEvG6MkXwyy8kD6VFtWXt5ejmWIk2Bfi/JpTuCG7P555n/bM20bW\n\tmSyQ==","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n\td=1e100.net; s=20161025;\n\th=x-gm-message-state:mime-version:in-reply-to:references:from:date\n\t:message-id:subject:to:cc;\n\tbh=lVMrr6Qs6xrpuCTNaPbLRD/ZtmffvOW6fjQC2MRq/mQ=;\n\tb=TIBFtdbalGPZhIO9uwnKz+CNWJzuWZrv5yOs8Oksj496P7IGpaKm5uTEIXVzY9zaOW\n\tKaX9Wwi5w7wfVBpHYRd2yIJMJ0qgbn5Q4A2DJmBSQD37JXfUdQvV2FAiQT9xSPDe86vz\n\tQVo/QuDiMYFzQFcOsQgM0xIKxUuD9yUsPr4i5r/yOSyaLaPdbOXpUngCfz/zZ9iUQ1D0\n\tgJvTexvPoGQE6Urpm5a2JKDqC0RCD1tSaKWk6zE22R48jhb/gj760XMz9cmLC56HqfIS\n\tVghRRkaUwvdo3MmTUrKjjXJaHpXlGDqp0yiGkQIRgC58i6s+KG+2O5WpI4LRmXNpA0S+\n\tWtxQ==","X-Gm-Message-State":"AHPjjUipTmbeIUQC+rHcmra6pjPS1r8GzqugutgWrl1/C5UodTgvMA7f\n\ts+60B0pGhVr4gn21MHi3YqckRS6ih0ySoRM5q4Y=","X-Google-Smtp-Source":"AOwi7QDPVdEkufPZERc/C1xa3I3BecLBKlgfHr6QLFLv/Dy5J84SnYCwR5PqZ8vZVW2wzlKPhtS9wFkdehjy6/mohv4=","X-Received":"by 10.176.68.196 with SMTP id n62mr1000409uan.159.1505974305170; \n\tWed, 20 Sep 2017 23:11:45 -0700 (PDT)","MIME-Version":"1.0","In-Reply-To":"<20170920201737.25723-1-f4bug@amsat.org>","References":"<20170920201737.25723-1-f4bug@amsat.org>","From":"sundeep subbaraya <sundeep.lkml@gmail.com>","Date":"Thu, 21 Sep 2017 11:41:44 +0530","Message-ID":"<CALHRZupkDOR0ztSZ8xiiq0jo8uCNsth26s==iJnG2Zff=_MT1Q@mail.gmail.com>","To":"=?utf-8?q?Philippe_Mathieu-Daud=C3=A9?= <f4bug@amsat.org>","X-detected-operating-system":"by eggs.gnu.org: Genre and OS details not\n\trecognized.","X-Received-From":"2607:f8b0:400c:c08::243","Content-Type":"text/plain; charset=\"UTF-8\"","Content-Transfer-Encoding":"quoted-printable","X-Content-Filtered-By":"Mailman/MimeDel 2.1.21","Subject":"Re: [Qemu-devel] [PATCH v11 0/5] Add support for Smartfusion2 SoC","X-BeenThere":"qemu-devel@nongnu.org","X-Mailman-Version":"2.1.21","Precedence":"list","List-Id":"<qemu-devel.nongnu.org>","List-Unsubscribe":"<https://lists.nongnu.org/mailman/options/qemu-devel>,\n\t<mailto:qemu-devel-request@nongnu.org?subject=unsubscribe>","List-Archive":"<http://lists.nongnu.org/archive/html/qemu-devel/>","List-Post":"<mailto:qemu-devel@nongnu.org>","List-Help":"<mailto:qemu-devel-request@nongnu.org?subject=help>","List-Subscribe":"<https://lists.nongnu.org/mailman/listinfo/qemu-devel>,\n\t<mailto:qemu-devel-request@nongnu.org?subject=subscribe>","Cc":"Peter Maydell <peter.maydell@linaro.org>,\n\tPeter Crosthwaite <crosthwaite.peter@gmail.com>,\n\tAlistair Francis <alistair@alistair23.me>,\n\tQEMU Developers <qemu-devel@nongnu.org>, qemu-arm <qemu-arm@nongnu.org>, \n\tIgor Mammedov <imammedo@redhat.com>","Errors-To":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org","Sender":"\"Qemu-devel\"\n\t<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>"}},{"id":1772979,"web_url":"http://patchwork.ozlabs.org/comment/1772979/","msgid":"<CAFEAcA_0CHhQwA-zjsEseA8D==iz401G6CrwGoN33Nwp7GV+ew@mail.gmail.com>","list_archive_url":null,"date":"2017-09-21T16:33:23","subject":"Re: [Qemu-devel] [PATCH v11 0/5] Add support for Smartfusion2 SoC","submitter":{"id":5111,"url":"http://patchwork.ozlabs.org/api/people/5111/","name":"Peter Maydell","email":"peter.maydell@linaro.org"},"content":"On 20 September 2017 at 21:17, Philippe Mathieu-Daudé <f4bug@amsat.org> wrote:\n> Hi Peter,\n>\n> Now than Igor's patch landed, I respin Sundeep's series updating it to work\n> after the \"arm: drop intermediate cpu_model -> cpu type parsing and use cpu\n> type directly\" patch.\n>\n> v11:\n> - msf2-soc.c: add a check for null m3clk\n> - msf2-soc.c, msf2-som.c: drop cpu_model to directly use cpu type\n>\n> --\n\nApplied to target-arm.next.\n\nThanks to Sundeep for being so patient with our code review process,\nand to Philippe and Alistair for doing the review and shepherding\nthe series through it.\n\nthank\n-- PMM","headers":{"Return-Path":"<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@bilbo.ozlabs.org","Authentication-Results":["ozlabs.org;\n\tspf=pass (mailfrom) smtp.mailfrom=nongnu.org\n\t(client-ip=2001:4830:134:3::11; helo=lists.gnu.org;\n\tenvelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org;\n\treceiver=<UNKNOWN>)","ozlabs.org;\n\tdkim=fail reason=\"signature verification failed\" (1024-bit key;\n\tunprotected) header.d=linaro.org header.i=@linaro.org\n\theader.b=\"LqCr/6g5\"; dkim-atps=neutral"],"Received":["from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11])\n\t(using TLSv1 with cipher AES256-SHA (256/256 bits))\n\t(No client certificate requested)\n\tby ozlabs.org (Postfix) with ESMTPS id 3xyhyh5RFsz9t42\n\tfor <incoming@patchwork.ozlabs.org>;\n\tFri, 22 Sep 2017 02:34:13 +1000 (AEST)","from localhost ([::1]:54606 helo=lists.gnu.org)\n\tby lists.gnu.org with esmtp (Exim 4.71) (envelope-from\n\t<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>)\n\tid 1dv4QV-0000yI-7Y\n\tfor incoming@patchwork.ozlabs.org; Thu, 21 Sep 2017 12:34:11 -0400","from eggs.gnu.org ([2001:4830:134:3::10]:58653)\n\tby lists.gnu.org with esmtp (Exim 4.71)\n\t(envelope-from <peter.maydell@linaro.org>) id 1dv4Q6-0000xS-2I\n\tfor qemu-devel@nongnu.org; Thu, 21 Sep 2017 12:33:47 -0400","from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)\n\t(envelope-from <peter.maydell@linaro.org>) id 1dv4Q5-0003Qe-An\n\tfor qemu-devel@nongnu.org; Thu, 21 Sep 2017 12:33:46 -0400","from mail-wm0-x232.google.com ([2a00:1450:400c:c09::232]:48884)\n\tby eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16)\n\t(Exim 4.71) (envelope-from <peter.maydell@linaro.org>)\n\tid 1dv4Q5-0003Q8-43\n\tfor qemu-devel@nongnu.org; Thu, 21 Sep 2017 12:33:45 -0400","by mail-wm0-x232.google.com with SMTP id m127so3453047wmm.3\n\tfor <qemu-devel@nongnu.org>; Thu, 21 Sep 2017 09:33:44 -0700 (PDT)","by 10.223.139.215 with HTTP; Thu, 21 Sep 2017 09:33:23 -0700 (PDT)"],"DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed; d=linaro.org; s=google;\n\th=mime-version:in-reply-to:references:from:date:message-id:subject:to\n\t:cc:content-transfer-encoding;\n\tbh=Tq2b8ZaC7/Qll0iFvs6L3oPCkaCT7d6A4kwTmrtJAwQ=;\n\tb=LqCr/6g5JJnwYEx+WWxwXBUybTFJ+iYRGEfZbC6+DUVLRaBn3iXmbC1M2ebjfBMXhN\n\tRDv0i/YRQOJoRZGEupU6V2vdvHxNiZUFEkMQnCQQUtGoeswSepwbaI9JY8ubJ/TmBoES\n\t9A1XLY4hypZ+bUwCLYpVRzsCZGGItQPjMOpGI=","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n\td=1e100.net; s=20161025;\n\th=x-gm-message-state:mime-version:in-reply-to:references:from:date\n\t:message-id:subject:to:cc:content-transfer-encoding;\n\tbh=Tq2b8ZaC7/Qll0iFvs6L3oPCkaCT7d6A4kwTmrtJAwQ=;\n\tb=VUQlrUnYVU/FalsnGINiX0D5vni451S12qopkAOUIRmj2HH/910rEBgQr08I9Pkjyy\n\tDmOdGenebOyM3xAeBj1vs54JsQbFXZ1M29XNwjEdP35Ul4O7sTx/pSSKlOvDH4noAwTi\n\tBB7bEhWATctcO8gJzAhjR55AsI9g5lDG/Jl69p+ZJHyeuU749RgXLfj4qLr7x+tnA7sb\n\t7h0lTM12ZjBtcm2PQGv7gBsmkCp0v4voz9/C9JMkASXZ0lCtVmjv7AsucJX6erOmK79t\n\tAynbl+Ai9542/5UM27TOlViLvELdVC4HDMrAuzQ7bKxKnWzcGgIXPMapCIbJ28sx9zhq\n\tP5Bg==","X-Gm-Message-State":"AHPjjUgw2gXD/CV2Z4NXNVd7Bm6nFWsf7qoTSMYUKJJgJkTW8Eo8xGMp\n\ti7t+jrD84Nfm4uTzQ9LSpB5PvQMG03jQZvXF/OiVnA==","X-Google-Smtp-Source":"AOwi7QBJW1ztQn9v0yjTEqfIowJ4M2ypF88MERoyktUJsbeMm1AAcgR74Mw4MEyrEL8HdIhim8MZjLvTKUqCVCSa6Ic=","X-Received":"by 10.28.23.3 with SMTP id 3mr1495552wmx.62.1506011623989;\n\tThu, 21 Sep 2017 09:33:43 -0700 (PDT)","MIME-Version":"1.0","In-Reply-To":"<20170920201737.25723-1-f4bug@amsat.org>","References":"<20170920201737.25723-1-f4bug@amsat.org>","From":"Peter Maydell <peter.maydell@linaro.org>","Date":"Thu, 21 Sep 2017 17:33:23 +0100","Message-ID":"<CAFEAcA_0CHhQwA-zjsEseA8D==iz401G6CrwGoN33Nwp7GV+ew@mail.gmail.com>","To":"=?utf-8?q?Philippe_Mathieu-Daud=C3=A9?= <f4bug@amsat.org>","Content-Type":"text/plain; charset=\"UTF-8\"","Content-Transfer-Encoding":"quoted-printable","X-detected-operating-system":"by eggs.gnu.org: Genre and OS details not\n\trecognized.","X-Received-From":"2a00:1450:400c:c09::232","Subject":"Re: [Qemu-devel] [PATCH v11 0/5] Add support for Smartfusion2 SoC","X-BeenThere":"qemu-devel@nongnu.org","X-Mailman-Version":"2.1.21","Precedence":"list","List-Id":"<qemu-devel.nongnu.org>","List-Unsubscribe":"<https://lists.nongnu.org/mailman/options/qemu-devel>,\n\t<mailto:qemu-devel-request@nongnu.org?subject=unsubscribe>","List-Archive":"<http://lists.nongnu.org/archive/html/qemu-devel/>","List-Post":"<mailto:qemu-devel@nongnu.org>","List-Help":"<mailto:qemu-devel-request@nongnu.org?subject=help>","List-Subscribe":"<https://lists.nongnu.org/mailman/listinfo/qemu-devel>,\n\t<mailto:qemu-devel-request@nongnu.org?subject=subscribe>","Cc":"Peter Crosthwaite <crosthwaite.peter@gmail.com>,\n\tAlistair Francis <alistair@alistair23.me>,\n\tQEMU Developers <qemu-devel@nongnu.org>,\n\tSubbaraya Sundeep <sundeep.lkml@gmail.com>,\n\tqemu-arm <qemu-arm@nongnu.org>, Igor Mammedov <imammedo@redhat.com>","Errors-To":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org","Sender":"\"Qemu-devel\"\n\t<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>"}},{"id":1774320,"web_url":"http://patchwork.ozlabs.org/comment/1774320/","msgid":"<CALHRZupWabascx0jJ0wJyotcaK0_KHthEvu80kpzcPFSOK_iiA@mail.gmail.com>","list_archive_url":null,"date":"2017-09-24T23:39:28","subject":"Re: [Qemu-devel] [PATCH v11 0/5] Add support for Smartfusion2 SoC","submitter":{"id":64324,"url":"http://patchwork.ozlabs.org/api/people/64324/","name":"sundeep subbaraya","email":"sundeep.lkml@gmail.com"},"content":"Thanks Peter, Philippe and Alistair :)\nSundeep\n\nOn Thu, Sep 21, 2017 at 10:03 PM, Peter Maydell <peter.maydell@linaro.org>\nwrote:\n\n> On 20 September 2017 at 21:17, Philippe Mathieu-Daudé <f4bug@amsat.org>\n> wrote:\n> > Hi Peter,\n> >\n> > Now than Igor's patch landed, I respin Sundeep's series updating it to\n> work\n> > after the \"arm: drop intermediate cpu_model -> cpu type parsing and use\n> cpu\n> > type directly\" patch.\n> >\n> > v11:\n> > - msf2-soc.c: add a check for null m3clk\n> > - msf2-soc.c, msf2-som.c: drop cpu_model to directly use cpu type\n> >\n> > --\n>\n> Applied to target-arm.next.\n>\n> Thanks to Sundeep for being so patient with our code review process,\n> and to Philippe and Alistair for doing the review and shepherding\n> the series through it.\n>\n> thank\n> -- PMM\n>","headers":{"Return-Path":"<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@bilbo.ozlabs.org","Authentication-Results":["ozlabs.org;\n\tspf=pass (mailfrom) smtp.mailfrom=nongnu.org\n\t(client-ip=2001:4830:134:3::11; helo=lists.gnu.org;\n\tenvelope-from=qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org;\n\treceiver=<UNKNOWN>)","ozlabs.org;\n\tdkim=fail reason=\"signature verification failed\" (2048-bit key;\n\tunprotected) header.d=gmail.com header.i=@gmail.com\n\theader.b=\"IjyMVv0B\"; dkim-atps=neutral"],"Received":["from lists.gnu.org (lists.gnu.org [IPv6:2001:4830:134:3::11])\n\t(using TLSv1 with cipher AES256-SHA (256/256 bits))\n\t(No client certificate requested)\n\tby ozlabs.org (Postfix) with ESMTPS id 3y0kGX4W76z9t1G\n\tfor <incoming@patchwork.ozlabs.org>;\n\tMon, 25 Sep 2017 09:40:03 +1000 (AEST)","from localhost ([::1]:39898 helo=lists.gnu.org)\n\tby lists.gnu.org with esmtp (Exim 4.71) (envelope-from\n\t<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>)\n\tid 1dwGVE-0003oJ-LV\n\tfor incoming@patchwork.ozlabs.org; Sun, 24 Sep 2017 19:40:00 -0400","from eggs.gnu.org ([2001:4830:134:3::10]:39466)\n\tby lists.gnu.org with esmtp (Exim 4.71)\n\t(envelope-from <sundeep.lkml@gmail.com>) id 1dwGUm-0003o1-Pr\n\tfor qemu-devel@nongnu.org; Sun, 24 Sep 2017 19:39:33 -0400","from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71)\n\t(envelope-from <sundeep.lkml@gmail.com>) id 1dwGUl-0003bd-El\n\tfor qemu-devel@nongnu.org; Sun, 24 Sep 2017 19:39:32 -0400","from mail-ua0-x232.google.com ([2607:f8b0:400c:c08::232]:43015)\n\tby eggs.gnu.org with esmtps (TLS1.0:RSA_AES_128_CBC_SHA1:16)\n\t(Exim 4.71) (envelope-from <sundeep.lkml@gmail.com>)\n\tid 1dwGUl-0003b0-92; Sun, 24 Sep 2017 19:39:31 -0400","by mail-ua0-x232.google.com with SMTP id f44so3363104uaa.0;\n\tSun, 24 Sep 2017 16:39:29 -0700 (PDT)","by 10.176.66.68 with HTTP; Sun, 24 Sep 2017 16:39:28 -0700 (PDT)"],"DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed; d=gmail.com; s=20161025;\n\th=mime-version:in-reply-to:references:from:date:message-id:subject:to\n\t:cc; bh=h8F5qvbOXF6zfTSe4DYeglFkvw1xyONGNHPlpNy0SSU=;\n\tb=IjyMVv0BhZG3t8AK3EdkwqajYQX62PbL11r6mR/HWufHhOzWOsq1SUSJGl0Bvq72L9\n\tZRgnpNrOE5hOljDfIC8DlsiyFl683bCsQYYOacPb476fkvks2FVnnJeyLUmPB347R1dT\n\tIa1teI8JGOrAOhKpvhPxNG5bd8vpwqtQwEpbgpDS88EuNg55wKK3JxdoHIYQw0lEI3CH\n\t9HS+mvizfhjzN6x9MoVKSmO1l7Kg3sF3zKGKmKGTdcYDVxTACXHU+VL2WQjmkzmjhXtc\n\tCqM91nGI30zQkDGxOu0e5gVOPWolwq+p5tRBa1Fur3FSKDtljRd2jj13RLcgw1sqrWu/\n\tZmnw==","X-Google-DKIM-Signature":"v=1; a=rsa-sha256; c=relaxed/relaxed;\n\td=1e100.net; s=20161025;\n\th=x-gm-message-state:mime-version:in-reply-to:references:from:date\n\t:message-id:subject:to:cc;\n\tbh=h8F5qvbOXF6zfTSe4DYeglFkvw1xyONGNHPlpNy0SSU=;\n\tb=L5KUgzAPghsCV5p0//rSO/R60d33dNSpwQEEEDY/W3uHa00joDab3+nlbRIpP8swCA\n\tS0f+r5dJLlSqpMc4xhC4IhZa4LnjOl5DN0DMV5dHFkv/x50w/tolUziBz/RrerxaaNL8\n\t4k+HDYD037LWFn7ZUQLokrxhoWbrwyyM2N+4Vctwx5Wx8q0um6yliPhPahNe3oiPjN8t\n\th2ODhhIJTUKNbh+B4m8WGBiooY88kCcukYmftI/BSREZnz41friWoWRz0/fkp9Uv+uH2\n\tFofp5lNLKE+9XRfBXk/S05T4FauLJuWOdD6D7upHPvmJVfy1VDLTWbamt8jkHKjY2UlF\n\twn4g==","X-Gm-Message-State":"AHPjjUia9JgxTCMsberiAZ6X5VFGrswXQmkJGmwO7VnSIi0Vj04kdfyS\n\t94OKi2Vvwm5vkZUgifYUyactn2d8j4pPdx5wRnI=","X-Google-Smtp-Source":"AOwi7QAtojteFddrPI55OR3Qgbp7WXTgCVadKDzpHTJEsGss2U/+0K7WMX7xFpDukCiXCTEXjmO1dqUnsznb1/1w0Nc=","X-Received":"by 10.176.26.159 with SMTP id j31mr5675471uai.25.1506296369131; \n\tSun, 24 Sep 2017 16:39:29 -0700 (PDT)","MIME-Version":"1.0","In-Reply-To":"<CAFEAcA_0CHhQwA-zjsEseA8D==iz401G6CrwGoN33Nwp7GV+ew@mail.gmail.com>","References":"<20170920201737.25723-1-f4bug@amsat.org>\n\t<CAFEAcA_0CHhQwA-zjsEseA8D==iz401G6CrwGoN33Nwp7GV+ew@mail.gmail.com>","From":"sundeep subbaraya <sundeep.lkml@gmail.com>","Date":"Mon, 25 Sep 2017 05:09:28 +0530","Message-ID":"<CALHRZupWabascx0jJ0wJyotcaK0_KHthEvu80kpzcPFSOK_iiA@mail.gmail.com>","To":"Peter Maydell <peter.maydell@linaro.org>","X-detected-operating-system":"by eggs.gnu.org: Genre and OS details not\n\trecognized.","X-Received-From":"2607:f8b0:400c:c08::232","Content-Type":"text/plain; charset=\"UTF-8\"","Content-Transfer-Encoding":"quoted-printable","X-Content-Filtered-By":"Mailman/MimeDel 2.1.21","Subject":"Re: [Qemu-devel] [PATCH v11 0/5] Add support for Smartfusion2 SoC","X-BeenThere":"qemu-devel@nongnu.org","X-Mailman-Version":"2.1.21","Precedence":"list","List-Id":"<qemu-devel.nongnu.org>","List-Unsubscribe":"<https://lists.nongnu.org/mailman/options/qemu-devel>,\n\t<mailto:qemu-devel-request@nongnu.org?subject=unsubscribe>","List-Archive":"<http://lists.nongnu.org/archive/html/qemu-devel/>","List-Post":"<mailto:qemu-devel@nongnu.org>","List-Help":"<mailto:qemu-devel-request@nongnu.org?subject=help>","List-Subscribe":"<https://lists.nongnu.org/mailman/listinfo/qemu-devel>,\n\t<mailto:qemu-devel-request@nongnu.org?subject=subscribe>","Cc":"Peter Crosthwaite <crosthwaite.peter@gmail.com>, Alistair Francis\n\t<alistair@alistair23.me>, \tQEMU Developers <qemu-devel@nongnu.org>,\n\t=?utf-8?q?Philippe_Mathieu-D?= =?utf-8?b?YXVkw6k=?= <f4bug@amsat.org>,\n\tqemu-arm <qemu-arm@nongnu.org>, Igor Mammedov <imammedo@redhat.com>","Errors-To":"qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org","Sender":"\"Qemu-devel\"\n\t<qemu-devel-bounces+incoming=patchwork.ozlabs.org@nongnu.org>"}}]