Your ROOT_URL in app.ini is https://src.whiteboxsystems.nl/ but you are visiting http://src.whiteboxsystems.nl/Whitebox/u-boot/commit/7e4db27ffd11f3eea7e4dfc33354fd087f9257d8 You should set ROOT_URL correctly, otherwise the web may not work correctly.

powerpc/mpc8xxx DDR: Fix CAS latency calculation

Empty slot should be skipped when calculating CAS latency.

Signed-off-by: York Sun <yorksun@freescale.com>
Signed-off-by: Andy Fleming <afleming@freescale.com>
master
York Sun 13 years ago committed by Andy Fleming
parent 45064adcae
commit 7e4db27ffd
  1. 6
      arch/powerpc/cpu/mpc8xxx/ddr/lc_common_dimm_params.c

@ -27,8 +27,10 @@ compute_cas_latency_ddr3(const dimm_params_t *dimm_params,
/* compute the common CAS latency supported between slots */
tmp = dimm_params[0].caslat_X;
for (i = 1; i < number_of_dimms; i++)
tmp &= dimm_params[i].caslat_X;
for (i = 1; i < number_of_dimms; i++) {
if (dimm_params[i].n_ranks)
tmp &= dimm_params[i].caslat_X;
}
common_caslat = tmp;
/* compute the max tAAmin tCKmin between slots */

Loading…
Cancel
Save