mfd: ti_am335x_tscadc: store physical address
authorMugunthan V N <mugunthanvnm@ti.com>
Wed, 5 Oct 2016 09:04:40 +0000 (14:34 +0530)
committerJonathan Cameron <jic23@kernel.org>
Sat, 5 Nov 2016 17:30:51 +0000 (17:30 +0000)
store the physical address of the device in its priv to use it
for DMA addressing in the client drivers.

Signed-off-by: Mugunthan V N <mugunthanvnm@ti.com>
Acked-for-MFD-by: Lee Jones <lee.jones@linaro.org>
Signed-off-by: Jonathan Cameron <jic23@kernel.org>
drivers/mfd/ti_am335x_tscadc.c
include/linux/mfd/ti_am335x_tscadc.h

index c8f027b..0f3fab4 100644 (file)
@@ -183,6 +183,7 @@ static      int ti_tscadc_probe(struct platform_device *pdev)
                tscadc->irq = err;
 
        res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+       tscadc->tscadc_phys_base = res->start;
        tscadc->tscadc_base = devm_ioremap_resource(&pdev->dev, res);
        if (IS_ERR(tscadc->tscadc_base))
                return PTR_ERR(tscadc->tscadc_base);
index 7f55b8b..e45a208 100644 (file)
@@ -155,6 +155,7 @@ struct ti_tscadc_dev {
        struct device *dev;
        struct regmap *regmap;
        void __iomem *tscadc_base;
+       phys_addr_t tscadc_phys_base;
        int irq;
        int used_cells; /* 1-2 */
        int tsc_wires;