Lines Matching refs:dw11
203 uint32_t dw11 = sys_le32_to_cpu(bfp->dw10[1]); in jesd216_bfp_decode_dw11() local
204 uint32_t value = 1 + ((dw11 >> 24) & 0x1F); in jesd216_bfp_decode_dw11()
206 switch ((dw11 >> 29) & 0x03) { in jesd216_bfp_decode_dw11()
222 value = 1 + ((dw11 >> 19) & 0x0F); in jesd216_bfp_decode_dw11()
223 if (dw11 & BIT(23)) { in jesd216_bfp_decode_dw11()
228 value = 1 + ((dw11 >> 14) & 0x0F); in jesd216_bfp_decode_dw11()
229 if (dw11 & BIT(18)) { in jesd216_bfp_decode_dw11()
234 value = 1 + ((dw11 >> 8) & 0x01F); in jesd216_bfp_decode_dw11()
235 if (dw11 & BIT(13)) { in jesd216_bfp_decode_dw11()
242 res->page_size = BIT((dw11 >> 4) & 0x0F); in jesd216_bfp_decode_dw11()
243 res->typ_max_factor = 2 * (1 + (dw11 & 0x0F)); in jesd216_bfp_decode_dw11()