From patchwork Tue May 10 09:50:55 2016 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Masahiro Yamada X-Patchwork-Id: 9056441 Return-Path: X-Original-To: patchwork-linux-clk@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork2.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork2.web.kernel.org (Postfix) with ESMTP id C74DDBF29F for ; Tue, 10 May 2016 09:56:50 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id DAD3B20145 for ; Tue, 10 May 2016 09:56:49 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id A4AA2200F0 for ; Tue, 10 May 2016 09:56:45 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752224AbcEJJ4Q (ORCPT ); Tue, 10 May 2016 05:56:16 -0400 Received: from conuserg-10.nifty.com ([210.131.2.77]:34769 "EHLO conuserg-10.nifty.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1752079AbcEJJvz (ORCPT ); Tue, 10 May 2016 05:51:55 -0400 Received: from beagle.diag.org (p14092-ipngnfx01kyoto.kyoto.ocn.ne.jp [153.142.97.92]) (authenticated) by conuserg-10.nifty.com with ESMTP id u4A9o2qB001762; Tue, 10 May 2016 18:50:22 +0900 DKIM-Filter: OpenDKIM Filter v2.10.3 conuserg-10.nifty.com u4A9o2qB001762 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=nifty.com; s=dec2015msa; t=1462873822; bh=Js2wDx5ZxgvFet+Evbsu3iCd9VvxHWyEhMOqeBW+rQ8=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=iI7l7oR1gbe+pVWVHPHmc09gUL0ajOULK5DudoZ77rI1pPD1dmg1r5Eq1TgolNtza y2LzJhtU2OyhrMFpxyQd3/4SCcZZZKakJPFVvHA9R9IXQXrcF6mkRXiZxYIk1UUp7j 8upGErf7ZbMoJhz7MVblmMvhnXQQv1/dRc9GcnbucTiftQHMrdoBrQYAMTPqp8CRCh X4ZFSBmRnSuFZyhrySbjAetxswu2trof915ujD8XgmSfPcjXOSK/Sg2ovu1Bz8+5iz HvYSOgSdYvFGn3h0rGDVceknqDzedjhBgorJQ9Hqnzqce8pdGySz55Ks6SUaVpXNqe CixHgt2ym1R8w== X-Nifty-SrcIP: [153.142.97.92] From: Masahiro Yamada To: linux-clk@vger.kernel.org, Arnd Bergmann , Philipp Zabel Cc: Masahiro Yamada , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org Subject: [RFC PATCH 14/21] reset: uniphier: add reset driver for UniPhier PH1-Pro4 SoC Date: Tue, 10 May 2016 18:50:55 +0900 Message-Id: <1462873862-30940-15-git-send-email-yamada.masahiro@socionext.com> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1462873862-30940-1-git-send-email-yamada.masahiro@socionext.com> References: <1462873862-30940-1-git-send-email-yamada.masahiro@socionext.com> Sender: linux-clk-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-clk@vger.kernel.org X-Spam-Status: No, score=-8.9 required=5.0 tests=BAYES_00,DKIM_SIGNED, RCVD_IN_DNSWL_HI,RP_MATCHES_RCVD,T_DKIM_INVALID,UNPARSEABLE_RELAY autolearn=unavailable version=3.3.1 X-Spam-Checker-Version: SpamAssassin 3.3.1 (2010-03-16) on mail.kernel.org X-Virus-Scanned: ClamAV using ClamSMTP This series is just for review. Please do not apply this patch. Signed-off-by: Masahiro Yamada --- drivers/reset/uniphier/Kconfig | 4 +++ drivers/reset/uniphier/Makefile | 1 + drivers/reset/uniphier/reset-uniphier-pro4.c | 46 ++++++++++++++++++++++++++++ 3 files changed, 51 insertions(+) create mode 100644 drivers/reset/uniphier/reset-uniphier-pro4.c diff --git a/drivers/reset/uniphier/Kconfig b/drivers/reset/uniphier/Kconfig index 875afd9..1633093 100644 --- a/drivers/reset/uniphier/Kconfig +++ b/drivers/reset/uniphier/Kconfig @@ -10,4 +10,8 @@ config RESET_UNIPHIER_LD4 tristate "Reset driver for UniPhier PH1-LD4 SoC" default ARM +config RESET_UNIPHIER_PRO4 + tristate "Reset driver for UniPhier PH1-Pro4 SoC" + default ARM + endif diff --git a/drivers/reset/uniphier/Makefile b/drivers/reset/uniphier/Makefile index c99a420..d496fe8 100644 --- a/drivers/reset/uniphier/Makefile +++ b/drivers/reset/uniphier/Makefile @@ -1,3 +1,4 @@ obj-y += reset-uniphier-core.o obj-$(CONFIG_RESET_UNIPHIER_LD4) += reset-uniphier-ld4.o +obj-$(CONFIG_RESET_UNIPHIER_PRO4) += reset-uniphier-pro4.o diff --git a/drivers/reset/uniphier/reset-uniphier-pro4.c b/drivers/reset/uniphier/reset-uniphier-pro4.c new file mode 100644 index 0000000..57ce253 --- /dev/null +++ b/drivers/reset/uniphier/reset-uniphier-pro4.c @@ -0,0 +1,46 @@ +/* + * Copyright (C) 2016 Socionext Inc. + * Author: Masahiro Yamada + * + * This program is free software; you can redistribute it and/or modify + * it under the terms of the GNU General Public License as published by + * the Free Software Foundation; either version 2 of the License, or + * (at your option) any later version. + * + * This program is distributed in the hope that it will be useful, + * but WITHOUT ANY WARRANTY; without even the implied warranty of + * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the + * GNU General Public License for more details. + */ + +#include +#include + +#include "reset-uniphier.h" + +static const struct uniphier_reset_data uniphier_pro4_reset_data[] = { + { + .id = 7, + .reg = 0x2000, + .mask = BIT(10), + .deassert_val = BIT(10), + }, + { .id = UNIPHIER_RESET_ID_END } +}; + +static int uniphier_pro4_reset_probe(struct platform_device *pdev) +{ + return uniphier_reset_probe(pdev, uniphier_pro4_reset_data); +} + +static struct platform_driver uniphier_pro4_reset_driver = { + .probe = uniphier_pro4_reset_probe, + .driver = { + .name = "uniphier-pro4-reset", + }, +}; +module_platform_driver(uniphier_pro4_reset_driver); + +MODULE_AUTHOR("Masahiro Yamada "); +MODULE_DESCRIPTION("UniPhier PH1-Pro4 Reset Controller Driver"); +MODULE_LICENSE("GPL");