diff options
author | Tudor Ambarus | 2021-05-21 11:52:04 +0300 |
---|---|---|
committer | Eugen Hristev | 2021-06-07 11:01:40 +0300 |
commit | 55661ee0e3cf518e1b89939f00fda50b326d3139 (patch) | |
tree | 37a91c5ec147aec9d8c9c7e7ce265e91b2f290da /arch/arm/mach-at91 | |
parent | a1c93bde36fa05edb2f481e83f92800805b3085d (diff) |
Revert "sama5d3: Fix Galois Field Table offsets"
This reverts commit 786f888b743e9b83c9095cb9b5548ebe2e29afc5.
Looks like the datasheet at
https://ww1.microchip.com/downloads/en/DeviceDoc/SAMA5D3-Series-Data-sheet-DS60001609b.pdf
is wrong, and the testing was poorly done, because the PMECC did not raise
any error, but also didn't correct any bitflips. Restoring the offsets
as they were before, makes the PMECC on sama5d3x capable of correcting
bitflips.
Fixes: 786f888b74 ("sama5d3: Fix Galois Field Table offsets")
Signed-off-by: Tudor Ambarus <tudor.ambarus@microchip.com>
Diffstat (limited to 'arch/arm/mach-at91')
-rw-r--r-- | arch/arm/mach-at91/include/mach/sama5d3.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/arch/arm/mach-at91/include/mach/sama5d3.h b/arch/arm/mach-at91/include/mach/sama5d3.h index f4f05676f72..83f18a8148f 100644 --- a/arch/arm/mach-at91/include/mach/sama5d3.h +++ b/arch/arm/mach-at91/include/mach/sama5d3.h @@ -190,8 +190,8 @@ /* * PMECC table in ROM */ -#define ATMEL_PMECC_INDEX_OFFSET_512 0x8000 -#define ATMEL_PMECC_INDEX_OFFSET_1024 0x10000 +#define ATMEL_PMECC_INDEX_OFFSET_512 0x10000 +#define ATMEL_PMECC_INDEX_OFFSET_1024 0x18000 /* * SAMA5D3 specific prototypes |