From mboxrd@z Thu Jan 1 00:00:00 1970 Received: with ECARTIS (v1.0.0; list linux-mips); Mon, 28 Aug 2017 13:23:52 +0200 (CEST) Received: from localhost.localdomain ([127.0.0.1]:40774 "EHLO linux-mips.org" rhost-flags-OK-OK-OK-FAIL) by eddie.linux-mips.org with ESMTP id S23991500AbdH1LXn5W0A- (ORCPT ); Mon, 28 Aug 2017 13:23:43 +0200 Received: from h7.dl5rb.org.uk (localhost [127.0.0.1]) by h7.dl5rb.org.uk (8.15.2/8.14.8) with ESMTP id v7SBNWHh015697; Mon, 28 Aug 2017 13:23:32 +0200 Received: (from ralf@localhost) by h7.dl5rb.org.uk (8.15.2/8.15.2/Submit) id v7SBNR4J015695; Mon, 28 Aug 2017 13:23:27 +0200 Date: Mon, 28 Aug 2017 13:23:27 +0200 From: Ralf Baechle To: Hauke Mehrtens Cc: linux-mips@linux-mips.org, linux-mtd@lists.infradead.org, linux-watchdog@vger.kernel.org, devicetree@vger.kernel.org, martin.blumenstingl@googlemail.com, john@phrozen.org, linux-spi@vger.kernel.org, hauke.mehrtens@intel.com, robh@kernel.org, andy.shevchenko@gmail.com, p.zabel@pengutronix.de, kishon@ti.com, mark.rutland@arm.com, Mark Brown Subject: Re: [PATCH v10 03/16] spi: spi-falcon: drop check of boot select Message-ID: <20170828112327.GA15640@linux-mips.org> References: <20170819221823.13850-1-hauke@hauke-m.de> <20170819221823.13850-4-hauke@hauke-m.de> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20170819221823.13850-4-hauke@hauke-m.de> User-Agent: Mutt/1.8.3 (2017-05-23) Return-Path: X-Envelope-To: <"|/home/ecartis/ecartis -s linux-mips"> (uid 0) X-Orcpt: rfc822;linux-mips@linux-mips.org Original-Recipient: rfc822;linux-mips@linux-mips.org X-archive-position: 59832 X-ecartis-version: Ecartis v1.0.0 Sender: linux-mips-bounce@linux-mips.org Errors-to: linux-mips-bounce@linux-mips.org X-original-sender: ralf@linux-mips.org Precedence: bulk List-help: List-unsubscribe: List-software: Ecartis version 1.0.0 List-Id: linux-mips X-List-ID: linux-mips List-subscribe: List-owner: List-post: List-archive: X-list: linux-mips On Sun, Aug 20, 2017 at 12:18:10AM +0200, Hauke Mehrtens wrote: > Do not check which flash type the SoC was booted from before > using this driver. Assume that the device tree is correct and use this > driver when it was added to device tree. This also removes a build > dependency to the SoC code. > > All device trees I am aware of only have one correct flash device entry > in it. The device tree is anyway bundled with the kernel in all systems > using device tree I know of. > > The boot mode can be specified with some pin straps and will select the > flash type the rom code will boot from. One SPI, NOR or NAND flash chip > can be connect to the EBU and used to load the first stage boot loader > from. I think other than this patch we finally have all the acks necessary so I merged the series except this patch which shouldn't be strictly necessary. Ralf From mboxrd@z Thu Jan 1 00:00:00 1970 From: Ralf Baechle Subject: Re: [PATCH v10 03/16] spi: spi-falcon: drop check of boot select Date: Mon, 28 Aug 2017 13:23:27 +0200 Message-ID: <20170828112327.GA15640@linux-mips.org> References: <20170819221823.13850-1-hauke@hauke-m.de> <20170819221823.13850-4-hauke@hauke-m.de> Mime-Version: 1.0 Content-Type: text/plain; charset=us-ascii Cc: linux-mips-6z/3iImG2C8G8FEW9MqTrA@public.gmane.org, linux-mtd-IAPFreCvJWM7uuMidbF8XUB+6BGkLq7r@public.gmane.org, linux-watchdog-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, devicetree-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, martin.blumenstingl-gM/Ye1E23mwN+BqQ9rBEUg@public.gmane.org, john-Pj+rj9U5foFAfugRpC6u6w@public.gmane.org, linux-spi-u79uwXL29TY76Z2rM5mHXA@public.gmane.org, hauke.mehrtens-ral2JQCrhuEAvxtiuMwx3w@public.gmane.org, robh-DgEjT+Ai2ygdnm+yROfE0A@public.gmane.org, andy.shevchenko-Re5JQEeQqe8AvxtiuMwx3w@public.gmane.org, p.zabel-bIcnvbaLZ9MEGnE8C9+IrQ@public.gmane.org, kishon-l0cyMroinI0@public.gmane.org, mark.rutland-5wv7dgnIgG8@public.gmane.org, Mark Brown To: Hauke Mehrtens Return-path: Content-Disposition: inline In-Reply-To: <20170819221823.13850-4-hauke-5/S+JYg5SzeELgA04lAiVw@public.gmane.org> Sender: linux-watchdog-owner-u79uwXL29TY76Z2rM5mHXA@public.gmane.org List-Id: linux-spi.vger.kernel.org On Sun, Aug 20, 2017 at 12:18:10AM +0200, Hauke Mehrtens wrote: > Do not check which flash type the SoC was booted from before > using this driver. Assume that the device tree is correct and use this > driver when it was added to device tree. This also removes a build > dependency to the SoC code. > > All device trees I am aware of only have one correct flash device entry > in it. The device tree is anyway bundled with the kernel in all systems > using device tree I know of. > > The boot mode can be specified with some pin straps and will select the > flash type the rom code will boot from. One SPI, NOR or NAND flash chip > can be connect to the EBU and used to load the first stage boot loader > from. I think other than this patch we finally have all the acks necessary so I merged the series except this patch which shouldn't be strictly necessary. Ralf -- To unsubscribe from this list: send the line "unsubscribe linux-watchdog" in the body of a message to majordomo-u79uwXL29TY76Z2rM5mHXA@public.gmane.org More majordomo info at http://vger.kernel.org/majordomo-info.html