Skip to content

Commit

Permalink
i2c: designware: add common functions for locking
Browse files Browse the repository at this point in the history
These are used in 2 places and will be needed in more.

Signed-off-by: Lucas De Marchi <lucas.demarchi@intel.com>
Acked-by: Jarkko Nikula <jarkko.nikula@linux.intel.com>
Tested-by: Christian Ruppert <christian.ruppert@alitech.com>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
  • Loading branch information
Lucas De Marchi authored and Wolfram Sang committed Aug 25, 2016
1 parent 2702ea7 commit 8c5660b
Showing 1 changed file with 32 additions and 20 deletions.
52 changes: 32 additions & 20 deletions drivers/i2c/busses/i2c-designware-core.c
Original file line number Diff line number Diff line change
Expand Up @@ -292,6 +292,28 @@ static unsigned long i2c_dw_clk_rate(struct dw_i2c_dev *dev)
return dev->get_clk_rate_khz(dev);
}

static int i2c_dw_acquire_lock(struct dw_i2c_dev *dev)
{
int ret;

if (!dev->acquire_lock)
return 0;

ret = dev->acquire_lock(dev);
if (!ret)
return 0;

dev_err(dev->dev, "couldn't acquire bus ownership\n");

return ret;
}

static void i2c_dw_release_lock(struct dw_i2c_dev *dev)
{
if (dev->release_lock)
dev->release_lock(dev);
}

/**
* i2c_dw_init() - initialize the designware i2c master hardware
* @dev: device private data
Expand All @@ -307,13 +329,9 @@ int i2c_dw_init(struct dw_i2c_dev *dev)
u32 sda_falling_time, scl_falling_time;
int ret;

if (dev->acquire_lock) {
ret = dev->acquire_lock(dev);
if (ret) {
dev_err(dev->dev, "couldn't acquire bus ownership\n");
return ret;
}
}
ret = i2c_dw_acquire_lock(dev);
if (ret)
return ret;

reg = dw_readl(dev, DW_IC_COMP_TYPE);
if (reg == ___constant_swab32(DW_IC_COMP_TYPE_VALUE)) {
Expand All @@ -325,8 +343,7 @@ int i2c_dw_init(struct dw_i2c_dev *dev)
} else if (reg != DW_IC_COMP_TYPE_VALUE) {
dev_err(dev->dev, "Unknown Synopsys component type: "
"0x%08x\n", reg);
if (dev->release_lock)
dev->release_lock(dev);
i2c_dw_release_lock(dev);
return -ENODEV;
}

Expand Down Expand Up @@ -415,8 +432,8 @@ int i2c_dw_init(struct dw_i2c_dev *dev)
/* configure the i2c master */
dw_writel(dev, dev->master_cfg , DW_IC_CON);

if (dev->release_lock)
dev->release_lock(dev);
i2c_dw_release_lock(dev);

return 0;
}
EXPORT_SYMBOL_GPL(i2c_dw_init);
Expand Down Expand Up @@ -679,13 +696,9 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
dev->abort_source = 0;
dev->rx_outstanding = 0;

if (dev->acquire_lock) {
ret = dev->acquire_lock(dev);
if (ret) {
dev_err(dev->dev, "couldn't acquire bus ownership\n");
goto done_nolock;
}
}
ret = i2c_dw_acquire_lock(dev);
if (ret)
goto done_nolock;

ret = i2c_dw_wait_bus_not_busy(dev);
if (ret < 0)
Expand Down Expand Up @@ -732,8 +745,7 @@ i2c_dw_xfer(struct i2c_adapter *adap, struct i2c_msg msgs[], int num)
ret = -EIO;

done:
if (dev->release_lock)
dev->release_lock(dev);
i2c_dw_release_lock(dev);

done_nolock:
pm_runtime_mark_last_busy(dev->dev);
Expand Down

0 comments on commit 8c5660b

Please sign in to comment.