Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
litex
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
1
Merge Requests
1
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
Jonathan Currier
litex
Commits
8af4e05c
Commit
8af4e05c
authored
Jul 07, 2020
by
Florent Kermarrec
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
software/litesdcard: use new clocking and use slow clock during initialization.
parent
52f36b12
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
13 additions
and
8 deletions
+13
-8
litex/soc/software/liblitesdcard/sdcard.c
litex/soc/software/liblitesdcard/sdcard.c
+13
-8
No files found.
litex/soc/software/liblitesdcard/sdcard.c
View file @
8af4e05c
...
...
@@ -21,8 +21,12 @@
//#define SDCARD_DEBUG
//#define SDCARD_CMD23_SUPPORT
#ifndef SDCARD_CLK_FREQ_INIT
#define SDCARD_CLK_FREQ_INIT 400000
#endif
#ifndef SDCARD_CLK_FREQ
#define SDCARD_CLK_FREQ
16
000000
#define SDCARD_CLK_FREQ
25
000000
#endif
unsigned
int
sdcard_response
[
SD_CMD_RESPONSE_SIZE
/
4
];
...
...
@@ -120,17 +124,14 @@ static void sdcard_set_clk_freq(uint32_t clk_freq) {
uint32_t
divider
;
divider
=
CONFIG_CLOCK_FREQUENCY
/
clk_freq
+
1
;
divider
=
(
1
<<
log2
(
divider
));
//#ifdef SDCARD_DEBUG
#ifdef SDCARD_DEBUG
printf
(
"Setting SDCard clk freq to "
);
if
(
clk_freq
>
1000000
)
printf
(
"%d MHz
\n
"
,
(
CONFIG_CLOCK_FREQUENCY
/
divider
)
/
1000000
);
else
printf
(
"%d KHz
\n
"
,
(
CONFIG_CLOCK_FREQUENCY
/
divider
)
/
1000
);
//#endif
sdphy_clocker_enable_write
(
0
);
#endif
sdphy_clocker_divider_write
(
divider
);
sdphy_clocker_enable_write
(
1
);
}
/*-----------------------------------------------------------------------*/
...
...
@@ -453,8 +454,8 @@ int sdcard_init(void) {
unsigned
short
rca
;
uint16_t
timeout
;
/* Set SD clk freq to
operational
frequency */
sdcard_set_clk_freq
(
SDCARD_CLK_FREQ
);
/* Set SD clk freq to
Initialization
frequency */
sdcard_set_clk_freq
(
SDCARD_CLK_FREQ
_INIT
);
busy_wait
(
1
);
for
(
timeout
=
1000
;
timeout
>
0
;
timeout
--
)
{
...
...
@@ -474,6 +475,10 @@ int sdcard_init(void) {
if
(
sdcard_send_ext_csd
()
!=
SD_OK
)
return
0
;
/* Set SD clk freq to Operational frequency */
sdcard_set_clk_freq
(
SDCARD_CLK_FREQ
);
busy_wait
(
1
);
/* Set SDCard in Operational state */
for
(
timeout
=
1000
;
timeout
>
0
;
timeout
--
)
{
sdcard_app_cmd
(
0
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment