lkml.org 
[lkml]   [2023]   [Aug]   [17]   [last100]   RSS Feed
Views: [wrap][no wrap]   [headers]  [forward] 
 
Messages in this thread
Patch in this message
/
From
Subject[PATCH 1/8] i2c: sprd: Add configurations that support 1Mhz and 3.4Mhz frequencies
Date
This patch adds I2C controller driver support for 1Mhz and 3.4Mhz
frequency configurations.

Signed-off-by: Huangzheng Lai <Huangzheng.Lai@unisoc.com>
---
drivers/i2c/busses/i2c-sprd.c | 10 ++++++++--
1 file changed, 8 insertions(+), 2 deletions(-)

diff --git a/drivers/i2c/busses/i2c-sprd.c b/drivers/i2c/busses/i2c-sprd.c
index ffc54fbf814d..acc2a4d4eeae 100644
--- a/drivers/i2c/busses/i2c-sprd.c
+++ b/drivers/i2c/busses/i2c-sprd.c
@@ -347,6 +347,10 @@ static void sprd_i2c_set_clk(struct sprd_i2c *i2c_dev, u32 freq)
writel((6 * apb_clk) / 10000000, i2c_dev->base + ADDR_STA0_DVD);
else if (freq == I2C_MAX_STANDARD_MODE_FREQ)
writel((4 * apb_clk) / 1000000, i2c_dev->base + ADDR_STA0_DVD);
+ else if (freq == I2C_MAX_FAST_MODE_PLUS_FREQ)
+ writel((8 * apb_clk) / 10000000, i2c_dev->base + ADDR_STA0_DVD);
+ else if (freq == I2C_MAX_HIGH_SPEED_MODE_FREQ)
+ writel((8 * apb_clk) / 10000000, i2c_dev->base + ADDR_STA0_DVD);
}

static void sprd_i2c_enable(struct sprd_i2c *i2c_dev)
@@ -519,9 +523,11 @@ static int sprd_i2c_probe(struct platform_device *pdev)
if (!of_property_read_u32(dev->of_node, "clock-frequency", &prop))
i2c_dev->bus_freq = prop;

- /* We only support 100k and 400k now, otherwise will return error. */
+ /* We only support 100k\400k\1m\3.4m now, otherwise will return error. */
if (i2c_dev->bus_freq != I2C_MAX_STANDARD_MODE_FREQ &&
- i2c_dev->bus_freq != I2C_MAX_FAST_MODE_FREQ)
+ i2c_dev->bus_freq != I2C_MAX_FAST_MODE_FREQ &&
+ i2c_dev->bus_freq != I2C_MAX_FAST_MODE_PLUS_FREQ &&
+ i2c_dev->bus_freq != I2C_MAX_HIGH_SPEED_MODE_FREQ)
return -EINVAL;

ret = sprd_i2c_clk_init(i2c_dev);
--
2.17.1
\
 
 \ /
  Last update: 2023-08-17 11:48    [W:0.163 / U:0.872 seconds]
©2003-2020 Jasper Spaans|hosted at Digital Ocean and TransIP|Read the blog|Advertise on this site