i2c: thunderx: ACPI support for clock settings
Add support for reading the system clock and the TWSI clock frequency from ACPI DSDT. TWSI clock was already covered by using device_property_read(). Signed-off-by: Jan Glauber <jglauber@cavium.com> Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
This commit is contained in:
parent
4165bd4b91
commit
346e400cfc
@ -85,16 +85,22 @@ static void thunder_i2c_clock_enable(struct device *dev, struct octeon_i2c *i2c)
|
|||||||
{
|
{
|
||||||
int ret;
|
int ret;
|
||||||
|
|
||||||
i2c->clk = clk_get(dev, NULL);
|
if (acpi_disabled) {
|
||||||
if (IS_ERR(i2c->clk)) {
|
/* DT */
|
||||||
i2c->clk = NULL;
|
i2c->clk = clk_get(dev, NULL);
|
||||||
goto skip;
|
if (IS_ERR(i2c->clk)) {
|
||||||
}
|
i2c->clk = NULL;
|
||||||
|
goto skip;
|
||||||
|
}
|
||||||
|
|
||||||
ret = clk_prepare_enable(i2c->clk);
|
ret = clk_prepare_enable(i2c->clk);
|
||||||
if (ret)
|
if (ret)
|
||||||
goto skip;
|
goto skip;
|
||||||
i2c->sys_freq = clk_get_rate(i2c->clk);
|
i2c->sys_freq = clk_get_rate(i2c->clk);
|
||||||
|
} else {
|
||||||
|
/* ACPI */
|
||||||
|
device_property_read_u32(dev, "sclk", &i2c->sys_freq);
|
||||||
|
}
|
||||||
|
|
||||||
skip:
|
skip:
|
||||||
if (!i2c->sys_freq)
|
if (!i2c->sys_freq)
|
||||||
|
Loading…
x
Reference in New Issue
Block a user