upstream u-boot with additional patches for our devices/boards:
https://lists.denx.de/pipermail/u-boot/2017-March/282789.html (AXP crashes) ;
Gbit ethernet patch for some LIME2 revisions ;
with SPI flash support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
37 lines
982 B
37 lines
982 B
#include <config.h>
|
|
#include <common.h>
|
|
#include <asm/hardware.h>
|
|
#include <dataflash.h>
|
|
|
|
int AT91F_GetMuxStatus(void) {
|
|
#ifdef DATAFLASH_MMC_SELECT
|
|
AT91C_BASE_PIOB->PIO_PER = DATAFLASH_MMC_SELECT; /* Set in PIO mode */
|
|
AT91C_BASE_PIOB->PIO_OER = DATAFLASH_MMC_SELECT; /* Configure in output */
|
|
|
|
|
|
if(AT91C_BASE_PIOB->PIO_ODSR & DATAFLASH_MMC_SELECT) {
|
|
return 1;
|
|
} else {
|
|
return 0;
|
|
}
|
|
#endif
|
|
return 0;
|
|
}
|
|
|
|
void AT91F_SelectMMC(void) {
|
|
#ifdef DATAFLASH_MMC_SELECT
|
|
AT91C_BASE_PIOB->PIO_PER = DATAFLASH_MMC_SELECT; /* Set in PIO mode */
|
|
AT91C_BASE_PIOB->PIO_OER = DATAFLASH_MMC_SELECT; /* Configure in output */
|
|
/* Set Output */
|
|
AT91C_BASE_PIOB->PIO_SODR = DATAFLASH_MMC_SELECT;
|
|
#endif
|
|
}
|
|
|
|
void AT91F_SelectSPI(void) {
|
|
#ifdef DATAFLASH_MMC_SELECT
|
|
AT91C_BASE_PIOB->PIO_PER = DATAFLASH_MMC_SELECT; /* Set in PIO mode */
|
|
AT91C_BASE_PIOB->PIO_OER = DATAFLASH_MMC_SELECT; /* Configure in output */
|
|
/* Clear Output */
|
|
AT91C_BASE_PIOB->PIO_CODR = DATAFLASH_MMC_SELECT;
|
|
#endif
|
|
}
|
|
|