• Home
  • Raw
  • Download

Lines Matching +full:64 +full:fs

104 #define SIMDR2_WDLEN1(i)	(((i) - 1) << 16) /* Word Count (1-64/256 (SH, A1))) */
140 #define SIFCTR_TFWM_64 (0 << 29) /* Transfer Request when 64 empty stages */
157 #define SIFCTR_RFWM_64 (5 << 13) /* Transfer Request when 64 valid stages */
411 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_8() argument
417 sh_msiof_write(p, SITFDR, buf_8[k] << fs); in sh_msiof_spi_write_fifo_8()
421 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_16() argument
427 sh_msiof_write(p, SITFDR, buf_16[k] << fs); in sh_msiof_spi_write_fifo_16()
431 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_16u() argument
437 sh_msiof_write(p, SITFDR, get_unaligned(&buf_16[k]) << fs); in sh_msiof_spi_write_fifo_16u()
441 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_32() argument
447 sh_msiof_write(p, SITFDR, buf_32[k] << fs); in sh_msiof_spi_write_fifo_32()
451 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_32u() argument
457 sh_msiof_write(p, SITFDR, get_unaligned(&buf_32[k]) << fs); in sh_msiof_spi_write_fifo_32u()
461 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_s32() argument
467 sh_msiof_write(p, SITFDR, swab32(buf_32[k] << fs)); in sh_msiof_spi_write_fifo_s32()
471 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_s32u() argument
477 sh_msiof_write(p, SITFDR, swab32(get_unaligned(&buf_32[k]) << fs)); in sh_msiof_spi_write_fifo_s32u()
481 void *rx_buf, int words, int fs) in sh_msiof_spi_read_fifo_8() argument
487 buf_8[k] = sh_msiof_read(p, SIRFDR) >> fs; in sh_msiof_spi_read_fifo_8()
491 void *rx_buf, int words, int fs) in sh_msiof_spi_read_fifo_16() argument
497 buf_16[k] = sh_msiof_read(p, SIRFDR) >> fs; in sh_msiof_spi_read_fifo_16()
501 void *rx_buf, int words, int fs) in sh_msiof_spi_read_fifo_16u() argument
507 put_unaligned(sh_msiof_read(p, SIRFDR) >> fs, &buf_16[k]); in sh_msiof_spi_read_fifo_16u()
511 void *rx_buf, int words, int fs) in sh_msiof_spi_read_fifo_32() argument
517 buf_32[k] = sh_msiof_read(p, SIRFDR) >> fs; in sh_msiof_spi_read_fifo_32()
521 void *rx_buf, int words, int fs) in sh_msiof_spi_read_fifo_32u() argument
527 put_unaligned(sh_msiof_read(p, SIRFDR) >> fs, &buf_32[k]); in sh_msiof_spi_read_fifo_32u()
531 void *rx_buf, int words, int fs) in sh_msiof_spi_read_fifo_s32() argument
537 buf_32[k] = swab32(sh_msiof_read(p, SIRFDR) >> fs); in sh_msiof_spi_read_fifo_s32()
541 void *rx_buf, int words, int fs) in sh_msiof_spi_read_fifo_s32u() argument
547 put_unaligned(swab32(sh_msiof_read(p, SIRFDR) >> fs), &buf_32[k]); in sh_msiof_spi_read_fifo_s32u()
1051 .tx_fifo_size = 64,
1052 .rx_fifo_size = 64,
1060 .tx_fifo_size = 64,
1061 .rx_fifo_size = 64,
1069 .tx_fifo_size = 64,
1070 .rx_fifo_size = 64,
1078 .tx_fifo_size = 64,
1079 .rx_fifo_size = 64,