software/bios/litesdcard: remove sdcard_set_clk.
This commit is contained in:
parent
dfa3768d0e
commit
c466900322
|
@ -10,42 +10,6 @@
|
||||||
#include "../command.h"
|
#include "../command.h"
|
||||||
#include "../helpers.h"
|
#include "../helpers.h"
|
||||||
|
|
||||||
/**
|
|
||||||
* Command "sdclk"
|
|
||||||
*
|
|
||||||
* Configure SDcard clock frequency
|
|
||||||
*
|
|
||||||
*/
|
|
||||||
#ifdef CSR_SDCORE_BASE
|
|
||||||
static void sdclk(int nb_params, char **params)
|
|
||||||
{
|
|
||||||
unsigned int frequ;
|
|
||||||
char *c;
|
|
||||||
|
|
||||||
if (nb_params < 1) {
|
|
||||||
printf("sdclk <freq>");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
frequ = strtoul(params[0], &c, 0);
|
|
||||||
if (*c != 0) {
|
|
||||||
printf("Incorrect freq");
|
|
||||||
return;
|
|
||||||
}
|
|
||||||
|
|
||||||
sdcard_set_clk(frequ);
|
|
||||||
}
|
|
||||||
|
|
||||||
struct command_struct cmd_sdclk =
|
|
||||||
{
|
|
||||||
.func = sdclk,
|
|
||||||
.name = "sdclk",
|
|
||||||
.help = "Set SDCard clk freq (Mhz)",
|
|
||||||
};
|
|
||||||
|
|
||||||
define_command(sdclk, sdclk, "Set SDCard clk freq (Mhz)", LITESDCARD_CMDS);
|
|
||||||
#endif
|
|
||||||
|
|
||||||
/**
|
/**
|
||||||
* Command "sdinit"
|
* Command "sdinit"
|
||||||
*
|
*
|
||||||
|
|
|
@ -416,10 +416,6 @@ void sdcard_decode_csd(void) {
|
||||||
/* SDCard user functions */
|
/* SDCard user functions */
|
||||||
/*-----------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------*/
|
||||||
|
|
||||||
void sdcard_set_clk(uint32_t freq) {
|
|
||||||
printf("No SDClocker, returning.\n");
|
|
||||||
}
|
|
||||||
|
|
||||||
int sdcard_init(void) {
|
int sdcard_init(void) {
|
||||||
unsigned short rca;
|
unsigned short rca;
|
||||||
|
|
||||||
|
|
|
@ -92,7 +92,6 @@ int sdcard_set_block_count(unsigned int blockcnt);
|
||||||
/* SDCard user functions */
|
/* SDCard user functions */
|
||||||
/*-----------------------------------------------------------------------*/
|
/*-----------------------------------------------------------------------*/
|
||||||
|
|
||||||
void sdcard_set_clk(uint32_t freq);
|
|
||||||
int sdcard_init(void);
|
int sdcard_init(void);
|
||||||
void sdcard_read(uint32_t sector, uint32_t count, uint8_t* buf);
|
void sdcard_read(uint32_t sector, uint32_t count, uint8_t* buf);
|
||||||
void sdcard_write(uint32_t sector, uint32_t count, uint8_t* buf);
|
void sdcard_write(uint32_t sector, uint32_t count, uint8_t* buf);
|
||||||
|
|
Loading…
Reference in New Issue