Skip to content

Commit

Permalink
ARM: PNX4008: kzalloc i2c drivers internal data
Browse files Browse the repository at this point in the history
Signed-off-by: Russell King <rmk+kernel@arm.linux.org.uk>
  • Loading branch information
Russell King committed Feb 12, 2010
1 parent 88d968b commit 44c5d73
Show file tree
Hide file tree
Showing 3 changed files with 28 additions and 30 deletions.
25 changes: 7 additions & 18 deletions arch/arm/mach-pnx4008/i2c.c
Original file line number Diff line number Diff line change
Expand Up @@ -18,45 +18,34 @@
#include <mach/irqs.h>
#include <mach/i2c.h>

static struct i2c_pnx_algo_data pnx_algo_data0 = {
.base = PNX4008_I2C1_BASE,
.irq = I2C_1_INT,
};

static struct i2c_pnx_algo_data pnx_algo_data1 = {
.base = PNX4008_I2C2_BASE,
.irq = I2C_2_INT,
};

static struct i2c_pnx_algo_data pnx_algo_data2 = {
.base = (PNX4008_USB_CONFIG_BASE + 0x300),
.irq = USB_I2C_INT,
};

static struct i2c_adapter pnx_adapter0 = {
.name = I2C_CHIP_NAME "0",
.algo_data = &pnx_algo_data0,
};

static struct i2c_adapter pnx_adapter1 = {
.name = I2C_CHIP_NAME "1",
.algo_data = &pnx_algo_data1,
};

static struct i2c_adapter pnx_adapter2 = {
.name = "USB-I2C",
.algo_data = &pnx_algo_data2,
};

static struct i2c_pnx_data i2c0_data = {
.adapter = &pnx_adapter0,
.base = PNX4008_I2C1_BASE,
.irq = I2C_1_INT,
};

static struct i2c_pnx_data i2c1_data = {
.adapter = &pnx_adapter1,
.base = PNX4008_I2C2_BASE,
.irq = I2C_2_INT,
};

static struct i2c_pnx_data i2c2_data = {
.adapter = &pnx_adapter2,
.base = (PNX4008_USB_CONFIG_BASE + 0x300),
.irq = USB_I2C_INT,
};

static struct platform_device i2c0_device = {
Expand Down
29 changes: 19 additions & 10 deletions drivers/i2c/busses/i2c-pnx.c
Original file line number Diff line number Diff line change
Expand Up @@ -587,10 +587,16 @@ static int __devinit i2c_pnx_probe(struct platform_device *pdev)
goto out;
}

alg_data = kzalloc(sizeof(*alg_data), GFP_KERNEL);
if (!alg_data) {
ret = -ENOMEM;
goto err_kzalloc;
}

platform_set_drvdata(pdev, i2c_pnx);

i2c_pnx->adapter->algo = &pnx_algorithm;
alg_data = i2c_pnx->adapter->algo_data;
i2c_pnx->adapter->algo_data = alg_data;

alg_data->clk = clk_get(&pdev->dev, NULL);
if (IS_ERR(alg_data->clk)) {
Expand All @@ -603,16 +609,16 @@ static int __devinit i2c_pnx_probe(struct platform_device *pdev)
alg_data->mif.timer.data = (unsigned long)i2c_pnx->adapter;

/* Register I/O resource */
if (!request_mem_region(alg_data->base, I2C_PNX_REGION_SIZE,
if (!request_mem_region(i2c_pnx->base, I2C_PNX_REGION_SIZE,
pdev->name)) {
dev_err(&pdev->dev,
"I/O region 0x%08x for I2C already in use.\n",
alg_data->base);
i2c_pnx->base);
ret = -ENODEV;
goto out_clkget;
}

alg_data->ioaddr = ioremap(alg_data->base, I2C_PNX_REGION_SIZE);
alg_data->ioaddr = ioremap(i2c_pnx->base, I2C_PNX_REGION_SIZE);
if (!alg_data->ioaddr) {
dev_err(&pdev->dev, "Couldn't ioremap I2C I/O region\n");
ret = -ENOMEM;
Expand Down Expand Up @@ -647,7 +653,7 @@ static int __devinit i2c_pnx_probe(struct platform_device *pdev)
}
init_completion(&alg_data->mif.complete);

ret = request_irq(alg_data->irq, i2c_pnx_interrupt,
ret = request_irq(i2c_pnx->irq, i2c_pnx_interrupt,
0, pdev->name, i2c_pnx->adapter);
if (ret)
goto out_clock;
Expand All @@ -662,21 +668,23 @@ static int __devinit i2c_pnx_probe(struct platform_device *pdev)
}

dev_dbg(&pdev->dev, "%s: Master at %#8x, irq %d.\n",
i2c_pnx->adapter->name, alg_data->base, alg_data->irq);
i2c_pnx->adapter->name, i2c_pnx->base, i2c_pnx->irq);

return 0;

out_irq:
free_irq(alg_data->irq, i2c_pnx->adapter);
free_irq(i2c_pnx->irq, i2c_pnx->adapter);
out_clock:
clk_disable(alg_data->clk);
out_unmap:
iounmap(alg_data->ioaddr);
out_release:
release_mem_region(alg_data->base, I2C_PNX_REGION_SIZE);
release_mem_region(i2c_pnx->base, I2C_PNX_REGION_SIZE);
out_clkget:
clk_put(alg_data->clk);
out_drvdata:
kfree(alg_data);
err_kzalloc:
platform_set_drvdata(pdev, NULL);
out:
return ret;
Expand All @@ -688,12 +696,13 @@ static int __devexit i2c_pnx_remove(struct platform_device *pdev)
struct i2c_adapter *adap = i2c_pnx->adapter;
struct i2c_pnx_algo_data *alg_data = adap->algo_data;

free_irq(alg_data->irq, i2c_pnx->adapter);
free_irq(i2c_pnx->irq, i2c_pnx->adapter);
i2c_del_adapter(adap);
clk_disable(alg_data->clk);
iounmap(alg_data->ioaddr);
release_mem_region(alg_data->base, I2C_PNX_REGION_SIZE);
release_mem_region(i2c_pnx->base, I2C_PNX_REGION_SIZE);
clk_put(alg_data->clk);
kfree(alg_data);
platform_set_drvdata(pdev, NULL);

return 0;
Expand Down
4 changes: 2 additions & 2 deletions include/linux/i2c-pnx.h
Original file line number Diff line number Diff line change
Expand Up @@ -25,16 +25,16 @@ struct i2c_pnx_mif {
};

struct i2c_pnx_algo_data {
u32 base;
void __iomem *ioaddr;
int irq;
struct i2c_pnx_mif mif;
int last;
struct clk *clk;
};

struct i2c_pnx_data {
struct i2c_adapter *adapter;
u32 base;
int irq;
};

#endif /* __I2C_PNX_H__ */

0 comments on commit 44c5d73

Please sign in to comment.