OSDN Git Service

net: ipa: disable checksum offload for IPA v4.5+
authorAlex Elder <elder@linaro.org>
Fri, 9 Apr 2021 20:40:22 +0000 (15:40 -0500)
committerDavid S. Miller <davem@davemloft.net>
Sun, 11 Apr 2021 23:49:08 +0000 (16:49 -0700)
Checksum offload for IPA v4.5+ is implemented differently, using
"inline" offload (which uses a common header format for both upload
and download offload).

The IPA hardware must be programmed to enable MAP checksum offload,
but the RMNet driver is responsible for interpreting checksum
metadata supplied with messages.

Currently, the RMNet driver does not support inline checksum offload.
This support is imminent, but until it is available, do not allow
newer versions of IPA to specify checksum offload for endpoints.

Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
drivers/net/ipa/ipa_endpoint.c

index 7275184..ccc99ad 100644 (file)
@@ -88,6 +88,11 @@ static bool ipa_endpoint_data_valid_one(struct ipa *ipa, u32 count,
        if (ipa_gsi_endpoint_data_empty(data))
                return true;
 
+       /* IPA v4.5+ uses checksum offload, not yet supported by RMNet */
+       if (ipa->version >= IPA_VERSION_4_5)
+               if (data->endpoint.config.checksum)
+                       return false;
+
        if (!data->toward_ipa) {
                if (data->endpoint.filter_support) {
                        dev_err(dev, "filtering not supported for "
@@ -230,6 +235,17 @@ static bool ipa_endpoint_data_valid(struct ipa *ipa, u32 count,
 static bool ipa_endpoint_data_valid(struct ipa *ipa, u32 count,
                                    const struct ipa_gsi_endpoint_data *data)
 {
+       const struct ipa_gsi_endpoint_data *dp = data;
+       enum ipa_endpoint_name name;
+
+       if (ipa->version < IPA_VERSION_4_5)
+               return true;
+
+       /* IPA v4.5+ uses checksum offload, not yet supported by RMNet */
+       for (name = 0; name < count; name++, dp++)
+               if (data->endpoint.config.checksum)
+                       return false;
+
        return true;
 }