]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
i2c: add support for filters optional properties
authorEugen Hristev <eugen.hristev@microchip.com>
Wed, 23 Oct 2019 12:40:14 +0000 (12:40 +0000)
committerWolfram Sang <wsa@the-dreams.de>
Thu, 24 Oct 2019 18:23:48 +0000 (20:23 +0200)
i2c-digital-filter-width-ns:
This optional timing property specifies the width of the spikes on the i2c
lines (in ns) that can be filtered out by built-in digital filters which are
embedded in some i2c controllers.
i2c-analog-filter-cutoff-frequency:
This optional timing property specifies the cutoff frequency of a low-pass
analog filter built-in i2c controllers. This low pass filter is used to filter
out high frequency noise on the i2c lines. Specified in Hz.
Include these properties in the timings structure and read them as integers.

Signed-off-by: Eugen Hristev <eugen.hristev@microchip.com>
Acked-by: Ludovic Desroches <ludovic.desroches@microchip.com>
Reviewed-by: Peter Rosin <peda@axentia.se>
Signed-off-by: Wolfram Sang <wsa@the-dreams.de>
drivers/i2c/i2c-core-base.c
include/linux/i2c.h

index 5f6a4985f2bc8f3398bd0dd353e79c213ea50ae9..6a5183cffdfc3e82800cf51332dff875287474c6 100644 (file)
@@ -1656,6 +1656,12 @@ void i2c_parse_fw_timings(struct device *dev, struct i2c_timings *t, bool use_de
                t->sda_fall_ns = t->scl_fall_ns;
 
        device_property_read_u32(dev, "i2c-sda-hold-time-ns", &t->sda_hold_ns);
+
+       device_property_read_u32(dev, "i2c-digital-filter-width-ns",
+                                &t->digital_filter_width_ns);
+
+       device_property_read_u32(dev, "i2c-analog-filter-cutoff-frequency",
+                                &t->analog_filter_cutoff_freq_hz);
 }
 EXPORT_SYMBOL_GPL(i2c_parse_fw_timings);
 
index 1361637c369dd06ed7ed869078450ca6c9be7444..aaf57d9b41dbbf00811a805d01a25ccfb431bd6b 100644 (file)
@@ -575,6 +575,10 @@ struct i2c_lock_operations {
  * @scl_int_delay_ns: time IP core additionally needs to setup SCL in ns
  * @sda_fall_ns: time SDA signal takes to fall in ns; t(f) in the I2C specification
  * @sda_hold_ns: time IP core additionally needs to hold SDA in ns
+ * @digital_filter_width_ns: width in ns of spikes on i2c lines that the IP core
+ *     digital filter can filter out
+ * @analog_filter_cutoff_freq_hz: threshold frequency for the low pass IP core
+ *     analog filter
  */
 struct i2c_timings {
        u32 bus_freq_hz;
@@ -583,6 +587,8 @@ struct i2c_timings {
        u32 scl_int_delay_ns;
        u32 sda_fall_ns;
        u32 sda_hold_ns;
+       u32 digital_filter_width_ns;
+       u32 analog_filter_cutoff_freq_hz;
 };
 
 /**