aboutsummaryrefslogtreecommitdiffstats
path: root/drivers/regulator/wm831x-ldo.c
diff options
context:
space:
mode:
authorMark Brown <broonie@opensource.wolfsonmicro.com>2012-05-14 17:14:24 -0400
committerSamuel Ortiz <sameo@linux.intel.com>2012-05-20 11:27:07 -0400
commitcd99758ba3bde64347a8ece381cbae2fb5c745b2 (patch)
treece74c5150978f1cd29861e33e8847bc5dd667ed7 /drivers/regulator/wm831x-ldo.c
parent4492c4c3ff7bbb5fd400f021532643a3493f0723 (diff)
mfd: Convert wm831x to irq_domain
The modern idiom is to use irq_domain to allocate interrupts. This is useful partly to allow further infrastructure to be based on the domains and partly because it makes it much easier to allocate virtual interrupts to devices as we don't need to allocate a contiguous range of interrupt numbers. Convert the wm831x driver over to this infrastructure, using a legacy IRQ mapping if an irq_base is specified in platform data and otherwise using a linear mapping, always registering the interrupts even if they won't ever be used. Only boards which need to use the GPIOs as interrupts should need to use an irq_base. This means that we can't use the MFD irq_base management since the unless we're using an explicit irq_base from platform data we can't rely on a linear mapping of interrupts. Instead we need to map things via the irq_domain - provide a conveniencem function wm831x_irq() to save a small amount of typing when doing so. Looking at this I couldn't clearly see anything the MFD core could do to make this nicer. Since we're not supporting device tree yet there's no meaningful advantage if we don't do this conversion in one, the fact that the interrupt resources are used for repeated IP blocks makes accessor functions for the irq_domain more trouble to do than they're worth. Signed-off-by: Mark Brown <broonie@opensource.wolfsonmicro.com> Signed-off-by: Samuel Ortiz <sameo@linux.intel.com>
Diffstat (limited to 'drivers/regulator/wm831x-ldo.c')
-rw-r--r--drivers/regulator/wm831x-ldo.c10
1 files changed, 6 insertions, 4 deletions
diff --git a/drivers/regulator/wm831x-ldo.c b/drivers/regulator/wm831x-ldo.c
index 641e9f6499d1..b09ba05ada6d 100644
--- a/drivers/regulator/wm831x-ldo.c
+++ b/drivers/regulator/wm831x-ldo.c
@@ -359,7 +359,7 @@ static __devinit int wm831x_gp_ldo_probe(struct platform_device *pdev)
359 goto err; 359 goto err;
360 } 360 }
361 361
362 irq = platform_get_irq_byname(pdev, "UV"); 362 irq = wm831x_irq(wm831x, platform_get_irq_byname(pdev, "UV"));
363 ret = request_threaded_irq(irq, NULL, wm831x_ldo_uv_irq, 363 ret = request_threaded_irq(irq, NULL, wm831x_ldo_uv_irq,
364 IRQF_TRIGGER_RISING, ldo->name, 364 IRQF_TRIGGER_RISING, ldo->name,
365 ldo); 365 ldo);
@@ -385,7 +385,8 @@ static __devexit int wm831x_gp_ldo_remove(struct platform_device *pdev)
385 385
386 platform_set_drvdata(pdev, NULL); 386 platform_set_drvdata(pdev, NULL);
387 387
388 free_irq(platform_get_irq_byname(pdev, "UV"), ldo); 388 free_irq(wm831x_irq(ldo->wm831x,
389 platform_get_irq_byname(pdev, "UV")), ldo);
389 regulator_unregister(ldo->regulator); 390 regulator_unregister(ldo->regulator);
390 391
391 return 0; 392 return 0;
@@ -624,7 +625,7 @@ static __devinit int wm831x_aldo_probe(struct platform_device *pdev)
624 goto err; 625 goto err;
625 } 626 }
626 627
627 irq = platform_get_irq_byname(pdev, "UV"); 628 irq = wm831x_irq(wm831x, platform_get_irq_byname(pdev, "UV"));
628 ret = request_threaded_irq(irq, NULL, wm831x_ldo_uv_irq, 629 ret = request_threaded_irq(irq, NULL, wm831x_ldo_uv_irq,
629 IRQF_TRIGGER_RISING, ldo->name, ldo); 630 IRQF_TRIGGER_RISING, ldo->name, ldo);
630 if (ret != 0) { 631 if (ret != 0) {
@@ -647,7 +648,8 @@ static __devexit int wm831x_aldo_remove(struct platform_device *pdev)
647{ 648{
648 struct wm831x_ldo *ldo = platform_get_drvdata(pdev); 649 struct wm831x_ldo *ldo = platform_get_drvdata(pdev);
649 650
650 free_irq(platform_get_irq_byname(pdev, "UV"), ldo); 651 free_irq(wm831x_irq(ldo->wm831x, platform_get_irq_byname(pdev, "UV")),
652 ldo);
651 regulator_unregister(ldo->regulator); 653 regulator_unregister(ldo->regulator);
652 654
653 return 0; 655 return 0;