X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=board%2Ficu862%2Ficu862.c;h=b41ebae28b304b8db1e37b6ce9c86d7533573ea9;hb=9b880bd4d86dc568221107516e6d4728c5f93a4e;hp=cea28b2de0f3d296c45bda1d3a33be278ce9cfbd;hpb=16f217049a70da97bc61eff7a95b4b6313850909;p=u-boot diff --git a/board/icu862/icu862.c b/board/icu862/icu862.c index cea28b2de0..b41ebae28b 100644 --- a/board/icu862/icu862.c +++ b/board/icu862/icu862.c @@ -208,39 +208,8 @@ static long int dram_size (long int mamr_value, long int *base, { volatile immap_t *immap = (immap_t *) CFG_IMMR; volatile memctl8xx_t *memctl = &immap->im_memctl; - volatile long int *addr; - ulong cnt, val; - ulong save[32]; /* to make test non-destructive */ - unsigned char i = 0; memctl->memc_mamr = mamr_value; - for (cnt = maxsize / sizeof (long); cnt > 0; cnt >>= 1) { - addr = base + cnt; /* pointer arith! */ - - save[i++] = *addr; - *addr = ~cnt; - } - - /* write 0 to base address */ - addr = base; - save[i] = *addr; - *addr = 0; - - /* check at base address */ - if ((val = *addr) != 0) { - *addr = save[i]; - return (0); - } - - for (cnt = 1; cnt <= maxsize / sizeof (long); cnt <<= 1) { - addr = base + cnt; /* pointer arith! */ - val = *addr; - *addr = save[--i]; - - if (val != (~cnt)) { - return (cnt * sizeof (long)); - } - } - return (maxsize); + return (get_ram_size(base, maxsize)); }