mirror of
https://github.com/FEX-Emu/linux.git
synced 2024-12-22 01:10:28 +00:00
ARM: SAMSUNG: Revise PM for 12-bit ADC operations
- Fixed: 12bit precision is lost at suspend/resume - Updated: use pm_dev_ops Signed-off-by: MyungJoo Ham <myungjoo.ham@samsung.com> Signed-off-by: Kyungmin Park <kyungmin.park@samsung.com> Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
This commit is contained in:
parent
64df92ea78
commit
67dcaec8d6
@ -437,8 +437,10 @@ static int __devexit s3c_adc_remove(struct platform_device *pdev)
|
|||||||
}
|
}
|
||||||
|
|
||||||
#ifdef CONFIG_PM
|
#ifdef CONFIG_PM
|
||||||
static int s3c_adc_suspend(struct platform_device *pdev, pm_message_t state)
|
static int s3c_adc_suspend(struct device *dev)
|
||||||
{
|
{
|
||||||
|
struct platform_device *pdev = container_of(dev,
|
||||||
|
struct platform_device, dev);
|
||||||
struct adc_device *adc = platform_get_drvdata(pdev);
|
struct adc_device *adc = platform_get_drvdata(pdev);
|
||||||
unsigned long flags;
|
unsigned long flags;
|
||||||
u32 con;
|
u32 con;
|
||||||
@ -457,10 +459,13 @@ static int s3c_adc_suspend(struct platform_device *pdev, pm_message_t state)
|
|||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
static int s3c_adc_resume(struct platform_device *pdev)
|
static int s3c_adc_resume(struct device *dev)
|
||||||
{
|
{
|
||||||
|
struct platform_device *pdev = container_of(dev,
|
||||||
|
struct platform_device, dev);
|
||||||
struct adc_device *adc = platform_get_drvdata(pdev);
|
struct adc_device *adc = platform_get_drvdata(pdev);
|
||||||
int ret;
|
int ret;
|
||||||
|
unsigned long tmp;
|
||||||
|
|
||||||
ret = regulator_enable(adc->vdd);
|
ret = regulator_enable(adc->vdd);
|
||||||
if (ret)
|
if (ret)
|
||||||
@ -468,8 +473,11 @@ static int s3c_adc_resume(struct platform_device *pdev)
|
|||||||
clk_enable(adc->clk);
|
clk_enable(adc->clk);
|
||||||
enable_irq(adc->irq);
|
enable_irq(adc->irq);
|
||||||
|
|
||||||
writel(adc->prescale | S3C2410_ADCCON_PRSCEN,
|
tmp = adc->prescale | S3C2410_ADCCON_PRSCEN;
|
||||||
adc->regs + S3C2410_ADCCON);
|
/* Enable 12-bit ADC resolution */
|
||||||
|
if (platform_get_device_id(pdev)->driver_data != TYPE_ADCV1)
|
||||||
|
tmp |= S3C64XX_ADCCON_RESSEL;
|
||||||
|
writel(tmp, adc->regs + S3C2410_ADCCON);
|
||||||
|
|
||||||
return 0;
|
return 0;
|
||||||
}
|
}
|
||||||
@ -494,16 +502,20 @@ static struct platform_device_id s3c_adc_driver_ids[] = {
|
|||||||
};
|
};
|
||||||
MODULE_DEVICE_TABLE(platform, s3c_adc_driver_ids);
|
MODULE_DEVICE_TABLE(platform, s3c_adc_driver_ids);
|
||||||
|
|
||||||
|
static const struct dev_pm_ops adc_pm_ops = {
|
||||||
|
.suspend = s3c_adc_suspend,
|
||||||
|
.resume = s3c_adc_resume,
|
||||||
|
};
|
||||||
|
|
||||||
static struct platform_driver s3c_adc_driver = {
|
static struct platform_driver s3c_adc_driver = {
|
||||||
.id_table = s3c_adc_driver_ids,
|
.id_table = s3c_adc_driver_ids,
|
||||||
.driver = {
|
.driver = {
|
||||||
.name = "s3c-adc",
|
.name = "s3c-adc",
|
||||||
.owner = THIS_MODULE,
|
.owner = THIS_MODULE,
|
||||||
|
.pm = &adc_pm_ops,
|
||||||
},
|
},
|
||||||
.probe = s3c_adc_probe,
|
.probe = s3c_adc_probe,
|
||||||
.remove = __devexit_p(s3c_adc_remove),
|
.remove = __devexit_p(s3c_adc_remove),
|
||||||
.suspend = s3c_adc_suspend,
|
|
||||||
.resume = s3c_adc_resume,
|
|
||||||
};
|
};
|
||||||
|
|
||||||
static int __init adc_init(void)
|
static int __init adc_init(void)
|
||||||
|
Loading…
Reference in New Issue
Block a user