blob: caac65f39838b0374b99a78c76cf2a9a6be24635 [file] [log] [blame]
Albin Tonnerre1ea60cf2009-11-01 18:40:50 +01001#ifdef CONFIG_ARCH_AT91RM9200
2#include <mach/at91rm9200_mc.h>
3
4/*
5 * The AT91RM9200 goes into self-refresh mode with this command, and will
6 * terminate self-refresh automatically on the next SDRAM access.
7 *
8 * Self-refresh mode is exited as soon as a memory access is made, but we don't
9 * know for sure when that happens. However, we need to restore the low-power
10 * mode if it was enabled before going idle. Restoring low-power mode while
11 * still in self-refresh is "not recommended", but seems to work.
12 */
13
14static inline u32 sdram_selfrefresh_enable(void)
15{
16 u32 saved_lpr = at91_sys_read(AT91_SDRAMC_LPR);
17
18 at91_sys_write(AT91_SDRAMC_LPR, 0);
19 at91_sys_write(AT91_SDRAMC_SRR, 1);
20 return saved_lpr;
21}
22
Daniel Lezcanoc54b7bb2012-01-25 00:56:05 +010023#define sdram_selfrefresh_disable(saved_lpr) \
24 at91_sys_write(AT91_SDRAMC_LPR, saved_lpr)
25
26#define wait_for_interrupt_enable() \
27 asm volatile ("mcr p15, 0, %0, c7, c0, 4" \
28 : : "r" (0))
Albin Tonnerre1ea60cf2009-11-01 18:40:50 +010029
Nicolas Ferre7dca3342010-06-21 14:59:27 +010030#elif defined(CONFIG_ARCH_AT91SAM9G45)
31#include <mach/at91sam9_ddrsdr.h>
32
33/* We manage both DDRAM/SDRAM controllers, we need more than one value to
34 * remember.
35 */
36static u32 saved_lpr1;
37
38static inline u32 sdram_selfrefresh_enable(void)
39{
40 /* Those tow values allow us to delay self-refresh activation
41 * to the maximum. */
42 u32 lpr0, lpr1;
43 u32 saved_lpr0;
44
45 saved_lpr1 = at91_ramc_read(1, AT91_DDRSDRC_LPR);
46 lpr1 = saved_lpr1 & ~AT91_DDRSDRC_LPCB;
47 lpr1 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
48
49 saved_lpr0 = at91_ramc_read(0, AT91_DDRSDRC_LPR);
50 lpr0 = saved_lpr0 & ~AT91_DDRSDRC_LPCB;
51 lpr0 |= AT91_DDRSDRC_LPCB_SELF_REFRESH;
52
53 /* self-refresh mode now */
54 at91_ramc_write(0, AT91_DDRSDRC_LPR, lpr0);
55 at91_ramc_write(1, AT91_DDRSDRC_LPR, lpr1);
56
57 return saved_lpr0;
58}
59
60#define sdram_selfrefresh_disable(saved_lpr0) \
61 do { \
62 at91_ramc_write(0, AT91_DDRSDRC_LPR, saved_lpr0); \
63 at91_ramc_write(1, AT91_DDRSDRC_LPR, saved_lpr1); \
64 } while (0)
Daniel Lezcanoc54b7bb2012-01-25 00:56:05 +010065
Nicolas Ferre8aeeda82010-10-22 17:53:39 +020066#define wait_for_interrupt_enable() cpu_do_idle()
Albin Tonnerre1ea60cf2009-11-01 18:40:50 +010067
68#else
69#include <mach/at91sam9_sdramc.h>
70
71#ifdef CONFIG_ARCH_AT91SAM9263
72/*
73 * FIXME either or both the SDRAM controllers (EB0, EB1) might be in use;
74 * handle those cases both here and in the Suspend-To-RAM support.
75 */
Albin Tonnerre1ea60cf2009-11-01 18:40:50 +010076#warning Assuming EB1 SDRAM controller is *NOT* used
77#endif
78
79static inline u32 sdram_selfrefresh_enable(void)
80{
81 u32 saved_lpr, lpr;
82
Nicolas Ferre7dca3342010-06-21 14:59:27 +010083 saved_lpr = at91_ramc_read(0, AT91_SDRAMC_LPR);
Albin Tonnerre1ea60cf2009-11-01 18:40:50 +010084
85 lpr = saved_lpr & ~AT91_SDRAMC_LPCB;
Daniel Lezcanoc54b7bb2012-01-25 00:56:05 +010086 at91_ramc_write(0, AT91_SDRAMC_LPR, lpr |
87 AT91_SDRAMC_LPCB_SELF_REFRESH);
Albin Tonnerre1ea60cf2009-11-01 18:40:50 +010088 return saved_lpr;
89}
90
Daniel Lezcanoc54b7bb2012-01-25 00:56:05 +010091#define sdram_selfrefresh_disable(saved_lpr) \
92 at91_ramc_write(0, AT91_SDRAMC_LPR, saved_lpr)
93
94#define wait_for_interrupt_enable() \
95 cpu_do_idle()
Albin Tonnerre1ea60cf2009-11-01 18:40:50 +010096
97#endif