• A
    net: ipa: fix resource group field mask definition · d773f404
    Alex Elder 提交于
    The mask for the RSRC_GRP field in the INIT_RSRC_GRP endpoint
    initialization register is incorrectly defined for IPA v4.2 (where
    it is only one bit wide).  So we need to fix this.
    
    The fix is not straightforward, however.  Field masks are passed to
    functions like u32_encode_bits(), and for that they must be constant.
    
    To address this, we define a new inline function that returns the
    *encoded* value to use for a given RSRC_GRP field, which depends on
    the IPA version.  The caller can then use something like this, to
    assign a given endpoint resource id 1:
    
        u32 offset = IPA_REG_ENDP_INIT_RSRC_GRP_N_OFFSET(endpoint_id);
        u32 val = rsrc_grp_encoded(ipa->version, 1);
    
        iowrite32(val, ipa->reg_virt + offset);
    
    The next patch requires this fix.
    Tested-by: NSujit Kautkar <sujitka@chromium.org>
    Signed-off-by: NAlex Elder <elder@linaro.org>
    Signed-off-by: NJakub Kicinski <kuba@kernel.org>
    d773f404
ipa_reg.h 18.7 KB