diff options
author | Alex Elder <elder@linaro.org> | 2021-04-09 22:40:23 +0200 |
---|---|---|
committer | David S. Miller <davem@davemloft.net> | 2021-04-12 01:49:08 +0200 |
commit | fbb763e7e7366c27848cbfb09d983802b6322709 (patch) | |
tree | 92ea54144299bb593043cd6e23aeed31c07567fa /drivers/net/ipa/Makefile | |
parent | net: ipa: disable checksum offload for IPA v4.5+ (diff) | |
download | linux-fbb763e7e7366c27848cbfb09d983802b6322709.tar.xz linux-fbb763e7e7366c27848cbfb09d983802b6322709.zip |
net: ipa: add IPA v4.5 configuration data
Add support for the SDX55 SoC, which includes IPA version 4.5.
Starting with IPA v4.5, a few of the memory regions have a different
number of "canary" values; update comments in the where the region
identifers are defined to accurately reflect that.
I'll note three differences in SDX55 versus the other two existing
platforms (SDM845 and SC7180):
- SDX55 uses a 32-bit Linux kernel
- SDX55 has four interconnects rather than three
- SDX55 uses IPA v4.5, which uses inline checksum offload
Signed-off-by: Alex Elder <elder@linaro.org>
Signed-off-by: David S. Miller <davem@davemloft.net>
Diffstat (limited to 'drivers/net/ipa/Makefile')
-rw-r--r-- | drivers/net/ipa/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/drivers/net/ipa/Makefile b/drivers/net/ipa/Makefile index 6abd1db9fe33..ccc4924881ac 100644 --- a/drivers/net/ipa/Makefile +++ b/drivers/net/ipa/Makefile @@ -9,4 +9,5 @@ ipa-y := ipa_main.o ipa_clock.o ipa_reg.o ipa_mem.o \ ipa_endpoint.o ipa_cmd.o ipa_modem.o \ ipa_resource.o ipa_qmi.o ipa_qmi_msg.o -ipa-y += ipa_data-v3.5.1.o ipa_data-v4.2.o +ipa-y += ipa_data-v3.5.1.o ipa_data-v4.2.o \ + ipa_data-v4.5.o |