2015-07-28 00:19:07 +08:00
|
|
|
#include <stdio.h>
|
|
|
|
#include <generated/csr.h>
|
|
|
|
|
|
|
|
#include "clock.h"
|
|
|
|
#include "flash_storage.h"
|
|
|
|
#include "rtiocrg.h"
|
|
|
|
|
|
|
|
void rtiocrg_init(void)
|
|
|
|
{
|
|
|
|
char b;
|
|
|
|
int clk;
|
|
|
|
|
2015-07-28 12:18:45 +08:00
|
|
|
#ifdef CSR_RTIO_CRG_PLL_RESET_ADDR
|
2015-07-28 00:19:07 +08:00
|
|
|
rtio_crg_pll_reset_write(0);
|
2015-07-28 12:18:45 +08:00
|
|
|
#endif
|
2015-07-28 00:19:07 +08:00
|
|
|
b = 'i';
|
|
|
|
clk = 0;
|
|
|
|
fs_read("startup_clock", &b, 1, NULL);
|
|
|
|
if(b == 'i')
|
|
|
|
printf("Startup RTIO clock: internal\n");
|
|
|
|
else if(b == 'e') {
|
|
|
|
printf("Startup RTIO clock: external\n");
|
|
|
|
clk = 1;
|
|
|
|
} else
|
|
|
|
printf("WARNING: unknown startup_clock entry in flash storage\n");
|
|
|
|
|
2015-07-28 00:38:38 +08:00
|
|
|
if(!rtiocrg_switch_clock(clk)) {
|
2015-07-28 00:19:07 +08:00
|
|
|
printf("WARNING: startup RTIO clock failed\n");
|
2015-07-28 00:38:38 +08:00
|
|
|
printf("WARNING: this may cause the system initialization to fail\n");
|
|
|
|
printf("WARNING: fix clocking and reset the device\n");
|
|
|
|
}
|
2015-07-28 00:19:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int rtiocrg_check(void)
|
|
|
|
{
|
2015-07-28 12:18:45 +08:00
|
|
|
#ifdef CSR_RTIO_CRG_PLL_RESET_ADDR
|
2015-07-28 00:19:07 +08:00
|
|
|
return rtio_crg_pll_locked_read();
|
2015-07-28 12:18:45 +08:00
|
|
|
#else
|
|
|
|
return 1;
|
|
|
|
#endif
|
2015-07-28 00:19:07 +08:00
|
|
|
}
|
|
|
|
|
|
|
|
int rtiocrg_switch_clock(int clk)
|
|
|
|
{
|
|
|
|
int current_clk;
|
|
|
|
|
|
|
|
current_clk = rtio_crg_clock_sel_read();
|
|
|
|
if(clk == current_clk) {
|
2015-07-28 12:18:45 +08:00
|
|
|
#ifdef CSR_RTIO_CRG_PLL_RESET_ADDR
|
2015-07-28 00:19:07 +08:00
|
|
|
busywait_us(150);
|
|
|
|
if(!rtio_crg_pll_locked_read())
|
|
|
|
return 0;
|
2015-07-28 12:18:45 +08:00
|
|
|
#endif
|
2015-07-28 00:19:07 +08:00
|
|
|
return 1;
|
|
|
|
}
|
2015-07-28 12:18:45 +08:00
|
|
|
#ifdef CSR_RTIO_CRG_PLL_RESET_ADDR
|
2015-07-28 00:19:07 +08:00
|
|
|
rtio_crg_pll_reset_write(1);
|
2015-07-28 12:18:45 +08:00
|
|
|
#endif
|
2015-07-28 00:19:07 +08:00
|
|
|
rtio_crg_clock_sel_write(clk);
|
2015-07-28 12:18:45 +08:00
|
|
|
#ifdef CSR_RTIO_CRG_PLL_RESET_ADDR
|
2015-07-28 00:19:07 +08:00
|
|
|
rtio_crg_pll_reset_write(0);
|
|
|
|
busywait_us(150);
|
|
|
|
if(!rtio_crg_pll_locked_read())
|
|
|
|
return 0;
|
2015-07-28 12:18:45 +08:00
|
|
|
#endif
|
2015-07-28 00:19:07 +08:00
|
|
|
return 1;
|
|
|
|
}
|