Home
last modified time | relevance | path

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

/linux-6.3-rc2/drivers/iio/imu/inv_mpu6050/
A Dinv_mpu_magn.c234 int inv_mpu_magn_set_rate(const struct inv_mpu6050_state *st, int fifo_rate) in inv_mpu_magn_set_rate() argument
246 if (fifo_rate > INV_MPU_MAGN_FREQ_HZ_MAX) in inv_mpu_magn_set_rate()
247 d = fifo_rate / INV_MPU_MAGN_FREQ_HZ_MAX - 1; in inv_mpu_magn_set_rate()
A Dinv_mpu_core.c929 int fifo_rate; in inv_mpu6050_fifo_rate_store() local
936 if (kstrtoint(buf, 10, &fifo_rate)) in inv_mpu6050_fifo_rate_store()
938 if (fifo_rate < INV_MPU6050_MIN_FIFO_RATE || in inv_mpu6050_fifo_rate_store()
939 fifo_rate > INV_MPU6050_MAX_FIFO_RATE) in inv_mpu6050_fifo_rate_store()
943 d = INV_MPU6050_FIFO_RATE_TO_DIVIDER(fifo_rate); in inv_mpu6050_fifo_rate_store()
945 fifo_rate = INV_MPU6050_DIVIDER_TO_FIFO_RATE(d); in inv_mpu6050_fifo_rate_store()
961 result = inv_mpu6050_set_lpf(st, fifo_rate); in inv_mpu6050_fifo_rate_store()
966 result = inv_mpu_magn_set_rate(st, fifo_rate); in inv_mpu6050_fifo_rate_store()
989 unsigned fifo_rate; in inv_fifo_rate_show() local
992 fifo_rate = INV_MPU6050_DIVIDER_TO_FIFO_RATE(st->chip_config.divider); in inv_fifo_rate_show()
[all …]
A Dinv_mpu_magn.h33 int inv_mpu_magn_set_rate(const struct inv_mpu6050_state *st, int fifo_rate);
A Dinv_mpu_iio.h382 #define INV_MPU6050_FIFO_RATE_TO_DIVIDER(fifo_rate) \ argument
383 ((INV_MPU6050_INTERNAL_FREQ_HZ / (fifo_rate)) - 1)

Completed in 9 milliseconds