mirror of
git://git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
synced 2025-11-16 03:37:05 +00:00
mfd: ti_am335x_tscadc: store physical address
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>
This commit is contained in:
parent
1001354ca3
commit
c9329d8638
2 changed files with 2 additions and 0 deletions
|
|
@ -183,6 +183,7 @@ static int ti_tscadc_probe(struct platform_device *pdev)
|
||||||
tscadc->irq = err;
|
tscadc->irq = err;
|
||||||
|
|
||||||
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
res = platform_get_resource(pdev, IORESOURCE_MEM, 0);
|
||||||
|
tscadc->tscadc_phys_base = res->start;
|
||||||
tscadc->tscadc_base = devm_ioremap_resource(&pdev->dev, res);
|
tscadc->tscadc_base = devm_ioremap_resource(&pdev->dev, res);
|
||||||
if (IS_ERR(tscadc->tscadc_base))
|
if (IS_ERR(tscadc->tscadc_base))
|
||||||
return PTR_ERR(tscadc->tscadc_base);
|
return PTR_ERR(tscadc->tscadc_base);
|
||||||
|
|
|
||||||
|
|
@ -155,6 +155,7 @@ struct ti_tscadc_dev {
|
||||||
struct device *dev;
|
struct device *dev;
|
||||||
struct regmap *regmap;
|
struct regmap *regmap;
|
||||||
void __iomem *tscadc_base;
|
void __iomem *tscadc_base;
|
||||||
|
phys_addr_t tscadc_phys_base;
|
||||||
int irq;
|
int irq;
|
||||||
int used_cells; /* 1-2 */
|
int used_cells; /* 1-2 */
|
||||||
int tsc_wires;
|
int tsc_wires;
|
||||||
|
|
|
||||||
Loading…
Add table
Reference in a new issue