-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
yaml --- r: 173462 b: refs/heads/master c: eb0cd9e h: refs/heads/master v: v3
- Loading branch information
Magnus Damm
authored and
Paul Mundt
committed
Oct 30, 2009
1 parent
8413a63
commit 271cc9f
Showing
4 changed files
with
68 additions
and
2 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,2 +1,2 @@ | ||
--- | ||
refs/heads/master: 86c7d03a0fe4241e64eb19b86544647c8ee4bac9 | ||
refs/heads/master: eb0cd9e88c6a6561055b32a17d44d8918aecc3c7 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -6,4 +6,4 @@ | |
# for more details. | ||
# | ||
|
||
obj-y := setup.o | ||
obj-y := setup.o sdram.o |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,52 @@ | ||
/* | ||
* Ecovec24 sdram self/auto-refresh setup code | ||
* | ||
* Copyright (C) 2009 Magnus Damm | ||
* | ||
* This file is subject to the terms and conditions of the GNU General Public | ||
* License. See the file "COPYING" in the main directory of this archive | ||
* for more details. | ||
*/ | ||
|
||
#include <linux/sys.h> | ||
#include <linux/errno.h> | ||
#include <linux/linkage.h> | ||
#include <asm/asm-offsets.h> | ||
#include <asm/suspend.h> | ||
#include <asm/romimage-macros.h> | ||
|
||
/* code to enter and leave self-refresh. must be self-contained. | ||
* this code will be copied to on-chip memory and executed from there. | ||
*/ | ||
.balign 4 | ||
ENTRY(ecovec24_sdram_enter_start) | ||
|
||
/* DBSC: put memory in self-refresh mode */ | ||
|
||
ED 0xFD000010, 0x00000000 /* DBEN */ | ||
ED 0xFD000040, 0x00000000 /* DBRFPDN0 */ | ||
ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */ | ||
ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */ | ||
ED 0xFD000040, 0x00000001 /* DBRFPDN0 */ | ||
|
||
rts | ||
nop | ||
|
||
ENTRY(ecovec24_sdram_enter_end) | ||
|
||
.balign 4 | ||
ENTRY(ecovec24_sdram_leave_start) | ||
|
||
/* DBSC: put memory in auto-refresh mode */ | ||
|
||
ED 0xFD000040, 0x00000000 /* DBRFPDN0 */ | ||
WAIT 1 | ||
ED 0xFD000014, 0x00000002 /* DBCMDCNT (PALL) */ | ||
ED 0xFD000014, 0x00000004 /* DBCMDCNT (REF) */ | ||
ED 0xFD000010, 0x00000001 /* DBEN */ | ||
ED 0xFD000040, 0x00010000 /* DBRFPDN0 */ | ||
|
||
rts | ||
nop | ||
|
||
ENTRY(ecovec24_sdram_leave_end) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters