/linux-5.10/drivers/gpio/ |
D | gpio-xgene.c | 41 u32 bit_offset; in xgene_gpio_get() local 44 bit_offset = GPIO_BIT_OFFSET(offset); in xgene_gpio_get() 45 return !!(ioread32(chip->base + bank_offset) & BIT(bit_offset)); in xgene_gpio_get() 52 u32 setval, bit_offset; in __xgene_gpio_set() local 55 bit_offset = GPIO_BIT_OFFSET(offset) + XGENE_GPIOS_PER_BANK; in __xgene_gpio_set() 59 setval |= BIT(bit_offset); in __xgene_gpio_set() 61 setval &= ~BIT(bit_offset); in __xgene_gpio_set() 78 unsigned long bank_offset, bit_offset; in xgene_gpio_get_direction() local 81 bit_offset = GPIO_BIT_OFFSET(offset); in xgene_gpio_get_direction() 83 if (ioread32(chip->base + bank_offset) & BIT(bit_offset)) in xgene_gpio_get_direction() [all …]
|
/linux-5.10/tools/bpf/bpftool/ |
D | btf_dumper.c | 25 __u8 bit_offset, const void *data); 126 __u8 bit_offset, const void *data) in btf_dumper_modifier() argument 134 return btf_dumper_do_type(d, actual_type_id, bit_offset, data); in btf_dumper_modifier() 315 static void btf_dumper_bitfield(__u32 nr_bits, __u8 bit_offset, in btf_dumper_bitfield() argument 324 bits_to_copy = bit_offset + nr_bits; in btf_dumper_bitfield() 329 left_shift_bits = bit_offset; in btf_dumper_bitfield() 342 static void btf_dumper_int_bits(__u32 int_type, __u8 bit_offset, in btf_dumper_int_bits() argument 352 total_bits_offset = bit_offset + BTF_INT_OFFSET(int_type); in btf_dumper_int_bits() 354 bit_offset = BITS_PER_BYTE_MASKED(total_bits_offset); in btf_dumper_int_bits() 355 btf_dumper_bitfield(nr_bits, bit_offset, data, jw, in btf_dumper_int_bits() [all …]
|
/linux-5.10/drivers/pinctrl/ |
D | pinctrl-bm1880.c | 1015 u32 *regval, u32 bit_offset) in bm1880_pinconf_drv_set() argument 1028 _regval &= ~(width << bit_offset); in bm1880_pinconf_drv_set() 1029 _regval |= (0 << bit_offset); in bm1880_pinconf_drv_set() 1032 _regval &= ~(width << bit_offset); in bm1880_pinconf_drv_set() 1033 _regval |= (1 << bit_offset); in bm1880_pinconf_drv_set() 1036 _regval &= ~(width << bit_offset); in bm1880_pinconf_drv_set() 1037 _regval |= (2 << bit_offset); in bm1880_pinconf_drv_set() 1040 _regval &= ~(width << bit_offset); in bm1880_pinconf_drv_set() 1041 _regval |= (3 << bit_offset); in bm1880_pinconf_drv_set() 1044 _regval &= ~(width << bit_offset); in bm1880_pinconf_drv_set() [all …]
|
/linux-5.10/arch/x86/kernel/acpi/ |
D | cppc_msr.c | 23 u64 mask = GENMASK_ULL(reg->bit_offset + reg->bit_width - 1, in cpc_read_ffh() 24 reg->bit_offset); in cpc_read_ffh() 27 *val >>= reg->bit_offset; in cpc_read_ffh() 39 u64 mask = GENMASK_ULL(reg->bit_offset + reg->bit_width - 1, in cpc_write_ffh() 40 reg->bit_offset); in cpc_write_ffh() 42 val <<= reg->bit_offset; in cpc_write_ffh()
|
/linux-5.10/drivers/pinctrl/sprd/ |
D | pinctrl-sprd.h | 14 #define BIT_OFFSET (8) macro 20 ((offset) & 0xFF) << BIT_OFFSET | \ 31 .bit_offset = (((a) >> BIT_OFFSET) & 0xff), \ 48 unsigned long bit_offset; member
|
/linux-5.10/drivers/soc/tegra/fuse/ |
D | fuse-tegra.c | 100 .bit_offset = 0, 106 .bit_offset = 0, 112 .bit_offset = 0, 118 .bit_offset = 0, 124 .bit_offset = 0, 130 .bit_offset = 0, 136 .bit_offset = 0, 142 .bit_offset = 0, 148 .bit_offset = 0, 154 .bit_offset = 0, [all …]
|
/linux-5.10/drivers/gpu/drm/omapdrm/ |
D | tcm-sita.c | 95 unsigned long bit_offset = (offset > 0) ? offset / slot_bytes : 0; in l2r_t2b() local 96 unsigned long curr_bit = bit_offset; in l2r_t2b() 109 if (bit_offset > 0 && (*pos % slots_per_band != bit_offset)) { in l2r_t2b() 110 curr_bit = ALIGN(*pos, slots_per_band) + bit_offset; in l2r_t2b() 116 curr_bit = ALIGN(*pos, slot_stride) + bit_offset; in l2r_t2b() 147 if (bit_offset > 0) in l2r_t2b() 148 curr_bit = ALIGN(*pos, slots_per_band) + bit_offset; in l2r_t2b()
|
/linux-5.10/drivers/gpu/drm/nouveau/nvkm/subdev/bios/ |
D | bit.c | 30 if (likely(bios->bit_offset)) { in bit_entry() 31 u8 entries = nvbios_rd08(bios, bios->bit_offset + 10); in bit_entry() 32 u32 entry = bios->bit_offset + 12; in bit_entry() 42 entry += nvbios_rd08(bios, bios->bit_offset + 9); in bit_entry()
|
/linux-5.10/drivers/acpi/acpica/ |
D | hwregs.c | 57 * 1. Detected if bit_offset is 0 and bit_width is 8/16/32/64; in acpi_hw_get_access_bit_width() 61 * 1. Detected if bit_offset is not 0 or bit_width is not 8/16/32/64; in acpi_hw_get_access_bit_width() 64 * 3. bit_offset/bit_width fields are used to describe the "region". in acpi_hw_get_access_bit_width() 69 if (!reg->bit_offset && reg->bit_width && in acpi_hw_get_access_bit_width() 77 ACPI_ROUND_UP_POWER_OF_TWO_8(reg->bit_offset + in acpi_hw_get_access_bit_width() 117 * pointer, Address, space_id, bit_width, and bit_offset. 167 ACPI_ROUND_UP(reg->bit_offset + reg->bit_width, access_width); in acpi_hw_validate_register() 200 u8 bit_offset; in acpi_hw_read() local 221 bit_width = reg->bit_offset + reg->bit_width; in acpi_hw_read() 222 bit_offset = reg->bit_offset; in acpi_hw_read() [all …]
|
D | dsopcode.c | 83 u32 bit_offset; in acpi_ds_init_buffer_field() local 127 bit_offset = offset; in acpi_ds_init_buffer_field() 144 bit_offset = offset; in acpi_ds_init_buffer_field() 153 bit_offset = 8 * offset; in acpi_ds_init_buffer_field() 162 bit_offset = 8 * offset; in acpi_ds_init_buffer_field() 171 bit_offset = 8 * offset; in acpi_ds_init_buffer_field() 180 bit_offset = 8 * offset; in acpi_ds_init_buffer_field() 196 if ((bit_offset + bit_count) > (8 * (u32)buffer_desc->buffer.length)) { in acpi_ds_init_buffer_field() 202 bit_offset, bit_count, in acpi_ds_init_buffer_field() 214 bit_offset, bit_count); in acpi_ds_init_buffer_field()
|
/linux-5.10/drivers/nvmem/ |
D | core.c | 51 int bit_offset; member 373 cell->bit_offset = info->bit_offset; in nvmem_cell_info_to_nvmem_cell_nodup() 377 cell->bytes = DIV_ROUND_UP(cell->nbits + cell->bit_offset, in nvmem_cell_info_to_nvmem_cell_nodup() 565 cell->bit_offset = be32_to_cpup(addr++); in nvmem_add_cells_from_of() 571 cell->nbits + cell->bit_offset, in nvmem_add_cells_from_of() 1200 int i, extra, bit_offset = cell->bit_offset; in nvmem_shift_read_buffer_in_place() local 1203 if (bit_offset) { in nvmem_shift_read_buffer_in_place() 1205 *b++ >>= bit_offset; in nvmem_shift_read_buffer_in_place() 1210 *p |= *b << (BITS_PER_BYTE - bit_offset); in nvmem_shift_read_buffer_in_place() 1213 *b++ >>= bit_offset; in nvmem_shift_read_buffer_in_place() [all …]
|
/linux-5.10/include/crypto/ |
D | sha1_base.h | 75 const int bit_offset = SHA1_BLOCK_SIZE - sizeof(__be64); in sha1_base_do_finalize() local 77 __be64 *bits = (__be64 *)(sctx->buffer + bit_offset); in sha1_base_do_finalize() 81 if (partial > bit_offset) { in sha1_base_do_finalize() 88 memset(sctx->buffer + partial, 0x0, bit_offset - partial); in sha1_base_do_finalize()
|
D | sha256_base.h | 78 const int bit_offset = SHA256_BLOCK_SIZE - sizeof(__be64); in sha256_base_do_finalize() local 80 __be64 *bits = (__be64 *)(sctx->buf + bit_offset); in sha256_base_do_finalize() 84 if (partial > bit_offset) { in sha256_base_do_finalize() 91 memset(sctx->buf + partial, 0x0, bit_offset - partial); in sha256_base_do_finalize()
|
D | sm3_base.h | 78 const int bit_offset = SM3_BLOCK_SIZE - sizeof(__be64); in sm3_base_do_finalize() local 80 __be64 *bits = (__be64 *)(sctx->buffer + bit_offset); in sm3_base_do_finalize() 84 if (partial > bit_offset) { in sm3_base_do_finalize() 91 memset(sctx->buffer + partial, 0x0, bit_offset - partial); in sm3_base_do_finalize()
|
D | sha512_base.h | 98 const int bit_offset = SHA512_BLOCK_SIZE - sizeof(__be64[2]); in sha512_base_do_finalize() local 100 __be64 *bits = (__be64 *)(sctx->buf + bit_offset); in sha512_base_do_finalize() 104 if (partial > bit_offset) { in sha512_base_do_finalize() 111 memset(sctx->buf + partial, 0x0, bit_offset - partial); in sha512_base_do_finalize()
|
/linux-5.10/drivers/acpi/apei/ |
D | apei-base.c | 64 *val >>= entry->register_region.bit_offset; in __apei_exec_read_register() 104 val <<= entry->register_region.bit_offset; in __apei_exec_write_register() 110 valr &= ~(entry->mask << entry->register_region.bit_offset); in __apei_exec_write_register() 574 u32 bit_width, bit_offset, access_size_code, space_id; in apei_check_gar() local 577 bit_offset = reg->bit_offset; in apei_check_gar() 584 *paddr, bit_width, bit_offset, access_size_code, in apei_check_gar() 592 *paddr, bit_width, bit_offset, access_size_code, in apei_check_gar() 599 if (bit_width == 32 && bit_offset == 0 && (*paddr & 0x03) == 0 && in apei_check_gar() 602 else if (bit_width == 64 && bit_offset == 0 && (*paddr & 0x07) == 0 && in apei_check_gar() 606 if ((bit_width + bit_offset) > *access_bit_width) { in apei_check_gar() [all …]
|
/linux-5.10/drivers/net/wireless/ralink/rt2x00/ |
D | rt2x00reg.h | 148 u8 bit_offset; member 153 u16 bit_offset; member 158 u32 bit_offset; member 240 ((__field).bit_offset)) & \ 248 ((__field).bit_offset); \
|
/linux-5.10/drivers/irqchip/ |
D | irq-meson-gpio.c | 168 unsigned int bit_offset; in meson8_gpio_irq_sel_pin() local 171 bit_offset = REG_PIN_SEL_SHIFT(channel); in meson8_gpio_irq_sel_pin() 174 ctl->params->pin_sel_mask << bit_offset, in meson8_gpio_irq_sel_pin() 175 hwirq << bit_offset); in meson8_gpio_irq_sel_pin() 183 unsigned int bit_offset; in meson_a1_gpio_irq_sel_pin() local 185 bit_offset = ((channel % 2) == 0) ? 0 : 16; in meson_a1_gpio_irq_sel_pin() 189 ctl->params->pin_sel_mask << bit_offset, in meson_a1_gpio_irq_sel_pin() 190 hwirq << bit_offset); in meson_a1_gpio_irq_sel_pin()
|
/linux-5.10/Documentation/devicetree/bindings/clock/ |
D | st,stm32-rcc.txt | 45 It is calculated as: index = register_offset / 4 * 32 + bit_offset. 46 Where bit_offset is the bit offset within the register (LSB is 0, MSB is 31). 129 It is calculated as: index = register_offset / 4 * 32 + bit_offset. 130 Where bit_offset is the bit offset within the register.
|
D | st,stm32mp1-rcc.yaml | 35 It is calculated as: index = register_offset / 4 * 32 + bit_offset. 36 Where bit_offset is the bit offset within the register.
|
D | st,stm32h7-rcc.txt | 61 It is calculated as: index = register_offset / 4 * 32 + bit_offset. 62 Where bit_offset is the bit offset within the register.
|
/linux-5.10/include/rdma/ |
D | iba.h | 115 * Extraction using a tabular description like table 106. bit_offset is from 118 #define IBA_FIELD_BLOC(field_struct, byte_offset, bit_offset, num_bits) \ argument 120 GENMASK(7 - (bit_offset), 7 - (bit_offset) - (num_bits - 1)), \
|
/linux-5.10/drivers/acpi/ |
D | acpi_lpit.c | 43 u64 mask = GENMASK_ULL(residency_info_ffh.gaddr.bit_offset + in lpit_read_residency_counter_us() 45 residency_info_ffh.gaddr.bit_offset); in lpit_read_residency_counter_us() 48 *counter >>= residency_info_ffh.gaddr.bit_offset; in lpit_read_residency_counter_us()
|
D | processor_throttling.c | 472 throttling->control_register.bit_offset) > 32) { in acpi_processor_get_throttling_control() 479 throttling->status_register.bit_offset) > 32) { in acpi_processor_get_throttling_control() 768 u32 bit_width, bit_offset; in acpi_read_throttling_status() local 778 bit_offset = throttling->status_register.bit_offset; in acpi_read_throttling_status() 782 (u32) (bit_width + bit_offset)); in acpi_read_throttling_status() 784 *value = (u64) ((ptc_value >> bit_offset) & ptc_mask); in acpi_read_throttling_status() 800 u32 bit_width, bit_offset; in acpi_write_throttling_state() local 810 bit_offset = throttling->control_register.bit_offset; in acpi_write_throttling_state() 816 (u32) (ptc_value << bit_offset), in acpi_write_throttling_state() 817 (u32) (bit_width + bit_offset)); in acpi_write_throttling_state()
|
/linux-5.10/drivers/watchdog/ |
D | wdat_wdt.c | 147 x >>= gas->bit_offset; in wdat_wdt_run_action() 157 x >>= gas->bit_offset; in wdat_wdt_run_action() 165 x <<= gas->bit_offset; in wdat_wdt_run_action() 170 y = y & ~(mask << gas->bit_offset); in wdat_wdt_run_action() 181 x <<= gas->bit_offset; in wdat_wdt_run_action() 186 y = y & ~(mask << gas->bit_offset); in wdat_wdt_run_action()
|