Return-Path: Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1753376AbbGILvO (ORCPT ); Thu, 9 Jul 2015 07:51:14 -0400 Received: from mail-pa0-f51.google.com ([209.85.220.51]:34146 "EHLO mail-pa0-f51.google.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1753102AbbGILtu (ORCPT ); Thu, 9 Jul 2015 07:49:50 -0400 From: Vaibhav Hiremath To: linux-arm-kernel@lists.infradead.org Cc: robh+dt@kernel.org, sameo@linux.intel.com, lee.jones@linaro.org, k.kozlowski@samsung.com, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, Vaibhav Hiremath Subject: [PATCH 4/6] mfd: 88pm800: Enable 32KHZ XO low jitter clock out Date: Thu, 9 Jul 2015 17:17:09 +0530 Message-Id: <1436442431-3471-5-git-send-email-vaibhav.hiremath@linaro.org> X-Mailer: git-send-email 1.9.1 In-Reply-To: <1436442431-3471-1-git-send-email-vaibhav.hiremath@linaro.org> References: <1436442431-3471-1-git-send-email-vaibhav.hiremath@linaro.org> Sender: linux-kernel-owner@vger.kernel.org List-ID: X-Mailing-List: linux-kernel@vger.kernel.org Content-Length: 1953 Lines: 63 88PM800/860 device supports output of 32KHz low jitter XO clock out on - CLK32K3 - for 88pm800 - CLK32K2 - for 88pm860 Both devices share same register bit-field to configure this. This patch adds support to enable this clock out, using DT property "marvell,88pm800-32khz-xolj-out-en" Since this configuration is controlled through DT property, it is safe to put it as common code. Signed-off-by: Vaibhav Hiremath --- drivers/mfd/88pm800.c | 13 +++++++++++++ include/linux/mfd/88pm80x.h | 1 + 2 files changed, 14 insertions(+) diff --git a/drivers/mfd/88pm800.c b/drivers/mfd/88pm800.c index 80a1bc1..8930fd8 100644 --- a/drivers/mfd/88pm800.c +++ b/drivers/mfd/88pm800.c @@ -526,6 +526,19 @@ static int pm800_init_config(struct pm80x_chip *chip, struct device_node *np) int ret; unsigned int val; + /* Enable 32Khz-out-3 low jitter XO_LJ = 1 in pm800 + * Enable 32Khz-out-2 low jitter XO_LJ = 1 in pm860 + * they are the same bit + */ + if (of_property_read_bool(np, "marvell,88pm800-32khz-xolj-out-en")) { + ret = regmap_update_bits(chip->regmap, + PM800_LOW_POWER2, + PM800_XO_LJ_OUT_EN, + PM800_XO_LJ_OUT_EN); + if (ret) + goto error; + } + switch (chip->type) { case CHIP_PM800: case CHIP_PM805: diff --git a/include/linux/mfd/88pm80x.h b/include/linux/mfd/88pm80x.h index 2ef62af..fb916f1 100644 --- a/include/linux/mfd/88pm80x.h +++ b/include/linux/mfd/88pm80x.h @@ -88,6 +88,7 @@ enum { /* Referance and low power registers */ #define PM800_LOW_POWER1 (0x20) #define PM800_LOW_POWER2 (0x21) +#define PM800_XO_LJ_OUT_EN BIT(5) #define PM800_LOW_POWER_CONFIG3 (0x22) #define PM800_LDOBK_FREEZE BIT(7) -- 1.9.1 -- To unsubscribe from this list: send the line "unsubscribe linux-kernel" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.html Please read the FAQ at http://www.tux.org/lkml/