mfd: da9062: Support for the DA9063 RTC in the DA9062 core
authorS Twiss <stwiss.opensource@diasemi.com>
Tue, 21 Jul 2015 10:29:06 +0000 (11:29 +0100)
committerLee Jones <lee.jones@linaro.org>
Tue, 11 Aug 2015 14:08:57 +0000 (15:08 +0100)
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 <stwiss.opensource@diasemi.com>
Signed-off-by: Lee Jones <lee.jones@linaro.org>
drivers/mfd/da9062-core.c

index 4cf06431f2563c2bb32cabd2c6f4e3ce4749c12a..b43cd24ad1888a9e775ee486068065252b55e85f 100644 (file)
@@ -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)
This page took 0.050688 seconds and 5 git commands to generate.