mirror of
https://github.com/hardkernel/linux.git
synced 2026-06-05 18:41:58 +09:00
net: mvpp2: TCAM entry enable should be written after SRAM data
[ Upstream commit43f4a20a12] Last TCAM data contains TCAM enable bit. It should be written after SRAM data before entry enabled. Fixes:3f518509de("ethernet: Add new driver for Marvell Armada 375 network unit") Signed-off-by: Stefan Chulski <stefanc@marvell.com> Link: https://lore.kernel.org/r/1612172139-28343-1-git-send-email-stefanc@marvell.com Signed-off-by: Jakub Kicinski <kuba@kernel.org> Signed-off-by: Sasha Levin <sashal@kernel.org>
This commit is contained in:
committed by
Greg Kroah-Hartman
parent
dec629e972
commit
397ae1a245
@@ -29,16 +29,16 @@ static int mvpp2_prs_hw_write(struct mvpp2 *priv, struct mvpp2_prs_entry *pe)
|
||||
/* Clear entry invalidation bit */
|
||||
pe->tcam[MVPP2_PRS_TCAM_INV_WORD] &= ~MVPP2_PRS_TCAM_INV_MASK;
|
||||
|
||||
/* Write tcam index - indirect access */
|
||||
mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index);
|
||||
for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
|
||||
mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), pe->tcam[i]);
|
||||
|
||||
/* Write sram index - indirect access */
|
||||
mvpp2_write(priv, MVPP2_PRS_SRAM_IDX_REG, pe->index);
|
||||
for (i = 0; i < MVPP2_PRS_SRAM_WORDS; i++)
|
||||
mvpp2_write(priv, MVPP2_PRS_SRAM_DATA_REG(i), pe->sram[i]);
|
||||
|
||||
/* Write tcam index - indirect access */
|
||||
mvpp2_write(priv, MVPP2_PRS_TCAM_IDX_REG, pe->index);
|
||||
for (i = 0; i < MVPP2_PRS_TCAM_WORDS; i++)
|
||||
mvpp2_write(priv, MVPP2_PRS_TCAM_DATA_REG(i), pe->tcam[i]);
|
||||
|
||||
return 0;
|
||||
}
|
||||
|
||||
|
||||
Reference in New Issue
Block a user