The reserved space needed for storing the parity remains the same no
matter the size of the region that is being protected. Add this as a
comment for better code understanding.
Reviewed-by: Udit Kumar <u-kumar1@ti.com>
Signed-off-by: Neha Malcom Francis <n-francis@ti.com>
{
fdtdec_setup_mem_size_base_lowest();
+ /*
+ * For every 512-byte data block, 64 bytes are used to store inline ECC
+ * information into a reserved region. It remains 1/9th of the total DDR
+ * size irrespective of the size of the region under protection.
+ */
+
ddrss->ecc_reserved_space = ddrss->ddr_ram_size;
do_div(ddrss->ecc_reserved_space, 9);