-
Notifications
You must be signed in to change notification settings - Fork 88
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
bios: remove references to 'DDR' SDRAM, as we also support SDR SDRAM
1 parent
e9b49eb
commit dc2024f
Showing
3 changed files
with
29 additions
and
27 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
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
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,13 +1,13 @@ | ||
#ifndef __SDRAM_H | ||
#define __SDRAM_H | ||
|
||
void ddrsw(void); | ||
void ddrhw(void); | ||
void ddrrow(char *_row); | ||
void ddrrd(char *startaddr); | ||
void ddrwr(char *startaddr); | ||
void sdrsw(void); | ||
void sdrhw(void); | ||
void sdrrow(char *_row); | ||
void sdrrd(char *startaddr); | ||
void sdrwr(char *startaddr); | ||
int memtest_silent(void); | ||
int memtest(void); | ||
int ddrinit(void); | ||
int sdrinit(void); | ||
|
||
#endif /* __SDRAM_H */ |