Skip to content

Commit d1d3470

Browse files
committed
Merge branch 'net-ipa-v5.5'
Alex Elder says: ==================== net: ipa: add IPA v5.5 support This series adds IPA support for the Qualcomm SM8550 SoC, which uses IPA v5.5. The first patch adds a new compatible string for the SM8550. The second cleans up "ipa_reg.h" a bit for consistency. The third patch adds definitions and some minor code changes related to IPA v5.5. The fourth defines IPA register offsets and fields used for IPA v5.0; most--but not all--register definitions are the same as used in IPA v5.0. The final patch adds configuration data used for IPA v5.5 (here again this mostly duplicates IPA v5.0 definitions). ==================== Signed-off-by: David S. Miller <davem@davemloft.net>
2 parents bab6c86 + 7c59294 commit d1d3470

File tree

11 files changed

+1130
-62
lines changed

11 files changed

+1130
-62
lines changed

Documentation/devicetree/bindings/net/qcom,ipa.yaml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -52,6 +52,7 @@ properties:
5252
- qcom,sdx65-ipa
5353
- qcom,sm6350-ipa
5454
- qcom,sm8350-ipa
55+
- qcom,sm8550-ipa
5556

5657
reg:
5758
items:

drivers/net/ipa/Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,12 +2,12 @@
22
#
33
# Makefile for the Qualcomm IPA driver.
44

5-
IPA_REG_VERSIONS := 3.1 3.5.1 4.2 4.5 4.7 4.9 4.11 5.0
5+
IPA_REG_VERSIONS := 3.1 3.5.1 4.2 4.5 4.7 4.9 4.11 5.0 5.5
66

77
# Some IPA versions can reuse another set of GSI register definitions.
88
GSI_REG_VERSIONS := 3.1 3.5.1 4.0 4.5 4.9 4.11 5.0
99

10-
IPA_DATA_VERSIONS := 3.1 3.5.1 4.2 4.5 4.7 4.9 4.11 5.0
10+
IPA_DATA_VERSIONS := 3.1 3.5.1 4.2 4.5 4.7 4.9 4.11 5.0 5.5
1111

1212
obj-$(CONFIG_QCOM_IPA) += ipa.o
1313

0 commit comments

Comments
 (0)