i2c-designware: Move retriveving the clock speed out of core code.
authorDirk Brandewie <dirk.brandewie@gmail.com>
Thu, 6 Oct 2011 18:26:30 +0000 (11:26 -0700)
committerBen Dooks <ben-linux@fluff.org>
Sat, 29 Oct 2011 10:03:49 +0000 (11:03 +0100)
The clock frequecy supplied to the IP core is specific to a single
instance of the driver.  This patch makes it possible to have multiple
Designware I2C cores in the system possibly running at different core
frequencies.

Signed-off-by: Dirk Brandewie <dirk.brandewie@gmail.com>
Signed-off-by: Ben Dooks <ben-linux@fluff.org>
drivers/i2c/busses/i2c-designware-core.c
drivers/i2c/busses/i2c-designware-core.h
drivers/i2c/busses/i2c-designware-platdrv.c

index 38d5a6b22a8483d1c673a993ea4b46df51d205f5..cd52f17028cd12f19b2de187368c735100926e37 100644 (file)
@@ -142,10 +142,12 @@ static u32 i2c_dw_scl_lcnt(u32 ic_clk, u32 tLOW, u32 tf, int offset)
  */
 int i2c_dw_init(struct dw_i2c_dev *dev)
 {
-       u32 input_clock_khz = clk_get_rate(dev->clk) / 1000;
+       u32 input_clock_khz;
        u32 ic_con, hcnt, lcnt;
        u32 reg;
 
+       input_clock_khz = dev->get_clk_rate_khz(dev);
+
        /* Configure register endianess access */
        reg = dw_readl(dev, DW_IC_COMP_TYPE);
        if (reg == ___constant_swab32(DW_IC_COMP_TYPE_VALUE)) {
index 4e37031c6b6868f7e26d4a5910eed38efdd81c0f..43de340af57feda4697b7e9ddca03da92b1f3e6f 100644 (file)
@@ -166,6 +166,7 @@ struct dw_i2c_dev {
        struct completion       cmd_complete;
        struct mutex            lock;
        struct clk              *clk;
+       u32                     (*get_clk_rate_khz) (struct dw_i2c_dev *dev);
        int                     cmd_err;
        struct i2c_msg          *msgs;
        int                     msgs_num;
index 9d10ae8c695776df9276aa06353880039ecd0fa0..08783a6ff1a2dcc1efea2c4d40762acf46727225 100644 (file)
@@ -43,6 +43,10 @@ static struct i2c_algorithm i2c_dw_algo = {
        .master_xfer    = i2c_dw_xfer,
        .functionality  = i2c_dw_func,
 };
+static u32 i2c_dw_get_clk_rate_khz(struct dw_i2c_dev *dev)
+{
+       return clk_get_rate(dev->clk)/1000;
+}
 
 static int __devinit dw_i2c_probe(struct platform_device *pdev)
 {
@@ -84,6 +88,8 @@ static int __devinit dw_i2c_probe(struct platform_device *pdev)
        platform_set_drvdata(pdev, dev);
 
        dev->clk = clk_get(&pdev->dev, NULL);
+       dev->get_clk_rate_khz = i2c_dw_get_clk_rate_khz;
+
        if (IS_ERR(dev->clk)) {
                r = -ENODEV;
                goto err_free_mem;