aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/mfd
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2008-12-18 17:12:16 -0500
committerSamuel Ortiz <samuel@sortiz.org>2009-01-04 06:17:42 -0500
commit645524a9c6e1e42dc4fe03217befb20e2fc4d43e (patch)
treef556620d6695f7257c24cc483b3b9bdde9abfca1 /drivers/mfd
parent53a0d99b1ef14f56baec06eec1e3dad031672b3a (diff)
mfd: Support configurable numbers of DCDCs and ISINKs on WM8350
Some WM8350 variants have fewer DCDCs and ISINKs. Identify these at probe and refuse to use the absent DCDCs when running on these chips. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Samuel Ortiz <sameo@openedhand.com>
Diffstat (limited to 'drivers/mfd')
-rw-r--r--drivers/mfd/wm8350-core.c6
1 files changed, 6 insertions, 0 deletions
diff --git a/drivers/mfd/wm8350-core.c b/drivers/mfd/wm8350-core.c
index 03af3b12c020..56c363c240a9 100644
--- a/drivers/mfd/wm8350-core.c
+++ b/drivers/mfd/wm8350-core.c
@@ -1301,6 +1301,9 @@ int wm8350_device_init(struct wm8350 *wm8350, int irq,
1301 1301
1302 switch (mask_rev) { 1302 switch (mask_rev) {
1303 case 0: 1303 case 0:
1304 wm8350->pmic.max_dcdc = WM8350_DCDC_6;
1305 wm8350->pmic.max_isink = WM8350_ISINK_B;
1306
1304 switch (chip_rev) { 1307 switch (chip_rev) {
1305 case WM8350_REV_E: 1308 case WM8350_REV_E:
1306 dev_info(wm8350->dev, "WM8350 Rev E\n"); 1309 dev_info(wm8350->dev, "WM8350 Rev E\n");
@@ -1325,6 +1328,9 @@ int wm8350_device_init(struct wm8350 *wm8350, int irq,
1325 break; 1328 break;
1326 1329
1327 case 2: 1330 case 2:
1331 wm8350->pmic.max_dcdc = WM8350_DCDC_6;
1332 wm8350->pmic.max_isink = WM8350_ISINK_B;
1333
1328 switch (chip_rev) { 1334 switch (chip_rev) {
1329 case 0: 1335 case 0:
1330 dev_info(wm8350->dev, "WM8352 Rev A\n"); 1336 dev_info(wm8350->dev, "WM8352 Rev A\n");