From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1751205AbbCID07 (ORCPT ); Sun, 8 Mar 2015 23:26:59 -0400 Received: from mailgw02.mediatek.com ([210.61.82.184]:40906 "EHLO mailgw02.mediatek.com" rhost-flags-OK-FAIL-OK-FAIL) by vger.kernel.org with ESMTP id S1750892AbbCID05 (ORCPT ); Sun, 8 Mar 2015 23:26:57 -0400 X-Listener-Flag: 11101 Subject: Re: [PATCH 1/5] soc: mediatek: Add SMI driver From: Yingjoe Chen To: , Matthias Brugger , Arnd Bergmann CC: Rob Herring , Joerg Roedel , Matthias Brugger , Mark Rutland , , , Catalin Marinas , Will Deacon , , Tomasz Figa , , Daniel Kurtz , Sasha Hauer , , Robin Murphy , , Lucas Stach In-Reply-To: <1425638900-24989-2-git-send-email-yong.wu@mediatek.com> References: <1425638900-24989-1-git-send-email-yong.wu@mediatek.com> <1425638900-24989-2-git-send-email-yong.wu@mediatek.com> Content-Type: text/plain; charset="UTF-8" Date: Mon, 9 Mar 2015 11:26:52 +0800 Message-ID: <1425871612.4871.10.camel@mtksdaap41> MIME-Version: 1.0 X-Mailer: Evolution 2.28.3 Content-Transfer-Encoding: 7bit X-MTK: N Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, 2015-03-06 at 18:48 +0800, yong.wu@mediatek.com wrote: > From: Yong Wu > > This patch add SMI(Smart Multimedia Interface) driver. This driver is > responsible to enable/disable iommu and control the clocks of each > local arbiter. > > Signed-off-by: Yong Wu > --- > drivers/soc/mediatek/Kconfig | 7 ++ > drivers/soc/mediatek/Makefile | 1 + > drivers/soc/mediatek/mt8173-smi.c | 143 ++++++++++++++++++++++++++++++++++++++ > include/linux/mtk-smi.h | 40 +++++++++++ > 4 files changed, 191 insertions(+) > create mode 100644 drivers/soc/mediatek/mt8173-smi.c > create mode 100644 include/linux/mtk-smi.h > Hi Arnd, Matthias, For the SMI driver, we can't find a better place, so we put it in drivers/soc/mediatek now. Please let us know if you have any suggestion or concern. Thanks You can find more description about SMI and how we use it in the cover letter: http://lists.infradead.org/pipermail/linux-arm-kernel/2015-March/328451.html Joe.C From mboxrd@z Thu Jan 1 00:00:00 1970 From: Yingjoe Chen Subject: Re: [PATCH 1/5] soc: mediatek: Add SMI driver Date: Mon, 9 Mar 2015 11:26:52 +0800 Message-ID: <1425871612.4871.10.camel@mtksdaap41> References: <1425638900-24989-1-git-send-email-yong.wu@mediatek.com> <1425638900-24989-2-git-send-email-yong.wu@mediatek.com> Mime-Version: 1.0 Content-Type: text/plain; charset="UTF-8" Content-Transfer-Encoding: 7bit Return-path: In-Reply-To: <1425638900-24989-2-git-send-email-yong.wu@mediatek.com> Sender: linux-kernel-owner@vger.kernel.org To: yong.wu@mediatek.com, Arnd Bergmann Cc: Rob Herring , Joerg Roedel , Matthias Brugger , Mark Rutland , devicetree@vger.kernel.org, srv_heupstream@mediatek.com, Catalin Marinas , Will Deacon , linux-kernel@vger.kernel.org, Tomasz Figa , iommu@lists.linux-foundation.org, Daniel Kurtz , Sasha Hauer , linux-mediatek@lists.infradead.org, Robin Murphy , linux-arm-kernel@lists.infradead.org, Lucas Stach List-Id: devicetree@vger.kernel.org On Fri, 2015-03-06 at 18:48 +0800, yong.wu@mediatek.com wrote: > From: Yong Wu > > This patch add SMI(Smart Multimedia Interface) driver. This driver is > responsible to enable/disable iommu and control the clocks of each > local arbiter. > > Signed-off-by: Yong Wu > --- > drivers/soc/mediatek/Kconfig | 7 ++ > drivers/soc/mediatek/Makefile | 1 + > drivers/soc/mediatek/mt8173-smi.c | 143 ++++++++++++++++++++++++++++++++++++++ > include/linux/mtk-smi.h | 40 +++++++++++ > 4 files changed, 191 insertions(+) > create mode 100644 drivers/soc/mediatek/mt8173-smi.c > create mode 100644 include/linux/mtk-smi.h > Hi Arnd, Matthias, For the SMI driver, we can't find a better place, so we put it in drivers/soc/mediatek now. Please let us know if you have any suggestion or concern. Thanks You can find more description about SMI and how we use it in the cover letter: http://lists.infradead.org/pipermail/linux-arm-kernel/2015-March/328451.html Joe.C From mboxrd@z Thu Jan 1 00:00:00 1970 From: yingjoe.chen@mediatek.com (Yingjoe Chen) Date: Mon, 9 Mar 2015 11:26:52 +0800 Subject: [PATCH 1/5] soc: mediatek: Add SMI driver In-Reply-To: <1425638900-24989-2-git-send-email-yong.wu@mediatek.com> References: <1425638900-24989-1-git-send-email-yong.wu@mediatek.com> <1425638900-24989-2-git-send-email-yong.wu@mediatek.com> Message-ID: <1425871612.4871.10.camel@mtksdaap41> To: linux-arm-kernel@lists.infradead.org List-Id: linux-arm-kernel.lists.infradead.org On Fri, 2015-03-06 at 18:48 +0800, yong.wu at mediatek.com wrote: > From: Yong Wu > > This patch add SMI(Smart Multimedia Interface) driver. This driver is > responsible to enable/disable iommu and control the clocks of each > local arbiter. > > Signed-off-by: Yong Wu > --- > drivers/soc/mediatek/Kconfig | 7 ++ > drivers/soc/mediatek/Makefile | 1 + > drivers/soc/mediatek/mt8173-smi.c | 143 ++++++++++++++++++++++++++++++++++++++ > include/linux/mtk-smi.h | 40 +++++++++++ > 4 files changed, 191 insertions(+) > create mode 100644 drivers/soc/mediatek/mt8173-smi.c > create mode 100644 include/linux/mtk-smi.h > Hi Arnd, Matthias, For the SMI driver, we can't find a better place, so we put it in drivers/soc/mediatek now. Please let us know if you have any suggestion or concern. Thanks You can find more description about SMI and how we use it in the cover letter: http://lists.infradead.org/pipermail/linux-arm-kernel/2015-March/328451.html Joe.C