Home
last modified time | relevance | path

Searched full:dtdl (Results 1 – 3 of 3) sorted by relevance

/linux/drivers/spi/
H A Dspi-sh-msiof.c179 * DTDL/SYNCDL bit : p->info->dtdl or p->info->syncdl in sh_msiof_get_delay_bit()
200 /* check if DTDL and SYNCDL is allowed value */ in sh_msiof_spi_get_dtdl_and_syncdl()
201 if (p->info->dtdl > 200 || p->info->syncdl > 300) { in sh_msiof_spi_get_dtdl_and_syncdl()
202 dev_warn(&p->pdev->dev, "DTDL or SYNCDL is too large\n"); in sh_msiof_spi_get_dtdl_and_syncdl()
206 /* check if the sum of DTDL and SYNCDL becomes an integer value */ in sh_msiof_spi_get_dtdl_and_syncdl()
207 if ((p->info->dtdl + p->info->syncdl) % 100) { in sh_msiof_spi_get_dtdl_and_syncdl()
208 dev_warn(&p->pdev->dev, "the sum of DTDL/SYNCDL is not good\n"); in sh_msiof_spi_get_dtdl_and_syncdl()
212 val = FIELD_PREP(SIMDR1_DTDL, sh_msiof_get_delay_bit(p->info->dtdl)) | in sh_msiof_spi_get_dtdl_and_syncdl()
1040 of_property_read_u32(np, "renesas,dtdl", &info->dtdl); in sh_msiof_spi_parse_dt()
1215 info->dtdl = 200; in sh_msiof_spi_probe()
/linux/Documentation/devicetree/bindings/spi/
H A Drenesas,sh-msiof.yaml111 renesas,dtdl:
/linux/include/linux/spi/
H A Dsh_msiof.h142 u32 dtdl; member