Skip to content
Snippets Groups Projects
Commit c1886c61 authored by Gregory Nutt's avatar Gregory Nutt
Browse files

SAMV7: Apparently the data sheet is wrong, SDRAM clocking must be enabled at...

SAMV7:  Apparently the data sheet is wrong, SDRAM clocking must be enabled at the PMC or the SDRAM does not work!  The data sheet says that there is no clock control for SDRAMC
parent b689d8a7
No related branches found
No related tags found
No related merge requests found
......@@ -118,7 +118,7 @@
#define sam_isi_enableclk() sam_enableperiph1(SAM_PID_ISI)
#define sam_pwm1_enableclk() sam_enableperiph1(SAM_PID_PWM1)
#define sam_fpu_enableclk()
#define sam_sdramc_enableclk()
#define sam_sdramc_enableclk() sam_enableperiph1(SAM_PID_SDRAMC)
#define sam_wdt1_enableclk()
#define sam_ccw_enableclk()
......@@ -186,7 +186,7 @@
#define sam_isi_disableclk() sam_disableperiph1(SAM_PID_ISI)
#define sam_pwm1_disableclk() sam_disableperiph1(SAM_PID_PWM1)
#define sam_fpu_disableclk()
#define sam_sdramc_disableclk()
#define sam_sdramc_disableclk() sam_disableperiph1(SAM_PID_SDRAMC)
#define sam_wdt1_disableclk()
#define sam_ccw_disableclk()
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment