diff options
author | S Twiss <stwiss.opensource@diasemi.com> | 2015-07-21 06:29:06 -0400 |
---|---|---|
committer | Lee Jones <lee.jones@linaro.org> | 2015-08-11 10:08:57 -0400 |
commit | ca1ce176af986213bfdc86ce73c05ab0d2aa3578 (patch) | |
tree | d7fcb4d5e00b5583960ac8966d581fb83beaaf34 | |
parent | 496e43aeacab245ca57139e89d83655f8370e0ef (diff) |
mfd: da9062: Support for the DA9063 RTC in the DA9062 core
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>
-rw-r--r-- | drivers/mfd/da9062-core.c | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/drivers/mfd/da9062-core.c b/drivers/mfd/da9062-core.c index 4cf06431f256..b43cd24ad188 100644 --- a/drivers/mfd/da9062-core.c +++ b/drivers/mfd/da9062-core.c | |||
@@ -118,6 +118,11 @@ static struct resource da9062_wdt_resources[] = { | |||
118 | DEFINE_RES_NAMED(DA9062_IRQ_WDG_WARN, 1, "WD_WARN", IORESOURCE_IRQ), | 118 | DEFINE_RES_NAMED(DA9062_IRQ_WDG_WARN, 1, "WD_WARN", IORESOURCE_IRQ), |
119 | }; | 119 | }; |
120 | 120 | ||
121 | static struct resource da9062_rtc_resources[] = { | ||
122 | DEFINE_RES_NAMED(DA9062_IRQ_ALARM, 1, "ALARM", IORESOURCE_IRQ), | ||
123 | DEFINE_RES_NAMED(DA9062_IRQ_TICK, 1, "TICK", IORESOURCE_IRQ), | ||
124 | }; | ||
125 | |||
121 | static const struct mfd_cell da9062_devs[] = { | 126 | static const struct mfd_cell da9062_devs[] = { |
122 | { | 127 | { |
123 | .name = "da9062-core", | 128 | .name = "da9062-core", |
@@ -141,6 +146,12 @@ static const struct mfd_cell da9062_devs[] = { | |||
141 | .resources = da9062_thermal_resources, | 146 | .resources = da9062_thermal_resources, |
142 | .of_compatible = "dlg,da9062-thermal", | 147 | .of_compatible = "dlg,da9062-thermal", |
143 | }, | 148 | }, |
149 | { | ||
150 | .name = "da9062-rtc", | ||
151 | .num_resources = ARRAY_SIZE(da9062_rtc_resources), | ||
152 | .resources = da9062_rtc_resources, | ||
153 | .of_compatible = "dlg,da9062-rtc", | ||
154 | }, | ||
144 | }; | 155 | }; |
145 | 156 | ||
146 | static int da9062_clear_fault_log(struct da9062 *chip) | 157 | static int da9062_clear_fault_log(struct da9062 *chip) |