Searched refs:bit_offset (Results 1 – 7 of 7) sorted by relevance
67 fadt->reset_reg.bit_offset = 0; in acpi_create_fadt()80 fadt->x_pm1a_evt_blk.bit_offset = 0; in acpi_create_fadt()87 fadt->x_pm1b_evt_blk.bit_offset = 0; in acpi_create_fadt()94 fadt->x_pm1a_cnt_blk.bit_offset = 0; in acpi_create_fadt()101 fadt->x_pm1b_cnt_blk.bit_offset = 0; in acpi_create_fadt()108 fadt->x_pm2_cnt_blk.bit_offset = 0; in acpi_create_fadt()115 fadt->x_pm_tmr_blk.bit_offset = 0; in acpi_create_fadt()122 fadt->x_gpe0_blk.bit_offset = 0; in acpi_create_fadt()129 fadt->x_gpe1_blk.bit_offset = 0; in acpi_create_fadt()
72 fadt->reset_reg.bit_offset = 0; in acpi_create_fadt()85 fadt->x_pm1a_evt_blk.bit_offset = 0; in acpi_create_fadt()92 fadt->x_pm1b_evt_blk.bit_offset = 0; in acpi_create_fadt()99 fadt->x_pm1a_cnt_blk.bit_offset = 0; in acpi_create_fadt()106 fadt->x_pm1b_cnt_blk.bit_offset = 0; in acpi_create_fadt()113 fadt->x_pm2_cnt_blk.bit_offset = 0; in acpi_create_fadt()120 fadt->x_pm_tmr_blk.bit_offset = 0; in acpi_create_fadt()127 fadt->x_gpe0_blk.bit_offset = 0; in acpi_create_fadt()134 fadt->x_gpe1_blk.bit_offset = 0; in acpi_create_fadt()
38 It is calculated as: index = register_offset / 4 * 32 + bit_offset.39 Where bit_offset is the bit offset within the register (LSB is 0, MSB is 31).86 It is calculated as: index = register_offset / 4 * 32 + bit_offset.87 Where bit_offset is the bit offset within the register.
482 int bit_offset; in snor_enable_QE() local486 bit_offset = p_dev->QE_bits & 0x7; in snor_enable_QE()491 if (status & (1 << bit_offset)) /* is QE bit set */ in snor_enable_QE()494 status |= (1 << bit_offset); in snor_enable_QE()503 int bit_offset; in snor_disable_QE() local507 bit_offset = p_dev->QE_bits & 0x7; in snor_disable_QE()512 if (!(status & (1 << bit_offset))) in snor_disable_QE()515 status &= ~(1 << bit_offset); in snor_disable_QE()
25 #define DSI_HOST_BITS(addr, bits, bit_offset) \ argument26 ((addr << ADDR_SHIFT) | (bits << BITS_SHIFT) | (bit_offset << OFFSET_SHIFT))
378 uint32_t bit_offset = geo->block_mark_bit_offset; in mxs_nand_swap_block_mark() local390 src = data_buf[buf_offset] >> bit_offset; in mxs_nand_swap_block_mark()391 src |= data_buf[buf_offset + 1] << (8 - bit_offset); in mxs_nand_swap_block_mark()397 data_buf[buf_offset] &= ~(0xff << bit_offset); in mxs_nand_swap_block_mark()398 data_buf[buf_offset + 1] &= 0xff << bit_offset; in mxs_nand_swap_block_mark()400 data_buf[buf_offset] |= dst << bit_offset; in mxs_nand_swap_block_mark()401 data_buf[buf_offset + 1] |= dst >> (8 - bit_offset); in mxs_nand_swap_block_mark()
132 u8 bit_offset; /* Register bit offset */ member