Lines Matching +full:1 +full:ms
16 #define DMIC_UNMUTE_RAMP_US 1000 /* 1 ms (in microseconds) */
17 #define DMIC_UNMUTE_CIC 1 /* Unmute CIC at 1 ms */
18 #define DMIC_UNMUTE_FIR 2 /* Unmute FIR at 2 ms */
44 #define DCCOMP_TC1 1
53 #define DMIC_HW_FIR_COEF_MAX ((1 << (DMIC_HW_BITS_FIR_COEF - 1)) - 1)
54 #define DMIC_HW_FIR_COEF_Q (DMIC_HW_BITS_FIR_COEF - 1)
60 #define DMIC_HW_FIR_GAIN_MAX ((1 << (DMIC_HW_BITS_FIR_GAIN - 1)) - 1)
65 /* Hardcoded log ramp parameters. The default ramp is 100 ms for 48 kHz
66 * and 200 ms for 16 kHz. The first parameter is the initial gain in
68 * The rate dependent ramp duration is provided by 1st order equation
70 * E.g. 100 ms @ 48 kHz, 200 ms @ 16 kHz
80 #define LOGRAMP_TIME_OFFS_Q0 250 /* offs = Offset for line slope in ms */
83 #define LOGRAMP_TIME_MIN_MS 10 /* Min. 10 ms */
84 #define LOGRAMP_TIME_MAX_MS 1000 /* Max. 1s */
110 ((((px) * (py) >> ((qx)+(qy)-(qp)-1)) + 1) >> 1)
115 ((((x) >> ((src_q) - (dst_q) - 1)) + 1) >> 1)
117 /* Alternative version since compiler does not allow (x >> -1) */
125 ((int32_t)(((const double)f) * ((int64_t)1 << (const int)qy) + 0.5))
134 #define DMA_HANDSHAKE_DMIC_CH1 1
166 uint16_t enable[CONFIG_DAI_DMIC_HW_CONTROLLERS];/* Mic 0 and 1 enable bits array for PDMx */
200 return sat_int32(((((int64_t)x * y) >> (shift_bits - 1)) + 1) >> 1); in q_multsr_sat_32x32()