Commit 6a2843aa authored by Luca Weiss's avatar Luca Weiss Committed by Jakub Kicinski
Browse files

net: ipa: Fix QSB data for v4.7



As per downstream reference, max_writes should be 12 and max_reads
should be 13.

Fixes: b310de78 ("net: ipa: add IPA v4.7 support")
Signed-off-by: default avatarLuca Weiss <luca.weiss@fairphone.com>
Reviewed-by: default avatarAlex Elder <elder@riscstar.com>
Link: https://patch.msgid.link/20250227-ipa-v4-7-fixes-v1-2-a88dd8249d8a@fairphone.com


Signed-off-by: default avatarJakub Kicinski <kuba@kernel.org>
parent 5eb3dc13
Loading
Loading
Loading
Loading
+2 −2
Original line number Diff line number Diff line
@@ -38,8 +38,8 @@ enum ipa_rsrc_group_id {
/* QSB configuration data for an SoC having IPA v4.7 */
static const struct ipa_qsb_data ipa_qsb_data[] = {
	[IPA_QSB_MASTER_DDR] = {
		.max_writes		= 8,
		.max_reads		= 0,	/* no limit (hardware max) */
		.max_writes		= 12,
		.max_reads		= 13,
		.max_reads_beats	= 120,
	},
};