[{"id":1775205,"web_url":"http://patchwork.ozlabs.org/comment/1775205/","msgid":"<20170926091852.196f647d@xps13>","list_archive_url":null,"date":"2017-09-26T07:18:52","subject":"Re: [PATCH 2/2] mtd: nand: pxa3xx: Handle \"marvell, nand-force-csx\"\n\tcompatible string","submitter":{"id":71917,"url":"http://patchwork.ozlabs.org/api/people/71917/","name":"Miquel Raynal","email":"miquel.raynal@free-electrons.com"},"content":"Hi Kalyan,\n\nOn Tue, 26 Sep 2017 17:17:00 +1300\nKalyan Kinthada <kalyan.kinthada@alliedtelesis.co.nz> wrote:\n\n> When the arbitration between NOR and NAND flash is enabled\n> the <FORCE_CSX> field bit[21] in the Data Flash Control Register\n> needs to be set to 1 according to guidleine GL-5830741.\n\nI do agree, the driver lacks the support of this bit, which\nlooks important when you effectively use the arbiter.\nNevertheless:\n\n- On PXA (marvell,pxa3xx-nand compatible), there is a ND_ARB_EN bit to\n  enable or disable the arbiter, but there is no FORCE_CSX bit (bit 21\n  of NDCR, the so called Control Register, is reserved).\n- On Armada (marvell,armada370-nand), there is a FORCE_CSX bit, but\n  there is no ND_ARB_EN bit in the NDCR (moved to system registers) and\n  the arbitration is always enabled by default.\n\nI guess you should always set the FORCE_CSX bit when using the armada\ncompatible, because it is harmless, right? Thus, you could get rid\nof the new DT property.\n\nThank you,\nMiquèl\n\n> \n> This commit sets the FORCE_CSX bit to 1 if the compatible\n> string \"marvell,nand-force-csx\" is enabled in the device tree\n> of the corresponding boards.\n> \n> Signed-off-by: Kalyan Kinthada <kalyan.kinthada@alliedtelesis.co.nz>\n> ---\n>  drivers/mtd/nand/pxa3xx_nand.c                | 6 ++++++\n>  include/linux/platform_data/mtd-nand-pxa3xx.h | 3 +++\n>  2 files changed, 9 insertions(+)\n> \n> diff --git a/drivers/mtd/nand/pxa3xx_nand.c\n> b/drivers/mtd/nand/pxa3xx_nand.c index 85cff68643e0..4ad1f0601930\n> 100644 --- a/drivers/mtd/nand/pxa3xx_nand.c\n> +++ b/drivers/mtd/nand/pxa3xx_nand.c\n> @@ -68,6 +68,7 @@\n>  #define NDCR_PAGE_SZ\t\t(0x1 << 24)\n>  #define NDCR_NCSX\t\t(0x1 << 23)\n>  #define NDCR_ND_MODE\t\t(0x3 << 21)\n> +#define NDCR_FORCE_CSX\t\t(0x1 << 21)\n>  #define NDCR_NAND_MODE   \t(0x0)\n>  #define NDCR_CLR_PG_CNT\t\t(0x1 << 20)\n>  #define NFCV1_NDCR_ARB_CNTL\t(0x1 << 19)\n> @@ -1464,6 +1465,7 @@ static int pxa3xx_nand_config_ident(struct\n> pxa3xx_nand_info *info) info->chunk_size = PAGE_CHUNK_SIZE;\n>  \tinfo->reg_ndcr = 0x0; /* enable all interrupts */\n>  \tinfo->reg_ndcr |= (pdata->enable_arbiter) ? NDCR_ND_ARB_EN :\n> 0;\n> +\tinfo->reg_ndcr |= (pdata->force_csx) ? NDCR_FORCE_CSX : 0;\n>  \tinfo->reg_ndcr |= NDCR_RD_ID_CNT(READ_ID_BYTES);\n>  \tinfo->reg_ndcr |= NDCR_SPARE_EN;\n>  \n> @@ -1498,6 +1500,7 @@ static void pxa3xx_nand_detect_config(struct\n> pxa3xx_nand_info *info) info->reg_ndcr = ndcr &\n>  \t\t~(NDCR_INT_MASK | NDCR_ND_ARB_EN |\n> NFCV1_NDCR_ARB_CNTL); info->reg_ndcr |= (pdata->enable_arbiter) ?\n> NDCR_ND_ARB_EN : 0;\n> +\tinfo->reg_ndcr |= (pdata->force_csx) ? NDCR_FORCE_CSX : 0;\n>  \tinfo->ndtr0cs0 = nand_readl(info, NDTR0CS0);\n>  \tinfo->ndtr1cs0 = nand_readl(info, NDTR1CS0);\n>  }\n> @@ -1936,6 +1939,9 @@ static int pxa3xx_nand_probe_dt(struct\n> platform_device *pdev) pdata->enable_arbiter = 1;\n>  \tif (of_get_property(np, \"marvell,nand-keep-config\", NULL))\n>  \t\tpdata->keep_config = 1;\n> +\tif (of_get_property(np, \"marvell,nand-force-csx\", NULL))\n> +\t\t/* Ref#: GL-5830741 */\n> +\t\tpdata->force_csx = 1;\n>  \tof_property_read_u32(np, \"num-cs\", &pdata->num_cs);\n>  \n>  \tpdev->dev.platform_data = pdata;\n> diff --git a/include/linux/platform_data/mtd-nand-pxa3xx.h\n> b/include/linux/platform_data/mtd-nand-pxa3xx.h index\n> 394d15597dc7..e7f2c8647c0e 100644 ---\n> a/include/linux/platform_data/mtd-nand-pxa3xx.h +++\n> b/include/linux/platform_data/mtd-nand-pxa3xx.h @@ -28,6 +28,9 @@\n> struct pxa3xx_nand_platform_data { /* allow platform code to keep\n> OBM/bootloader defined NFC config */ int\tkeep_config;\n>  \n> +\t/* Force chip select false on busy */\n> +\tint\tforce_csx;\n> +\n>  \t/* indicate how many chip selects will be used */\n>  \tint\tnum_cs;\n>","headers":{"Return-Path":"<linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@bilbo.ozlabs.org","Authentication-Results":["ozlabs.org; spf=none (mailfrom)\n\tsmtp.mailfrom=lists.infradead.org (client-ip=65.50.211.133;\n\thelo=bombadil.infradead.org;\n\tenvelope-from=linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org;\n\treceiver=<UNKNOWN>)","ozlabs.org; dkim=pass (2048-bit key;\n\tunprotected) header.d=lists.infradead.org\n\theader.i=@lists.infradead.org header.b=\"FnYKdDZg\"; \n\tdkim-atps=neutral"],"Received":["from bombadil.infradead.org (bombadil.infradead.org\n\t[65.50.211.133])\n\t(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256\n\tbits)) (No client certificate requested)\n\tby ozlabs.org (Postfix) with ESMTPS id 3y1XQH2gTJz9t3R\n\tfor <incoming@patchwork.ozlabs.org>;\n\tTue, 26 Sep 2017 17:19:35 +1000 (AEST)","from localhost ([127.0.0.1] helo=bombadil.infradead.org)\n\tby bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux))\n\tid 1dwk9L-0003Au-0T; Tue, 26 Sep 2017 07:19:23 +0000","from mail.free-electrons.com ([62.4.15.54])\n\tby bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux))\n\tid 1dwk9B-0002qy-WE\n\tfor linux-mtd@lists.infradead.org; Tue, 26 Sep 2017 07:19:20 +0000","by mail.free-electrons.com (Postfix, from userid 110)\n\tid 420632090D; Tue, 26 Sep 2017 09:18:52 +0200 (CEST)","from xps13 (LStLambert-657-1-97-87.w90-63.abo.wanadoo.fr\n\t[90.63.216.87])\n\tby mail.free-electrons.com (Postfix) with ESMTPSA id D2E3F208BF;\n\tTue, 26 Sep 2017 09:18:51 +0200 (CEST)"],"DKIM-Signature":"v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed;\n\td=lists.infradead.org; s=bombadil.20170209; h=Sender:\n\tContent-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post:\n\tList-Archive:List-Unsubscribe:List-Id:MIME-Version:References:In-Reply-To:\n\tMessage-ID:Subject:To:From:Date:Reply-To:Content-ID:Content-Description:\n\tResent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:\n\tList-Owner; bh=DyvsXv+BMMWSp2QUgRUGOzCtszC5USwPe5ZAx84QNsI=;\n\tb=FnYKdDZgxHBERv\n\t7q+C/A7x8xV0RzE6Q2w5uQrpu91QMz4xzRRTCoum8uCeESGWvEal2N2IAWVGJJctbw+K25k7DcDcn\n\t+et4d77x1Pd4C/5oJ/yzRoiyMckkdH8urK8z40NwGJHXAmAtyWkEhMRf3Z5rx/NTJM1+F733QEPqx\n\tJchokcNmSWgY2Z2ut3hoHJPcArXG6kWj4ZkNC5/Pz8AbBlBEtMYadLdGoS+cDs/UMeMO2A7gQj3e9\n\tfQsItvj4n9/H7fUc78f3BCX5O04y/pCmCvJML5Kj54l5VRfTg/aamD7q+/vOiVMbzYKvlOWHFYccK\n\t/HtOeOmo6gM7AlvdfX8A==;","X-Spam-Checker-Version":"SpamAssassin 3.4.0 (2014-02-07) on\n\tmail.free-electrons.com","X-Spam-Level":"","X-Spam-Status":"No, score=-1.0 required=5.0 tests=ALL_TRUSTED,SHORTCIRCUIT\n\tshortcircuit=ham autolearn=disabled version=3.4.0","Date":"Tue, 26 Sep 2017 09:18:52 +0200","From":"Miquel RAYNAL <miquel.raynal@free-electrons.com>","To":"Kalyan Kinthada <kalyan.kinthada@alliedtelesis.co.nz>","Subject":"Re: [PATCH 2/2] mtd: nand: pxa3xx: Handle \"marvell, nand-force-csx\"\n\tcompatible string","Message-ID":"<20170926091852.196f647d@xps13>","In-Reply-To":"<20170926041700.22663-3-kalyan.kinthada@alliedtelesis.co.nz>","References":"<20170926041700.22663-1-kalyan.kinthada@alliedtelesis.co.nz>\n\t<20170926041700.22663-3-kalyan.kinthada@alliedtelesis.co.nz>","Organization":"Free Electrons","X-Mailer":"Claws Mail 3.14.1 (GTK+ 2.24.31; x86_64-pc-linux-gnu)","MIME-Version":"1.0","X-CRM114-Version":"20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 ","X-CRM114-CacheID":"sfid-20170926_001915_126750_3F0E0ED3 ","X-CRM114-Status":"GOOD (  20.73  )","X-Spam-Score":"-1.9 (-)","X-Spam-Report":"SpamAssassin version 3.4.1 on bombadil.infradead.org summary:\n\tContent analysis details:   (-1.9 points)\n\tpts rule name              description\n\t---- ----------------------\n\t--------------------------------------------------\n\t-0.0 SPF_PASS               SPF: sender matches SPF record\n\t-0.0 RP_MATCHES_RCVD Envelope sender domain matches handover relay\n\tdomain\n\t-1.9 BAYES_00               BODY: Bayes spam probability is 0 to 1%\n\t[score: 0.0000]","X-BeenThere":"linux-mtd@lists.infradead.org","X-Mailman-Version":"2.1.21","Precedence":"list","List-Id":"Linux MTD discussion mailing list <linux-mtd.lists.infradead.org>","List-Unsubscribe":"<http://lists.infradead.org/mailman/options/linux-mtd>,\n\t<mailto:linux-mtd-request@lists.infradead.org?subject=unsubscribe>","List-Archive":"<http://lists.infradead.org/pipermail/linux-mtd/>","List-Post":"<mailto:linux-mtd@lists.infradead.org>","List-Help":"<mailto:linux-mtd-request@lists.infradead.org?subject=help>","List-Subscribe":"<http://lists.infradead.org/mailman/listinfo/linux-mtd>,\n\t<mailto:linux-mtd-request@lists.infradead.org?subject=subscribe>","Cc":"mark.rutland@arm.com, boris.brezillon@free-electrons.com,\n\tdevicetree@vger.kernel.org, richard@nod.at,\n\tchris.packham@alliedtelesis.co.nz, \n\tlinux-kernel@vger.kernel.org, marek.vasut@gmail.com, robh+dt@kernel.org, \n\tlinux-mtd@lists.infradead.org, ezequiel.garcia@free-electrons.com,\n\tcyrille.pitchen@wedev4u.fr, computersforpeace@gmail.com,\n\tdwmw2@infradead.org","Content-Type":"text/plain; charset=\"utf-8\"","Content-Transfer-Encoding":"base64","Sender":"\"linux-mtd\" <linux-mtd-bounces@lists.infradead.org>","Errors-To":"linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org"}},{"id":1775970,"web_url":"http://patchwork.ozlabs.org/comment/1775970/","msgid":"<7493494e-23f6-feed-73e7-59d6819d98db@alliedtelesis.co.nz>","list_archive_url":null,"date":"2017-09-27T00:54:05","subject":"Re: [PATCH 2/2] mtd: nand: pxa3xx: Handle \"marvell, nand-force-csx\"\n\tcompatible string","submitter":{"id":72417,"url":"http://patchwork.ozlabs.org/api/people/72417/","name":"Kalyan Kinthada","email":"kalyan.kinthada@alliedtelesis.co.nz"},"content":"On 26/09/17 20:18, Miquel RAYNAL wrote:\r\n> Hi Kalyan,\r\n>\r\n> On Tue, 26 Sep 2017 17:17:00 +1300\r\n> Kalyan Kinthada <kalyan.kinthada@alliedtelesis.co.nz> wrote:\r\n>\r\n>> When the arbitration between NOR and NAND flash is enabled\r\n>> the <FORCE_CSX> field bit[21] in the Data Flash Control Register\r\n>> needs to be set to 1 according to guidleine GL-5830741.\r\n> I do agree, the driver lacks the support of this bit, which\r\n> looks important when you effectively use the arbiter.\r\n> Nevertheless:\r\n>\r\n> - On PXA (marvell,pxa3xx-nand compatible), there is a ND_ARB_EN bit to\r\n>    enable or disable the arbiter, but there is no FORCE_CSX bit (bit 21\r\n>    of NDCR, the so called Control Register, is reserved).\r\n> - On Armada (marvell,armada370-nand), there is a FORCE_CSX bit, but\r\n>    there is no ND_ARB_EN bit in the NDCR (moved to system registers) and\r\n>    the arbitration is always enabled by default.\r\n>\r\n> I guess you should always set the FORCE_CSX bit when using the armada\r\n> compatible, because it is harmless, right? Thus, you could get rid\r\n> of the new DT property.\r\nOk. I will make changes to the driver to set FORCE_CSX bit for all\r\nvariants of ARMADA370 variants instead of creating a new compatible\r\nstring.\r\n\r\nI will send a new patch. Kindly ignore these changes.\r\nThanks for your time Miquel.\r\n\r\nThank You,\r\nKalyan\r\n>\r\n> Thank you,\r\n> Miquèl\r\n>\r\n>> This commit sets the FORCE_CSX bit to 1 if the compatible\r\n>> string \"marvell,nand-force-csx\" is enabled in the device tree\r\n>> of the corresponding boards.\r\n>>\r\n>> Signed-off-by: Kalyan Kinthada <kalyan.kinthada@alliedtelesis.co.nz>\r\n>> ---\r\n>>   drivers/mtd/nand/pxa3xx_nand.c                | 6 ++++++\r\n>>   include/linux/platform_data/mtd-nand-pxa3xx.h | 3 +++\r\n>>   2 files changed, 9 insertions(+)\r\n>>\r\n>> diff --git a/drivers/mtd/nand/pxa3xx_nand.c\r\n>> b/drivers/mtd/nand/pxa3xx_nand.c index 85cff68643e0..4ad1f0601930\r\n>> 100644 --- a/drivers/mtd/nand/pxa3xx_nand.c\r\n>> +++ b/drivers/mtd/nand/pxa3xx_nand.c\r\n>> @@ -68,6 +68,7 @@\r\n>>   #define NDCR_PAGE_SZ\t\t(0x1 << 24)\r\n>>   #define NDCR_NCSX\t\t(0x1 << 23)\r\n>>   #define NDCR_ND_MODE\t\t(0x3 << 21)\r\n>> +#define NDCR_FORCE_CSX\t\t(0x1 << 21)\r\n>>   #define NDCR_NAND_MODE   \t(0x0)\r\n>>   #define NDCR_CLR_PG_CNT\t\t(0x1 << 20)\r\n>>   #define NFCV1_NDCR_ARB_CNTL\t(0x1 << 19)\r\n>> @@ -1464,6 +1465,7 @@ static int pxa3xx_nand_config_ident(struct\r\n>> pxa3xx_nand_info *info) info->chunk_size = PAGE_CHUNK_SIZE;\r\n>>   \tinfo->reg_ndcr = 0x0; /* enable all interrupts */\r\n>>   \tinfo->reg_ndcr |= (pdata->enable_arbiter) ? NDCR_ND_ARB_EN :\r\n>> 0;\r\n>> +\tinfo->reg_ndcr |= (pdata->force_csx) ? NDCR_FORCE_CSX : 0;\r\n>>   \tinfo->reg_ndcr |= NDCR_RD_ID_CNT(READ_ID_BYTES);\r\n>>   \tinfo->reg_ndcr |= NDCR_SPARE_EN;\r\n>>   \r\n>> @@ -1498,6 +1500,7 @@ static void pxa3xx_nand_detect_config(struct\r\n>> pxa3xx_nand_info *info) info->reg_ndcr = ndcr &\r\n>>   \t\t~(NDCR_INT_MASK | NDCR_ND_ARB_EN |\r\n>> NFCV1_NDCR_ARB_CNTL); info->reg_ndcr |= (pdata->enable_arbiter) ?\r\n>> NDCR_ND_ARB_EN : 0;\r\n>> +\tinfo->reg_ndcr |= (pdata->force_csx) ? NDCR_FORCE_CSX : 0;\r\n>>   \tinfo->ndtr0cs0 = nand_readl(info, NDTR0CS0);\r\n>>   \tinfo->ndtr1cs0 = nand_readl(info, NDTR1CS0);\r\n>>   }\r\n>> @@ -1936,6 +1939,9 @@ static int pxa3xx_nand_probe_dt(struct\r\n>> platform_device *pdev) pdata->enable_arbiter = 1;\r\n>>   \tif (of_get_property(np, \"marvell,nand-keep-config\", NULL))\r\n>>   \t\tpdata->keep_config = 1;\r\n>> +\tif (of_get_property(np, \"marvell,nand-force-csx\", NULL))\r\n>> +\t\t/* Ref#: GL-5830741 */\r\n>> +\t\tpdata->force_csx = 1;\r\n>>   \tof_property_read_u32(np, \"num-cs\", &pdata->num_cs);\r\n>>   \r\n>>   \tpdev->dev.platform_data = pdata;\r\n>> diff --git a/include/linux/platform_data/mtd-nand-pxa3xx.h\r\n>> b/include/linux/platform_data/mtd-nand-pxa3xx.h index\r\n>> 394d15597dc7..e7f2c8647c0e 100644 ---\r\n>> a/include/linux/platform_data/mtd-nand-pxa3xx.h +++\r\n>> b/include/linux/platform_data/mtd-nand-pxa3xx.h @@ -28,6 +28,9 @@\r\n>> struct pxa3xx_nand_platform_data { /* allow platform code to keep\r\n>> OBM/bootloader defined NFC config */ int\tkeep_config;\r\n>>   \r\n>> +\t/* Force chip select false on busy */\r\n>> +\tint\tforce_csx;\r\n>> +\r\n>>   \t/* indicate how many chip selects will be used */\r\n>>   \tint\tnum_cs;\r\n>>   \r\n>\r\n>","headers":{"Return-Path":"<linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org>","X-Original-To":"incoming@patchwork.ozlabs.org","Delivered-To":"patchwork-incoming@bilbo.ozlabs.org","Authentication-Results":["ozlabs.org; spf=none (mailfrom)\n\tsmtp.mailfrom=lists.infradead.org (client-ip=65.50.211.133;\n\thelo=bombadil.infradead.org;\n\tenvelope-from=linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org;\n\treceiver=<UNKNOWN>)","ozlabs.org; dkim=pass (2048-bit key;\n\tunprotected) header.d=lists.infradead.org\n\theader.i=@lists.infradead.org header.b=\"XqkPRGG4\"; \n\tdkim=fail reason=\"signature verification failed\" (1024-bit key;\n\tunprotected) header.d=alliedtelesis.co.nz\n\theader.i=@alliedtelesis.co.nz header.b=\"yq1qEPeC\"; \n\tdkim-atps=neutral"],"Received":["from bombadil.infradead.org (bombadil.infradead.org\n\t[65.50.211.133])\n\t(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256\n\tbits)) (No client certificate requested)\n\tby ozlabs.org (Postfix) with ESMTPS id 3y1zrM3LrCz9sRq\n\tfor <incoming@patchwork.ozlabs.org>;\n\tWed, 27 Sep 2017 10:55:15 +1000 (AEST)","from localhost ([127.0.0.1] helo=bombadil.infradead.org)\n\tby bombadil.infradead.org with esmtp (Exim 4.87 #1 (Red Hat Linux))\n\tid 1dx0cu-0001bn-AF; Wed, 27 Sep 2017 00:55:00 +0000","from gate2.alliedtelesis.co.nz ([2001:df5:b000:5::4])\n\tby bombadil.infradead.org with esmtps (Exim 4.87 #1 (Red Hat Linux))\n\tid 1dx0cT-00015j-NS\n\tfor linux-mtd@lists.infradead.org; Wed, 27 Sep 2017 00:54:36 +0000","from mmarshal3.atlnz.lc (mmarshal3.atlnz.lc [10.32.18.43])\n\t(using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256\n\tbits)) (Client did not present a certificate)\n\tby gate2.alliedtelesis.co.nz (Postfix) with ESMTPS id E34ED806A8;\n\tWed, 27 Sep 2017 13:54:05 +1300 (NZDT)","from svr-chch-ex1.atlnz.lc (Not Verified[10.32.16.77]) by\n\tmmarshal3.atlnz.lc with Trustwave SEG (v7, 5, 8, 10121)\n\tid <B59caf6ae0000>; Wed, 27 Sep 2017 13:54:06 +1300","from svr-chch-ex1.atlnz.lc (2001:df5:b000:bc8::77) by\n\tsvr-chch-ex1.atlnz.lc (2001:df5:b000:bc8::77) with Microsoft SMTP\n\tServer (TLS) id 15.0.1156.6; Wed, 27 Sep 2017 13:54:05 +1300","from svr-chch-ex1.atlnz.lc ([fe80::409d:36f5:8899:92e8]) by\n\tsvr-chch-ex1.atlnz.lc ([fe80::409d:36f5:8899:92e8%12]) with mapi id\n\t15.00.1156.000; Wed, 27 Sep 2017 13:54:05 +1300"],"DKIM-Signature":["v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed;\n\td=lists.infradead.org; s=bombadil.20170209; h=Sender:\n\tContent-Transfer-Encoding:Content-Type:Cc:List-Subscribe:List-Help:List-Post:\n\tList-Archive:List-Unsubscribe:List-Id:MIME-Version:Content-ID:In-Reply-To:\n\tReferences:Message-ID:Date:Subject:To:From:Reply-To:Content-Description:\n\tResent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc:Resent-Message-ID:\n\tList-Owner; bh=qCBq4F1YgREligWF8/tpF3dmv9k+l/735TwDh4mfDwQ=;\n\tb=XqkPRGG49m9vyP\n\tZw8RiJhykm9D4QVFOnBYZtj73+ZEvmrSrMiNbsGjTuDQgXsQi38khmwLbGELBRyRa6hcEdDklMo5y\n\t5mQ/XGL46o8KN7o8LHRqZ6FbtGylydrzAuOds3WLrjnfrusoOArLOFNy68FlJGuQo3rF2v74E0aT3\n\t2Ei/6MPqGUnXAUK86KD5JWorCXV11+CPS/kwiaL6kpI9A3c5qo92/zdrRyrM2ZvZgLmbHPXcS43ZX\n\t9PL+Pswcd08jzjatgXbiJpghHgCbBASMGpoJB+drmLIqyuH7zEykMuFHfC/tG5kTPAXED75n1ulMQ\n\tDg1b/SnZbGvc1k6Zch7Q==;","v=1; a=rsa-sha256; c=relaxed/relaxed; d=alliedtelesis.co.nz; \n\ts=mail; t=1506473645;\n\tbh=a4jV9IYmmZclohaI+N8Eg7MJJGJ77Om59S6vzj1aIRc=;\n\th=From:To:CC:Subject:Date:References:In-Reply-To;\n\tb=yq1qEPeCNrmlQEKVYIY4clY18F3+K8vKIMkrzrGyAmawY9epjbfLnlGkdL1LjK9lf\n\tImOrysnKEAHFa5n4lm1GdmkK3LziCfk4CFh82kpDeq414yQaUhSfn4nO0Chord3Kp+\n\tnBzb9cRgxOGhuGKESjEQAiYc4n6CMym3Y03ch1tc="],"From":"Kalyan Kinthada <Kalyan.Kinthada@alliedtelesis.co.nz>","To":"Miquel RAYNAL <miquel.raynal@free-electrons.com>","Subject":"Re: [PATCH 2/2] mtd: nand: pxa3xx: Handle \"marvell, nand-force-csx\"\n\tcompatible string","Thread-Topic":"[PATCH 2/2] mtd: nand: pxa3xx: Handle \"marvell, nand-force-csx\"\n\tcompatible string","Thread-Index":"AQHTNpe84LIx2CG0nUa79bu8nNwbLKLHDx6A","Date":"Wed, 27 Sep 2017 00:54:05 +0000","Message-ID":"<7493494e-23f6-feed-73e7-59d6819d98db@alliedtelesis.co.nz>","References":"<20170926041700.22663-1-kalyan.kinthada@alliedtelesis.co.nz>\n\t<20170926041700.22663-3-kalyan.kinthada@alliedtelesis.co.nz>\n\t<20170926091852.196f647d@xps13>","In-Reply-To":"<20170926091852.196f647d@xps13>","Accept-Language":"en-NZ, en-US","Content-Language":"en-US","X-MS-Has-Attach":"","X-MS-TNEF-Correlator":"","x-ms-exchange-messagesentrepresentingtype":"1","x-ms-exchange-transport-fromentityheader":"Hosted","x-originating-ip":"[10.32.16.78]","Content-ID":"<0EAFB8CA9420604E849428CD69FC511A@atlnz.lc>","MIME-Version":"1.0","X-CRM114-Version":"20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 ","X-CRM114-CacheID":"sfid-20170926_175434_199266_C2FFD21A ","X-CRM114-Status":"GOOD (  20.46  )","X-Spam-Score":"-2.0 (--)","X-Spam-Report":"SpamAssassin version 3.4.1 on bombadil.infradead.org summary:\n\tContent analysis details:   (-2.0 points)\n\tpts rule name              description\n\t---- ----------------------\n\t--------------------------------------------------\n\t-0.0 SPF_PASS               SPF: sender matches SPF record\n\t-0.0 RP_MATCHES_RCVD Envelope sender domain matches handover relay\n\tdomain\n\t-0.0 SPF_HELO_PASS          SPF: HELO matches SPF record\n\t-1.9 BAYES_00               BODY: Bayes spam probability is 0 to 1%\n\t[score: 0.0000]\n\t-0.1 DKIM_VALID Message has at least one valid DKIM or DK signature\n\t0.1 DKIM_SIGNED            Message has a DKIM or DK signature,\n\tnot necessarily valid\n\t-0.1 DKIM_VALID_AU Message has a valid DKIM or DK signature from\n\tauthor's domain","X-BeenThere":"linux-mtd@lists.infradead.org","X-Mailman-Version":"2.1.21","Precedence":"list","List-Id":"Linux MTD discussion mailing list <linux-mtd.lists.infradead.org>","List-Unsubscribe":"<http://lists.infradead.org/mailman/options/linux-mtd>,\n\t<mailto:linux-mtd-request@lists.infradead.org?subject=unsubscribe>","List-Archive":"<http://lists.infradead.org/pipermail/linux-mtd/>","List-Post":"<mailto:linux-mtd@lists.infradead.org>","List-Help":"<mailto:linux-mtd-request@lists.infradead.org?subject=help>","List-Subscribe":"<http://lists.infradead.org/mailman/listinfo/linux-mtd>,\n\t<mailto:linux-mtd-request@lists.infradead.org?subject=subscribe>","Cc":"\"mark.rutland@arm.com\" <mark.rutland@arm.com>,\n\t\"boris.brezillon@free-electrons.com\"\n\t<boris.brezillon@free-electrons.com>, \n\t\"devicetree@vger.kernel.org\" <devicetree@vger.kernel.org>,\n\t\"richard@nod.at\" <richard@nod.at>,\n\tChris Packham <Chris.Packham@alliedtelesis.co.nz>,\n\t\"linux-kernel@vger.kernel.org\" <linux-kernel@vger.kernel.org>,\n\t\"marek.vasut@gmail.com\" <marek.vasut@gmail.com>,\n\t\"robh+dt@kernel.org\" <robh+dt@kernel.org>,\n\t\"linux-mtd@lists.infradead.org\" <linux-mtd@lists.infradead.org>,\n\t\"ezequiel.garcia@free-electrons.com\"\n\t<ezequiel.garcia@free-electrons.com>, \n\t\"cyrille.pitchen@wedev4u.fr\" <cyrille.pitchen@wedev4u.fr>,\n\t\"computersforpeace@gmail.com\" <computersforpeace@gmail.com>,\n\t\"dwmw2@infradead.org\" <dwmw2@infradead.org>","Content-Type":"text/plain; charset=\"utf-8\"","Content-Transfer-Encoding":"base64","Sender":"\"linux-mtd\" <linux-mtd-bounces@lists.infradead.org>","Errors-To":"linux-mtd-bounces+incoming=patchwork.ozlabs.org@lists.infradead.org"}}]