Linux kernel mirror (for testing) git.kernel.org/pub/scm/linux/kernel/git/torvalds/linux.git
kernel os linux

net: ipa: add some new IPA versions

Soon IPA v5.0+ will be supported, and when that happens we will be
able to enable support for the SDX65 (IPA v5.0), SM8450 (IPA v5.1),
and SM8550 (IPA v5.5).

Fix the comment about the GSI version used for IPA v3.1.

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

authored by

Alex Elder and committed by
David S. Miller
3aac8ec1 38028e6f

+5 -1
+5 -1
drivers/net/ipa/ipa_version.h
··· 9 9 /** 10 10 * enum ipa_version 11 11 * @IPA_VERSION_3_0: IPA version 3.0/GSI version 1.0 12 - * @IPA_VERSION_3_1: IPA version 3.1/GSI version 1.1 12 + * @IPA_VERSION_3_1: IPA version 3.1/GSI version 1.0 13 13 * @IPA_VERSION_3_5: IPA version 3.5/GSI version 1.2 14 14 * @IPA_VERSION_3_5_1: IPA version 3.5.1/GSI version 1.3 15 15 * @IPA_VERSION_4_0: IPA version 4.0/GSI version 2.0 ··· 20 20 * @IPA_VERSION_4_9: IPA version 4.9/GSI version 2.9 21 21 * @IPA_VERSION_4_11: IPA version 4.11/GSI version 2.11 (2.1.1) 22 22 * @IPA_VERSION_5_0: IPA version 5.0/GSI version 3.0 23 + * @IPA_VERSION_5_1: IPA version 5.1/GSI version 3.0 24 + * @IPA_VERSION_5_5: IPA version 5.5/GSI version 5.5 23 25 * @IPA_VERSION_COUNT: Number of defined IPA versions 24 26 * 25 27 * Defines the version of IPA (and GSI) hardware present on the platform. ··· 40 38 IPA_VERSION_4_9, 41 39 IPA_VERSION_4_11, 42 40 IPA_VERSION_5_0, 41 + IPA_VERSION_5_1, 42 + IPA_VERSION_5_5, 43 43 IPA_VERSION_COUNT, /* Last; not a version */ 44 44 }; 45 45