From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1755771AbaBROmj (ORCPT ); Tue, 18 Feb 2014 09:42:39 -0500 Received: from devils.ext.ti.com ([198.47.26.153]:53739 "EHLO devils.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755388AbaBROmh (ORCPT ); Tue, 18 Feb 2014 09:42:37 -0500 Message-ID: <53037113.3090105@ti.com> Date: Tue, 18 Feb 2014 09:41:23 -0500 From: Santosh Shilimkar User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:17.0) Gecko/17.0 Thunderbird/17.0 MIME-Version: 1.0 To: CC: Ivan Khoronzhuk , , , , , , , , , , , , , , , Subject: Re: [PATCH v4 0/2] Introduce AEMIF driver for Davinci/Keystone archs References: <1391629574-18955-1-git-send-email-ivan.khoronzhuk@ti.com> In-Reply-To: <1391629574-18955-1-git-send-email-ivan.khoronzhuk@ti.com> Content-Type: text/plain; charset="ISO-8859-1" Content-Transfer-Encoding: 7bit Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Greg, On Wednesday 05 February 2014 02:46 PM, Ivan Khoronzhuk wrote: > These patches introduce Async External Memory Interface (EMIF16/AEMIF) > controller driver for Davinci/Keystone archs. > > For more informations see documentation: > Davinci DM646x - http://www.ti.com/lit/ug/sprueq7c/sprueq7c.pdf > OMAP-L138 - http://www.ti.com/lit/ug/spruh77a/spruh77a.pdf > Kestone - http://www.ti.com/lit/ug/sprugz3a/sprugz3a.pdf > Can you please have a look at the series ? It has been on the list for sometime and all the outstanding comments are addressed so far. If you are ok with it, I would like to get these queued up for 3.15 via your tree. > Based on > git://git.kernel.org/pub/scm/linux/kernel/git/ssantosh/linux-keystone.git > keystone/master > > v3..v4: > rebased on latest of linux-keystone.git keystone/master > > v2..v3 (https://lkml.org/lkml/2013/12/11/148): > - memory: ti-aemif: introduce AEMIF driver > changed to work with multiple AEMIF controllers > corrected "copyright" to "authors" in header > changed compatible "ti,omap-L138-aemif" to "ti,da850-aeimf" > used NULL in clk_get() instead of "aemif" name > driver can be build as loadable module > treat all child nodes as cs nodes, it makes code simpler > > - memory: ti-aemif: add bindings for AEMIF driver > deleted direct link driver/memory/ti-aemif.c > clarified description of controller ranges property > changed compatible "ti,omap-L138-aemif" to "ti,da850-aeimf" > added cs number information in commit log > removed compatible property from cs node, it makes code simpler > > v1..v2 (https://lkml.org/lkml/2013/11/21/170): > - memory: ti-aemif: introduce AEMIF driver > - memory: ti-aemif: add bindings for AEMIF driver > added ti.cs-chipselect property instead of representing chipselect > number in cs node name. > > Ivan Khoronzhuk (2): > memory: ti-aemif: introduce AEMIF driver > memory: ti-aemif: add bindings for AEMIF driver > > .../bindings/memory-controllers/ti-aemif.txt | 210 ++++++++++ > drivers/memory/Kconfig | 11 + > drivers/memory/Makefile | 1 + > drivers/memory/ti-aemif.c | 429 +++++++++++++++++++++ > 4 files changed, 651 insertions(+) > create mode 100644 Documentation/devicetree/bindings/memory-controllers/ti-aemif.txt > create mode 100644 drivers/memory/ti-aemif.c >