/kernel/linux/linux-5.10/arch/arc/kernel/ |
H A D | disasm.c | 56 state->words[0] = (word1 << 16) | word0; in disasm_instr() 59 state->words[0] = word1; in disasm_instr() 65 state->words[1] = (word1 << 16) | word0; in disasm_instr() 72 fieldA = (IS_BIT(state->words[0], 16)) ? in disasm_instr() 73 FIELD_s25(state->words[0]) : in disasm_instr() 74 FIELD_s21(state->words[0]); in disasm_instr() 76 state->delay_slot = IS_BIT(state->words[0], 5); in disasm_instr() 82 if (IS_BIT(state->words[0], 16)) { in disasm_instr() 85 fieldA = (IS_BIT(state->words[0], 17)) ? in disasm_instr() 86 (FIELD_s25(state->words[ in disasm_instr() [all...] |
/kernel/linux/linux-6.6/arch/arc/kernel/ |
H A D | disasm.c | 56 state->words[0] = (word1 << 16) | word0; in disasm_instr() 59 state->words[0] = word1; in disasm_instr() 65 state->words[1] = (word1 << 16) | word0; in disasm_instr() 72 fieldA = (IS_BIT(state->words[0], 16)) ? in disasm_instr() 73 FIELD_s25(state->words[0]) : in disasm_instr() 74 FIELD_s21(state->words[0]); in disasm_instr() 76 state->delay_slot = IS_BIT(state->words[0], 5); in disasm_instr() 82 if (IS_BIT(state->words[0], 16)) { in disasm_instr() 85 fieldA = (IS_BIT(state->words[0], 17)) ? in disasm_instr() 86 (FIELD_s25(state->words[ in disasm_instr() [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/marvell/prestera/ |
H A D | prestera_dsa.c | 38 u32 words[4]; in prestera_dsa_parse() local 41 words[0] = ntohl(dsa_words[0]); in prestera_dsa_parse() 42 words[1] = ntohl(dsa_words[1]); in prestera_dsa_parse() 43 words[2] = ntohl(dsa_words[2]); in prestera_dsa_parse() 44 words[3] = ntohl(dsa_words[3]); in prestera_dsa_parse() 47 cmd = (enum prestera_dsa_cmd)FIELD_GET(PRESTERA_DSA_W0_CMD, words[0]); in prestera_dsa_parse() 53 if (FIELD_GET(PRESTERA_DSA_W0_EXT_BIT, words[0]) == 0) in prestera_dsa_parse() 55 if (FIELD_GET(PRESTERA_DSA_W1_EXT_BIT, words[1]) == 0) in prestera_dsa_parse() 57 if (FIELD_GET(PRESTERA_DSA_W2_EXT_BIT, words[2]) == 0) in prestera_dsa_parse() 60 field = FIELD_GET(PRESTERA_DSA_W3_VID, words[ in prestera_dsa_parse() 87 u32 words[4] = { 0 }; prestera_dsa_build() local [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/marvell/prestera/ |
H A D | prestera_dsa.c | 37 u32 words[4]; in prestera_dsa_parse() local 40 words[0] = ntohl(dsa_words[0]); in prestera_dsa_parse() 41 words[1] = ntohl(dsa_words[1]); in prestera_dsa_parse() 42 words[2] = ntohl(dsa_words[2]); in prestera_dsa_parse() 43 words[3] = ntohl(dsa_words[3]); in prestera_dsa_parse() 46 cmd = (enum prestera_dsa_cmd)FIELD_GET(PRESTERA_DSA_W0_CMD, words[0]); in prestera_dsa_parse() 52 if (FIELD_GET(PRESTERA_DSA_W0_EXT_BIT, words[0]) == 0) in prestera_dsa_parse() 54 if (FIELD_GET(PRESTERA_DSA_W1_EXT_BIT, words[1]) == 0) in prestera_dsa_parse() 56 if (FIELD_GET(PRESTERA_DSA_W2_EXT_BIT, words[2]) == 0) in prestera_dsa_parse() 59 field = FIELD_GET(PRESTERA_DSA_W3_VID, words[ in prestera_dsa_parse() 84 u32 words[4] = { 0 }; prestera_dsa_build() local [all...] |
/kernel/linux/linux-6.6/scripts/ |
H A D | decode_stacktrace.sh | 252 local words 255 read -a words <<<"$1" 262 local last=$(( ${#words[@]} - 1 )) 264 for i in "${!words[@]}"; do 266 if [[ ${words[$i]} =~ \[\<([^]]+)\>\] ]]; then 267 unset words[$i] 271 if [[ ${words[$i]} == \[ && ${words[$i+1]} == *\] ]]; then 272 unset words[$i] 273 words[ [all...] |
/kernel/linux/linux-5.10/scripts/ |
H A D | decode_stacktrace.sh | 200 local words 203 read -a words <<<"$1" 210 local last=$(( ${#words[@]} - 1 )) 212 for i in "${!words[@]}"; do 214 if [[ ${words[$i]} =~ \[\<([^]]+)\>\] ]]; then 215 unset words[$i] 219 if [[ ${words[$i]} == \[ && ${words[$i+1]} == *\] ]]; then 220 unset words[$i] 221 words[ [all...] |
/kernel/linux/linux-5.10/drivers/spi/ |
H A D | spi-sh-msiof.c | 391 u32 bits, u32 words) in sh_msiof_spi_set_mode_regs() 393 u32 dr2 = SIMDR2_BITLEN1(bits) | SIMDR2_WDLEN1(words); in sh_msiof_spi_set_mode_regs() 411 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_8() 416 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_8() 421 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_16() 426 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_16() 431 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_16u() 436 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_16u() 441 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_32() 446 for (k = 0; k < words; in sh_msiof_spi_write_fifo_32() 389 sh_msiof_spi_set_mode_regs(struct sh_msiof_spi_priv *p, const void *tx_buf, void *rx_buf, u32 bits, u32 words) sh_msiof_spi_set_mode_regs() argument 410 sh_msiof_spi_write_fifo_8(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_8() argument 420 sh_msiof_spi_write_fifo_16(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_16() argument 430 sh_msiof_spi_write_fifo_16u(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_16u() argument 440 sh_msiof_spi_write_fifo_32(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_32() argument 450 sh_msiof_spi_write_fifo_32u(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_32u() argument 460 sh_msiof_spi_write_fifo_s32(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_s32() argument 470 sh_msiof_spi_write_fifo_s32u(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_s32u() argument 480 sh_msiof_spi_read_fifo_8(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_8() argument 490 sh_msiof_spi_read_fifo_16(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_16() argument 500 sh_msiof_spi_read_fifo_16u(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_16u() argument 510 sh_msiof_spi_read_fifo_32(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_32() argument 520 sh_msiof_spi_read_fifo_32u(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_32u() argument 530 sh_msiof_spi_read_fifo_s32(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_s32() argument 540 sh_msiof_spi_read_fifo_s32u(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_s32u() argument 670 sh_msiof_spi_txrx_once(struct sh_msiof_spi_priv *p, void (*tx_fifo)(struct sh_msiof_spi_priv *, const void *, int, int), void (*rx_fifo)(struct sh_msiof_spi_priv *, void *, int, int), const void *tx_buf, void *rx_buf, int words, int bits) sh_msiof_spi_txrx_once() argument 863 copy_bswap32(u32 *dst, const u32 *src, unsigned int words) copy_bswap32() argument 882 copy_wswap32(u32 *dst, const u32 *src, unsigned int words) copy_wswap32() argument 901 copy_plain32(u32 *dst, const u32 *src, unsigned int words) copy_plain32() argument 919 unsigned int words; sh_msiof_transfer_one() local [all...] |
/kernel/linux/linux-6.6/drivers/spi/ |
H A D | spi-sh-msiof.c | 394 u32 bits, u32 words) in sh_msiof_spi_set_mode_regs() 396 u32 dr2 = SIMDR2_BITLEN1(bits) | SIMDR2_WDLEN1(words); in sh_msiof_spi_set_mode_regs() 414 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_8() 419 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_8() 424 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_16() 429 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_16() 434 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_16u() 439 for (k = 0; k < words; k++) in sh_msiof_spi_write_fifo_16u() 444 const void *tx_buf, int words, int fs) in sh_msiof_spi_write_fifo_32() 449 for (k = 0; k < words; in sh_msiof_spi_write_fifo_32() 392 sh_msiof_spi_set_mode_regs(struct sh_msiof_spi_priv *p, const void *tx_buf, void *rx_buf, u32 bits, u32 words) sh_msiof_spi_set_mode_regs() argument 413 sh_msiof_spi_write_fifo_8(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_8() argument 423 sh_msiof_spi_write_fifo_16(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_16() argument 433 sh_msiof_spi_write_fifo_16u(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_16u() argument 443 sh_msiof_spi_write_fifo_32(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_32() argument 453 sh_msiof_spi_write_fifo_32u(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_32u() argument 463 sh_msiof_spi_write_fifo_s32(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_s32() argument 473 sh_msiof_spi_write_fifo_s32u(struct sh_msiof_spi_priv *p, const void *tx_buf, int words, int fs) sh_msiof_spi_write_fifo_s32u() argument 483 sh_msiof_spi_read_fifo_8(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_8() argument 493 sh_msiof_spi_read_fifo_16(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_16() argument 503 sh_msiof_spi_read_fifo_16u(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_16u() argument 513 sh_msiof_spi_read_fifo_32(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_32() argument 523 sh_msiof_spi_read_fifo_32u(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_32u() argument 533 sh_msiof_spi_read_fifo_s32(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_s32() argument 543 sh_msiof_spi_read_fifo_s32u(struct sh_msiof_spi_priv *p, void *rx_buf, int words, int fs) sh_msiof_spi_read_fifo_s32u() argument 673 sh_msiof_spi_txrx_once(struct sh_msiof_spi_priv *p, void (*tx_fifo)(struct sh_msiof_spi_priv *, const void *, int, int), void (*rx_fifo)(struct sh_msiof_spi_priv *, void *, int, int), const void *tx_buf, void *rx_buf, int words, int bits) sh_msiof_spi_txrx_once() argument 866 copy_bswap32(u32 *dst, const u32 *src, unsigned int words) copy_bswap32() argument 885 copy_wswap32(u32 *dst, const u32 *src, unsigned int words) copy_wswap32() argument 904 copy_plain32(u32 *dst, const u32 *src, unsigned int words) copy_plain32() argument 922 unsigned int words; sh_msiof_transfer_one() local [all...] |
/kernel/linux/linux-5.10/fs/ocfs2/cluster/ |
H A D | masklog.h | 113 unsigned long words[MLOG_MAX_BITS / BITS_PER_LONG]; member 121 ( (u32)(mask & 0xffffffff) & bits.words[0] || \ 122 ((u64)(mask) >> 32) & bits.words[1] ) 124 bits.words[0] |= (u32)(mask & 0xffffffff); \ 125 bits.words[1] |= (u64)(mask) >> 32; \ 128 bits.words[0] &= ~((u32)(mask & 0xffffffff)); \ 129 bits.words[1] &= ~((u64)(mask) >> 32); \ 140 #define __mlog_test_u64(mask, bits) ((mask) & bits.words[0]) 142 bits.words[0] |= (mask); \ 145 bits.words[ [all...] |
/kernel/linux/linux-6.6/fs/ocfs2/cluster/ |
H A D | masklog.h | 111 unsigned long words[MLOG_MAX_BITS / BITS_PER_LONG]; member 119 ( (u32)(mask & 0xffffffff) & bits.words[0] || \ 120 ((u64)(mask) >> 32) & bits.words[1] ) 122 bits.words[0] |= (u32)(mask & 0xffffffff); \ 123 bits.words[1] |= (u64)(mask) >> 32; \ 126 bits.words[0] &= ~((u32)(mask & 0xffffffff)); \ 127 bits.words[1] &= ~((u64)(mask) >> 32); \ 138 #define __mlog_test_u64(mask, bits) ((mask) & bits.words[0]) 140 bits.words[0] |= (mask); \ 143 bits.words[ [all...] |
/kernel/linux/linux-6.6/include/linux/ |
H A D | swab.h | 24 static inline void swab16_array(u16 *buf, unsigned int words) in swab16_array() argument 26 while (words--) { in swab16_array() 32 static inline void swab32_array(u32 *buf, unsigned int words) in swab32_array() argument 34 while (words--) { in swab32_array() 40 static inline void swab64_array(u64 *buf, unsigned int words) in swab64_array() argument 42 while (words--) { in swab64_array()
|
/kernel/linux/linux-5.10/drivers/video/fbdev/ |
H A D | c2p_planar.c | 21 * Perform a full C2P step on 32 8-bit pixels, stored in 8 32-bit words 92 u32 words[8]; in c2p_planar() member 112 c2p_32x8(d.words); in c2p_planar() 113 store_planar_masked(p, dst_nextplane, bpp, d.words, in c2p_planar() 117 /* Multiple destination words */ in c2p_planar() 125 c2p_32x8(d.words); in c2p_planar() 127 d.words, first); in c2p_planar() 135 c2p_32x8(d.words); in c2p_planar() 136 store_planar(p, dst_nextplane, bpp, d.words); in c2p_planar() 145 c2p_32x8(d.words); in c2p_planar() [all...] |
H A D | c2p_iplan2.c | 21 * Perform a full C2P step on 16 8-bit pixels, stored in 4 32-bit words 90 u32 words[4]; in c2p_iplan2() member 112 c2p_16x8(d.words); in c2p_iplan2() 113 store_iplan2_masked(p, bpp, d.words, first); in c2p_iplan2() 116 /* Multiple destination words */ in c2p_iplan2() 124 c2p_16x8(d.words); in c2p_iplan2() 125 store_iplan2_masked(p, bpp, d.words, first); in c2p_iplan2() 133 c2p_16x8(d.words); in c2p_iplan2() 134 store_iplan2(p, bpp, d.words); in c2p_iplan2() 143 c2p_16x8(d.words); in c2p_iplan2() [all...] |
/kernel/linux/linux-6.6/drivers/video/fbdev/ |
H A D | c2p_planar.c | 21 * Perform a full C2P step on 32 8-bit pixels, stored in 8 32-bit words 92 u32 words[8]; in c2p_planar() member 112 c2p_32x8(d.words); in c2p_planar() 113 store_planar_masked(p, dst_nextplane, bpp, d.words, in c2p_planar() 117 /* Multiple destination words */ in c2p_planar() 125 c2p_32x8(d.words); in c2p_planar() 127 d.words, first); in c2p_planar() 135 c2p_32x8(d.words); in c2p_planar() 136 store_planar(p, dst_nextplane, bpp, d.words); in c2p_planar() 145 c2p_32x8(d.words); in c2p_planar() [all...] |
H A D | c2p_iplan2.c | 21 * Perform a full C2P step on 16 8-bit pixels, stored in 4 32-bit words 90 u32 words[4]; in c2p_iplan2() member 112 c2p_16x8(d.words); in c2p_iplan2() 113 store_iplan2_masked(p, bpp, d.words, first); in c2p_iplan2() 116 /* Multiple destination words */ in c2p_iplan2() 124 c2p_16x8(d.words); in c2p_iplan2() 125 store_iplan2_masked(p, bpp, d.words, first); in c2p_iplan2() 133 c2p_16x8(d.words); in c2p_iplan2() 134 store_iplan2(p, bpp, d.words); in c2p_iplan2() 143 c2p_16x8(d.words); in c2p_iplan2() [all...] |
/kernel/linux/linux-5.10/tools/perf/ |
H A D | perf-completion.sh | 16 # re-assemble words to complete. 77 words) 78 words=("${words_[@]}") 132 if [[ ${words[i]} == $1 ]]; then 136 if [[ ${words[i]} == $cmd_ ]]; then 137 prev_skip_opts=${words[i]} 149 cmd=${words[0]} 268 cur=${words[CURRENT]} 269 prev=${words[CURRENT-1]} 293 local cur words cwor [all...] |
/kernel/linux/linux-6.6/tools/perf/ |
H A D | perf-completion.sh | 16 # re-assemble words to complete. 77 words) 78 words=("${words_[@]}") 132 if [[ ${words[i]} == $1 ]]; then 136 if [[ ${words[i]} == $cmd_ ]]; then 137 prev_skip_opts=${words[i]} 149 cmd=${words[0]} 268 cur=${words[CURRENT]} 269 prev=${words[CURRENT-1]} 293 local cur words cwor [all...] |
/kernel/linux/linux-5.10/drivers/ide/ |
H A D | ide-io-std.c | 171 unsigned int words = (len + 1) >> 1; in ide_input_data() local 183 words >>= 1; in ide_input_data() 185 __ide_mm_insl((void __iomem *)data_addr, buf, words); in ide_input_data() 187 insl(data_addr, buf, words); in ide_input_data() 196 words = 1; in ide_input_data() 200 __ide_mm_insw((void __iomem *)data_addr, buf, words); in ide_input_data() 202 insw(data_addr, buf, words); in ide_input_data() 215 unsigned int words = (len + 1) >> 1; in ide_output_data() local 227 words >>= 1; in ide_output_data() 229 __ide_mm_outsl((void __iomem *)data_addr, buf, words); in ide_output_data() [all...] |
/kernel/linux/linux-5.10/drivers/atm/ |
H A D | eni.c | 136 * xxPMOK operating on a circular buffer of "c" words 185 eni_dev->tx[i].send,eni_dev->tx[i].words*4); in dump() 191 ENI_VCC(eni_dev->rx_map[i])->words*4); in dump() 322 printk(KERN_ALERT " VCI %d, rxing %d, words %ld\n",vcc->vci, in rx_ident_err() 323 eni_vcc->rxing,eni_vcc->words); in rx_ident_err() 368 here = (eni_vcc->descr+skip) & (eni_vcc->words-1); in do_rx_dma() 373 here = (eni_vcc->descr+size+skip) & (eni_vcc->words-1); in do_rx_dma() 376 unsigned long words; in do_rx_dma() local 383 words = eff; in do_rx_dma() 388 if (init > words) ini in do_rx_dma() 931 u32 init,words; put_dma() local [all...] |
/kernel/linux/linux-6.6/drivers/atm/ |
H A D | eni.c | 136 * xxPMOK operating on a circular buffer of "c" words 185 eni_dev->tx[i].send,eni_dev->tx[i].words*4); in dump() 191 ENI_VCC(eni_dev->rx_map[i])->words*4); in dump() 322 printk(KERN_ALERT " VCI %d, rxing %d, words %ld\n",vcc->vci, in rx_ident_err() 323 eni_vcc->rxing,eni_vcc->words); in rx_ident_err() 368 here = (eni_vcc->descr+skip) & (eni_vcc->words-1); in do_rx_dma() 373 here = (eni_vcc->descr+size+skip) & (eni_vcc->words-1); in do_rx_dma() 376 unsigned long words; in do_rx_dma() local 383 words = eff; in do_rx_dma() 388 if (init > words) ini in do_rx_dma() 931 u32 init,words; put_dma() local [all...] |
/kernel/linux/linux-5.10/drivers/net/ethernet/intel/i40e/ |
H A D | i40e_nvm.c | 29 /* Switching to words (sr_size contains power of 2KB) */ in i40e_init_nvm() 211 * @module_pointer: module pointer location in words from the NVM beginning 212 * @offset: offset in words from module start 213 * @words: number of words to read 214 * @data: buffer with words to read to the Shadow RAM 217 * Reads a 16 bit words buffer to the Shadow RAM using the admin command. 221 u16 words, void *data, in i40e_read_nvm_aq() 235 if ((offset + words) > hw->nvm.sr_size) in i40e_read_nvm_aq() 238 (offset + words), h in i40e_read_nvm_aq() 219 i40e_read_nvm_aq(struct i40e_hw *hw, u8 module_pointer, u32 offset, u16 words, void *data, bool last_command) i40e_read_nvm_aq() argument 409 i40e_read_nvm_buffer_srctl(struct i40e_hw *hw, u16 offset, u16 *words, u16 *data) i40e_read_nvm_buffer_srctl() argument 440 i40e_read_nvm_buffer_aq(struct i40e_hw *hw, u16 offset, u16 *words, u16 *data) i40e_read_nvm_buffer_aq() argument 496 __i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset, u16 *words, u16 *data) __i40e_read_nvm_buffer() argument 517 i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset, u16 *words, u16 *data) i40e_read_nvm_buffer() argument 547 i40e_write_nvm_aq(struct i40e_hw *hw, u8 module_pointer, u32 offset, u16 words, void *data, bool last_command) i40e_write_nvm_aq() argument 635 u16 words = I40E_SR_SECTOR_SIZE_IN_WORDS; i40e_calc_nvm_checksum() local [all...] |
/kernel/linux/linux-6.6/drivers/net/ethernet/intel/i40e/ |
H A D | i40e_nvm.c | 29 /* Switching to words (sr_size contains power of 2KB) */ in i40e_init_nvm() 211 * @module_pointer: module pointer location in words from the NVM beginning 212 * @offset: offset in words from module start 213 * @words: number of words to read 214 * @data: buffer with words to read to the Shadow RAM 217 * Reads a 16 bit words buffer to the Shadow RAM using the admin command. 221 u16 words, void *data, in i40e_read_nvm_aq() 235 if ((offset + words) > hw->nvm.sr_size) in i40e_read_nvm_aq() 238 (offset + words), h in i40e_read_nvm_aq() 219 i40e_read_nvm_aq(struct i40e_hw *hw, u8 module_pointer, u32 offset, u16 words, void *data, bool last_command) i40e_read_nvm_aq() argument 409 i40e_read_nvm_buffer_srctl(struct i40e_hw *hw, u16 offset, u16 *words, u16 *data) i40e_read_nvm_buffer_srctl() argument 440 i40e_read_nvm_buffer_aq(struct i40e_hw *hw, u16 offset, u16 *words, u16 *data) i40e_read_nvm_buffer_aq() argument 496 __i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset, u16 *words, u16 *data) __i40e_read_nvm_buffer() argument 517 i40e_read_nvm_buffer(struct i40e_hw *hw, u16 offset, u16 *words, u16 *data) i40e_read_nvm_buffer() argument 547 i40e_write_nvm_aq(struct i40e_hw *hw, u8 module_pointer, u32 offset, u16 words, void *data, bool last_command) i40e_write_nvm_aq() argument 635 u16 words = I40E_SR_SECTOR_SIZE_IN_WORDS; i40e_calc_nvm_checksum() local [all...] |
/kernel/linux/linux-5.10/drivers/ata/ |
H A D | pata_falcon.c | 49 unsigned int words = buflen >> 1; in pata_falcon_data_xfer() local 60 raw_insw_swapw((u16 *)data_addr, (u16 *)buf, words); in pata_falcon_data_xfer() 62 raw_insw((u16 *)data_addr, (u16 *)buf, words); in pata_falcon_data_xfer() 65 raw_outsw_swapw((u16 *)data_addr, (u16 *)buf, words); in pata_falcon_data_xfer() 67 raw_outsw((u16 *)data_addr, (u16 *)buf, words); in pata_falcon_data_xfer() 90 words++; in pata_falcon_data_xfer() 93 return words << 1; in pata_falcon_data_xfer()
|
/kernel/linux/linux-5.10/drivers/gpu/host1x/ |
H A D | job.c | 92 unsigned int words, unsigned int offset) in host1x_job_add_gather() 96 gather->words = words; in host1x_job_add_gather() 348 u32 words; member 394 if (fw->words == 0) in check_mask() 402 fw->words--; in check_mask() 419 if (fw->words == 0) in check_incr() 427 fw->words--; in check_incr() 441 if (fw->words == 0) in check_nonincr() 448 fw->words in check_nonincr() 91 host1x_job_add_gather(struct host1x_job *job, struct host1x_bo *bo, unsigned int words, unsigned int offset) host1x_job_add_gather() argument [all...] |
/kernel/linux/linux-6.6/drivers/gpu/host1x/ |
H A D | job.c | 114 unsigned int words, unsigned int offset) in host1x_job_add_gather() 118 gather->words = words; in host1x_job_add_gather() 348 u32 words; member 394 if (fw->words == 0) in check_mask() 402 fw->words--; in check_mask() 419 if (fw->words == 0) in check_incr() 427 fw->words--; in check_incr() 441 if (fw->words == 0) in check_nonincr() 448 fw->words in check_nonincr() 113 host1x_job_add_gather(struct host1x_job *job, struct host1x_bo *bo, unsigned int words, unsigned int offset) host1x_job_add_gather() argument [all...] |