From: Dave Liu Date: Fri, 21 Nov 2008 08:31:53 +0000 (+0800) Subject: 85xx: enable the auto self refresh for wake up ARP X-Git-Tag: v2009.03-rc1~172^2~4 X-Git-Url: https://git.sur5r.net/?a=commitdiff_plain;h=bf5b1f0c0d28ce062e1d368680632dfb099de692;p=u-boot 85xx: enable the auto self refresh for wake up ARP The wake up ARP feature need use the memory to process wake up packet, we enable auto self refresh to support it. Signed-off-by: Dave Liu Acked-by: Andy Fleming --- diff --git a/board/freescale/mpc8536ds/ddr.c b/board/freescale/mpc8536ds/ddr.c index 3135d6dfe4..2bad787d60 100644 --- a/board/freescale/mpc8536ds/ddr.c +++ b/board/freescale/mpc8536ds/ddr.c @@ -79,4 +79,10 @@ void fsl_ddr_board_options(memctl_options_t *popts, * - number of DIMMs installed */ popts->half_strength_driver_enable = 0; + + /* + * For wake up arp feature, we need enable auto self refresh + */ + popts->auto_self_refresh_en = 1; + popts->sr_it = 0x6; }