Home | History | Annotate | Download | only in i2c

Lines Matching refs:fdr

58  * Map I2C frequency dividers to FDR and DFSR values
62 * programmed into the Frequency Divider Ratio (FDR) and Digital Filter
69 * FDR/DFSR values as the second-to-last entry. This guarantees that any
79 * ColdFire I2C frequency dividers for FDR values are different from
86 u8 fdr;
125 * We want to choose an FDR/DFSR that generates an I2C bus speed that
131 u8 dfsr, fdr = 0x31; /* Default if no FDR found */
143 fdr = CONFIG_FSL_I2C_CUSTOM_FDR;
161 fdr = bin_gb | bin_ga;
164 debug("FDR: 0x%.2x, ", fdr);
181 debug("FDR: 0x%.2x, speed: %d\n", fdr, speed);
184 writeb(fdr, &base->fdr); /* set bus speed */
190 u8 fdr;
192 fdr = fsl_i2c_speed_map[i].fdr;
194 writeb(fdr, &base->fdr); /* set bus speed */