### Describe problem solved by the proposed feature 就像UART一样,在应用层通过name找到设备之后,可以通过config来设置uart的属性; 目前的drv_hard_i2c中缺少这个接口,所以无法从上层来设置I2c的速度,而原始速度只有100khz; ### Describe your preferred solution 所以希望在drv_hard_i2c中补充这个config接口,因为内核的ops中就是有i2c_bus_control的接口的; ### Describe possible alternatives 如果直接修改drv_hard_i2c里面的参数,把100k改掉,这样的方式还是不够优雅;