Home
last modified time | relevance | path

Searched refs:tLOW (Results 1 – 4 of 4) sorted by relevance

/Linux-v5.4/drivers/i2c/busses/
Di2c-sh_mobile.c206 static u32 sh_mobile_i2c_iccl(unsigned long count_khz, u32 tLOW, u32 tf) in sh_mobile_i2c_iccl() argument
218 return (((count_khz * (tLOW + tf)) + 5000) / 10000); in sh_mobile_i2c_iccl()
269 u32 tHIGH, tLOW, tf; in sh_mobile_i2c_init() local
274 tLOW = 47; /* tLOW = 4.7 us */ in sh_mobile_i2c_init()
278 tLOW = 13; /* tLOW = 1.3 us */ in sh_mobile_i2c_init()
287 pd->iccl = sh_mobile_i2c_iccl(i2c_clk_khz, tLOW, tf); in sh_mobile_i2c_init()
Di2c-designware-common.c158 u32 i2c_dw_scl_lcnt(u32 ic_clk, u32 tLOW, u32 tf, int offset) in i2c_dw_scl_lcnt() argument
171 return ((ic_clk * (tLOW + tf) + 500000) / 1000000) - 1 + offset; in i2c_dw_scl_lcnt()
Di2c-designware-core.h292 u32 i2c_dw_scl_lcnt(u32 ic_clk, u32 tLOW, u32 tf, int offset);
/Linux-v5.4/Documentation/devicetree/bindings/i2c/
Di2c-designware.txt32 This value which is by default 300ns is used to compute the tLOW period.