This series adds support for IPA v3.1, used by the Qualcomm Snapdragon 835 (MSM8998). The first patch adds "qcom,msm8998-ipa" to the DT binding. The next four patches add code to ensure correct operation on IPA v3.1: - Avoid touching unsupported inter-EE interrupt mask registers - Set the proper flags in the clock configuration register - Work around the lack of an IPA FLAVOR_0 register - Work around the lack of a GSI PARAM_2 register The last patch defines configuration data for this version of IPA. Many thanks are due to AngeloGioacchino Del Regno and Jami Kettunen, both associated with SoMainline. Angelo first posted code to implement most of what was required for this, and Jami has been helpful testing these changes on his hardware. -Alex Alex Elder (6): dt-bindings: net: qcom,ipa: add support for MSM8998 net: ipa: inter-EE interrupts aren't always available net: ipa: disable misc clock gating for IPA v3.1 net: ipa: FLAVOR_0 register doesn't exist until IPA v3.5 net: ipa: introduce gsi_ring_setup() net: ipa: add IPA v3.1 configuration data .../devicetree/bindings/net/qcom,ipa.yaml | 1 + drivers/net/ipa/Makefile | 6 +- drivers/net/ipa/gsi.c | 90 ++- drivers/net/ipa/gsi.h | 2 +- drivers/net/ipa/gsi_reg.h | 3 +- drivers/net/ipa/ipa_data-v3.1.c | 533 ++++++++++++++++++ drivers/net/ipa/ipa_data.h | 1 + drivers/net/ipa/ipa_endpoint.c | 15 + drivers/net/ipa/ipa_main.c | 18 +- 9 files changed, 629 insertions(+), 40 deletions(-) create mode 100644 drivers/net/ipa/ipa_data-v3.1.c -- 2.27.0