From patchwork Tue Jul 21 09:43:09 2015 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Steve Twiss X-Patchwork-Id: 6834091 Return-Path: X-Original-To: patchwork-linux-input@patchwork.kernel.org Delivered-To: patchwork-parsemail@patchwork1.web.kernel.org Received: from mail.kernel.org (mail.kernel.org [198.145.29.136]) by patchwork1.web.kernel.org (Postfix) with ESMTP id 374669F358 for ; Tue, 21 Jul 2015 09:46:25 +0000 (UTC) Received: from mail.kernel.org (localhost [127.0.0.1]) by mail.kernel.org (Postfix) with ESMTP id 67D91206B5 for ; Tue, 21 Jul 2015 09:46:24 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id ECAB920638 for ; Tue, 21 Jul 2015 09:46:19 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1752668AbbGUJp7 (ORCPT ); Tue, 21 Jul 2015 05:45:59 -0400 Received: from mail1.bemta14.messagelabs.com ([193.109.254.105]:11282 "EHLO mail1.bemta14.messagelabs.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1755501AbbGUJpk (ORCPT ); Tue, 21 Jul 2015 05:45:40 -0400 Received: from [85.158.140.195] by server-1.bemta-14.messagelabs.com id 0F/C2-06739-4B41EA55; Tue, 21 Jul 2015 09:45:24 +0000 X-Env-Sender: stwiss.opensource@diasemi.com X-Msg-Ref: server-9.tower-193.messagelabs.com!1437471921!3370218!2 X-Originating-IP: [82.210.246.133] X-StarScan-Received: X-StarScan-Version: 6.13.6; banners=-,-,- X-VirusChecked: Checked Received: (qmail 24695 invoked from network); 21 Jul 2015 09:45:24 -0000 Received: from mailrelay1.diasemi.com (HELO NB-EX-CASHUB01.diasemi.com) (82.210.246.133) by server-9.tower-193.messagelabs.com with AES128-SHA encrypted SMTP; 21 Jul 2015 09:45:24 -0000 Received: from mailrelay1.diasemi.com (10.1.17.243) by NB-EX-CASHUB01.diasemi.com (10.1.16.140) with Microsoft SMTP Server id 14.3.248.2; Tue, 21 Jul 2015 11:45:22 +0200 Received: from swsrvapps-01.diasemi.com (Not Verified[10.20.28.141]) by mailrelay1.diasemi.com with ESMTP Gateway id ; Tue, 21 Jul 2015 11:45:22 +0200 Received: (from stwiss@localhost) by swsrvapps-01.diasemi.com (8.14.3/8.14.3/Submit/Dlg) id t6L9jLSL031234; Tue, 21 Jul 2015 10:45:21 +0100 X-Authentication-Warning: swsrvapps-01.diasemi.com: stwiss set sender to stwiss.opensource@diasemi.com using -f Message-ID: <38520a1087687db11a1cc542b97075004087da64.1437471790.git.stwiss.opensource@diasemi.com> In-Reply-To: References: From: S Twiss Date: Tue, 21 Jul 2015 10:43:09 +0100 Subject: [PATCH V2 1/3] mfd: da9062: Support for the DA9063 RTC in the DA9062 core To: DEVICETREE , LINUXINPUT , LINUXKERNEL , Lee Jones , RTCLINUX , S Twiss , Samuel Ortiz CC: Alessandro Zummo , Alexandre Belloni , David Dajun Chen , Ian Campbell , Kumar Gala , Mark Rutland , Pawel Moll , Rob Herring , Support Opensource MIME-Version: 1.0 X-EXCLAIMER-MD-CONFIG: 8d172408-bd6a-42b1-8e53-daaedf35a5af Sender: linux-input-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-input@vger.kernel.org X-Spam-Status: No, score=-8.1 required=5.0 tests=BAYES_00, RCVD_IN_DNSWL_HI, RP_MATCHES_RCVD, 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 From: S Twiss Add MFD core driver support for a RTC component - MFD core adds the RTC resources da9062_rtc_resources[] for the RTC alarm and tick timer IRQ - An appropriate mfd_cell has been added into da9062_devs[] to support a component .name = "da9062-rtc" and .of_compatible = "dlg,da9062-rtc" Signed-off-by: Steve Twiss --- Checks performed with linux-next/next-20150708/scripts/checkpatch.pl da9062-core.c total: 0 errors, 0 warnings, 523 lines checked This patch applies against linux-next and next-20150708 drivers/mfd/da9062-core.c | 11 +++++++++++ 1 file changed, 11 insertions(+) diff --git a/drivers/mfd/da9062-core.c b/drivers/mfd/da9062-core.c index 4cf0643..b43cd24 100644 --- a/drivers/mfd/da9062-core.c +++ b/drivers/mfd/da9062-core.c @@ -118,6 +118,11 @@ static struct resource da9062_wdt_resources[] = { DEFINE_RES_NAMED(DA9062_IRQ_WDG_WARN, 1, "WD_WARN", IORESOURCE_IRQ), }; +static struct resource da9062_rtc_resources[] = { + DEFINE_RES_NAMED(DA9062_IRQ_ALARM, 1, "ALARM", IORESOURCE_IRQ), + DEFINE_RES_NAMED(DA9062_IRQ_TICK, 1, "TICK", IORESOURCE_IRQ), +}; + static const struct mfd_cell da9062_devs[] = { { .name = "da9062-core", @@ -141,6 +146,12 @@ static const struct mfd_cell da9062_devs[] = { .resources = da9062_thermal_resources, .of_compatible = "dlg,da9062-thermal", }, + { + .name = "da9062-rtc", + .num_resources = ARRAY_SIZE(da9062_rtc_resources), + .resources = da9062_rtc_resources, + .of_compatible = "dlg,da9062-rtc", + }, }; static int da9062_clear_fault_log(struct da9062 *chip)