/kernel/linux/linux-5.10/drivers/ide/ |
H A D | ide-dma-sff.c | 125 u32 cur_addr, cur_len, xcount, bcount; in ide_build_dmatable() local 144 xcount = bcount & 0xffff; in ide_build_dmatable() 146 xcount = ((xcount >> 2) - 1) << 16; in ide_build_dmatable() 147 else if (xcount == 0x0000) { in ide_build_dmatable() 152 xcount = 0x8000; in ide_build_dmatable() 154 *table++ = cpu_to_le32(xcount); in ide_build_dmatable()
|
/kernel/linux/linux-5.10/sound/soc/intel/atom/ |
H A D | sst-atom-controls.h | 794 #define SST_ALGO_CTL_VALUE(xcount, xtype, xpipe, xmod, xtask, xcmd) \ 796 .max = xcount + sizeof(u16), .type = xtype, .module_id = xmod, \ 800 #define SST_ALGO_KCONTROL(xname, xcount, xmod, xpipe, \ 806 SST_ALGO_CTL_VALUE(xcount, xtype, xpipe, \ 810 #define SST_ALGO_KCONTROL_BYTES(xpname, xmname, xcount, xmod, \ 813 xcount, xmod, xpipe, xtask, xcmd, SST_ALGO_PARAMS, \ 823 #define SST_ALGO_BYPASS_PARAMS(xpname, xmname, xcount, xmod, xpipe, \ 826 SST_ALGO_KCONTROL_BYTES(xpname, xmname, xcount, xmod, xpipe, xinstance, xtask, xcmd) 828 #define SST_COMBO_ALGO_KCONTROL_BYTES(xpname, xmname, xsubmod, xcount, xmod, \ 832 xcount, xmo [all...] |
/kernel/linux/linux-6.6/sound/soc/intel/atom/ |
H A D | sst-atom-controls.h | 794 #define SST_ALGO_CTL_VALUE(xcount, xtype, xpipe, xmod, xtask, xcmd) \ 796 .max = xcount + sizeof(u16), .type = xtype, .module_id = xmod, \ 800 #define SST_ALGO_KCONTROL(xname, xcount, xmod, xpipe, \ 806 SST_ALGO_CTL_VALUE(xcount, xtype, xpipe, \ 810 #define SST_ALGO_KCONTROL_BYTES(xpname, xmname, xcount, xmod, \ 813 xcount, xmod, xpipe, xtask, xcmd, SST_ALGO_PARAMS, \ 823 #define SST_ALGO_BYPASS_PARAMS(xpname, xmname, xcount, xmod, xpipe, \ 826 SST_ALGO_KCONTROL_BYTES(xpname, xmname, xcount, xmod, xpipe, xinstance, xtask, xcmd) 828 #define SST_COMBO_ALGO_KCONTROL_BYTES(xpname, xmname, xsubmod, xcount, xmod, \ 832 xcount, xmo [all...] |
/kernel/linux/linux-6.6/sound/soc/codecs/ |
H A D | rt715-sdca.c | 417 #define RT715_SDCA_PR_VALUE(xreg_base, xcount, xmax, xshift, xinvert) \ 419 {.reg_base = xreg_base, .count = xcount, .max = xmax, \ 422 #define RT715_SDCA_FU_CTRL(xname, reg_base, xshift, xmax, xinvert, xcount) \ 427 .private_value = RT715_SDCA_PR_VALUE(reg_base, xcount, xmax, \ 439 xhandler_put, tlv_array, xcount, xmax) \ 446 .private_value = RT715_SDCA_PR_VALUE(reg_base, xcount, xmax, 0, 0) } 449 xhandler_put, tlv_array, xcount, xmax) \ 456 .private_value = RT715_SDCA_PR_VALUE(reg_base, xcount, xmax, 0, 0) }
|
H A D | rt712-sdca-dmic.c | 396 #define RT712_SDCA_PR_VALUE(xreg_base, xcount, xmax, xinvert) \ 398 {.reg_base = xreg_base, .count = xcount, .max = xmax, \ 401 #define RT712_SDCA_FU_CTRL(xname, reg_base, xmax, xinvert, xcount) \ 406 .private_value = RT712_SDCA_PR_VALUE(reg_base, xcount, xmax, xinvert)} 409 xhandler_put, xcount, xmax, tlv_array) \ 416 .private_value = RT712_SDCA_PR_VALUE(reg_base, xcount, xmax, 0) }
|
H A D | rt722-sdca.c | 672 #define RT722_SDCA_PR_VALUE(xreg_base, xcount, xmax, xinvert) \ 674 {.reg_base = xreg_base, .count = xcount, .max = xmax, \ 677 #define RT722_SDCA_FU_CTRL(xname, reg_base, xmax, xinvert, xcount) \ 682 .private_value = RT722_SDCA_PR_VALUE(reg_base, xcount, xmax, xinvert)} 685 xhandler_put, xcount, xmax, tlv_array) \ 692 .private_value = RT722_SDCA_PR_VALUE(reg_base, xcount, xmax, 0) }
|
H A D | tscs42xx.c | 616 #define COEFF_RAM_CTL(xname, xcount, xaddr) \ 622 .bytes_ext = {.max = xcount, }, \
|
H A D | ab8500-codec.c | 63 #define AB8500_FILTER_CONTROL(xname, xcount, xmin, xmax) \ 68 {.count = xcount, .min = xmin, .max = xmax} }
|
H A D | tscs454.c | 1523 #define COEFF_RAM_CTL(xname, xcount, xaddr) \ 1529 .bytes_ext = {.max = xcount, }, \
|
/kernel/linux/linux-5.10/drivers/net/ethernet/apple/ |
H A D | mace.c | 665 int xcount, dstat; in mace_interrupt() local 696 * xcount is the number of complete frames which have been in mace_interrupt() 699 xcount = (in_8(&mb->fifofc) >> XMTFC_SH) & XMTFC_MASK; in mace_interrupt() 700 if (xcount == 0 || (dstat & DEAD)) { in mace_interrupt() 717 fs, xcount, dstat); in mace_interrupt() 726 if ((fs & (UFLO|LCOL|LCAR|RTRY)) || (dstat & DEAD) || xcount == 0) { in mace_interrupt() 754 fs, xcount, dstat); in mace_interrupt() 774 mace_last_xcount = xcount; in mace_interrupt()
|
/kernel/linux/linux-6.6/drivers/net/ethernet/apple/ |
H A D | mace.c | 670 int xcount, dstat; in mace_interrupt() local 701 * xcount is the number of complete frames which have been in mace_interrupt() 704 xcount = (in_8(&mb->fifofc) >> XMTFC_SH) & XMTFC_MASK; in mace_interrupt() 705 if (xcount == 0 || (dstat & DEAD)) { in mace_interrupt() 722 fs, xcount, dstat); in mace_interrupt() 731 if ((fs & (UFLO|LCOL|LCAR|RTRY)) || (dstat & DEAD) || xcount == 0) { in mace_interrupt() 759 fs, xcount, dstat); in mace_interrupt() 779 mace_last_xcount = xcount; in mace_interrupt()
|
/kernel/linux/linux-5.10/include/sound/ |
H A D | soc.h | 320 #define SND_SOC_BYTES_EXT(xname, xcount, xhandler_get, xhandler_put) \ 325 {.max = xcount} } 326 #define SND_SOC_BYTES_TLV(xname, xcount, xhandler_get, xhandler_put) \ 333 {.max = xcount, .get = xhandler_get, .put = xhandler_put, } }
|
/kernel/linux/linux-6.6/include/sound/ |
H A D | soc.h | 351 #define SND_SOC_BYTES_EXT(xname, xcount, xhandler_get, xhandler_put) \ 356 {.max = xcount} } 357 #define SND_SOC_BYTES_TLV(xname, xcount, xhandler_get, xhandler_put) \ 364 {.max = xcount, .get = xhandler_get, .put = xhandler_put, } }
|
/kernel/linux/linux-5.10/sound/soc/codecs/ |
H A D | tscs42xx.c | 616 #define COEFF_RAM_CTL(xname, xcount, xaddr) \ 622 .bytes_ext = {.max = xcount, }, \
|
H A D | ab8500-codec.c | 65 #define AB8500_FILTER_CONTROL(xname, xcount, xmin, xmax) \ 70 {.count = xcount, .min = xmin, .max = xmax} }
|
H A D | tscs454.c | 1518 #define COEFF_RAM_CTL(xname, xcount, xaddr) \ 1524 .bytes_ext = {.max = xcount, }, \
|