|
@@ -9,7 +9,6 @@
|
|
#include <stdio_dev.h>
|
|
#include <stdio_dev.h>
|
|
#include <version.h>
|
|
#include <version.h>
|
|
#include <net.h>
|
|
#include <net.h>
|
|
-#include <atmel_mci.h>
|
|
|
|
|
|
|
|
#ifdef CONFIG_BITBANGMII
|
|
#ifdef CONFIG_BITBANGMII
|
|
#include <miiphy.h>
|
|
#include <miiphy.h>
|
|
@@ -30,6 +29,12 @@ DECLARE_GLOBAL_DATA_PTR;
|
|
|
|
|
|
unsigned long monitor_flash_len;
|
|
unsigned long monitor_flash_len;
|
|
|
|
|
|
|
|
+__weak void dram_init_banksize(void)
|
|
|
|
+{
|
|
|
|
+ gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
|
|
|
|
+ gd->bd->bi_dram[0].size = gd->ram_size;
|
|
|
|
+}
|
|
|
|
+
|
|
/* Weak aliases for optional board functions */
|
|
/* Weak aliases for optional board functions */
|
|
static int __do_nothing(void)
|
|
static int __do_nothing(void)
|
|
{
|
|
{
|
|
@@ -38,57 +43,6 @@ static int __do_nothing(void)
|
|
int board_postclk_init(void) __attribute__((weak, alias("__do_nothing")));
|
|
int board_postclk_init(void) __attribute__((weak, alias("__do_nothing")));
|
|
int board_early_init_r(void) __attribute__((weak, alias("__do_nothing")));
|
|
int board_early_init_r(void) __attribute__((weak, alias("__do_nothing")));
|
|
|
|
|
|
-/* provide cpu_mmc_init, to overwrite provide board_mmc_init */
|
|
|
|
-int cpu_mmc_init(bd_t *bd)
|
|
|
|
-{
|
|
|
|
- /* This calls the atmel_mci_init in gen_atmel_mci.c */
|
|
|
|
- return atmel_mci_init((void *)ATMEL_BASE_MMCI);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-#ifdef CONFIG_SYS_DMA_ALLOC_LEN
|
|
|
|
-#include <asm/arch/cacheflush.h>
|
|
|
|
-#include <asm/io.h>
|
|
|
|
-
|
|
|
|
-static unsigned long dma_alloc_start;
|
|
|
|
-static unsigned long dma_alloc_end;
|
|
|
|
-static unsigned long dma_alloc_brk;
|
|
|
|
-
|
|
|
|
-static void dma_alloc_init(void)
|
|
|
|
-{
|
|
|
|
- unsigned long monitor_addr;
|
|
|
|
-
|
|
|
|
- monitor_addr = CONFIG_SYS_MONITOR_BASE + gd->reloc_off;
|
|
|
|
- dma_alloc_end = monitor_addr - CONFIG_SYS_MALLOC_LEN;
|
|
|
|
- dma_alloc_start = dma_alloc_end - CONFIG_SYS_DMA_ALLOC_LEN;
|
|
|
|
- dma_alloc_brk = dma_alloc_start;
|
|
|
|
-
|
|
|
|
- printf("DMA: Using memory from 0x%08lx to 0x%08lx\n",
|
|
|
|
- dma_alloc_start, dma_alloc_end);
|
|
|
|
-
|
|
|
|
- invalidate_dcache_range((unsigned long)cached(dma_alloc_start),
|
|
|
|
- dma_alloc_end);
|
|
|
|
-}
|
|
|
|
-
|
|
|
|
-void *dma_alloc_coherent(size_t len, unsigned long *handle)
|
|
|
|
-{
|
|
|
|
- unsigned long paddr = dma_alloc_brk;
|
|
|
|
-
|
|
|
|
- if (dma_alloc_brk + len > dma_alloc_end)
|
|
|
|
- return NULL;
|
|
|
|
-
|
|
|
|
- dma_alloc_brk = ((paddr + len + CONFIG_SYS_DCACHE_LINESZ - 1)
|
|
|
|
- & ~(CONFIG_SYS_DCACHE_LINESZ - 1));
|
|
|
|
-
|
|
|
|
- *handle = paddr;
|
|
|
|
- return uncached(paddr);
|
|
|
|
-}
|
|
|
|
-#else
|
|
|
|
-static inline void dma_alloc_init(void)
|
|
|
|
-{
|
|
|
|
-
|
|
|
|
-}
|
|
|
|
-#endif
|
|
|
|
-
|
|
|
|
static int init_baudrate(void)
|
|
static int init_baudrate(void)
|
|
{
|
|
{
|
|
gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
|
|
gd->baudrate = getenv_ulong("baudrate", 10, CONFIG_BAUDRATE);
|
|
@@ -134,7 +88,6 @@ void board_init_f(ulong board_type)
|
|
unsigned long monitor_len;
|
|
unsigned long monitor_len;
|
|
unsigned long monitor_addr;
|
|
unsigned long monitor_addr;
|
|
unsigned long addr;
|
|
unsigned long addr;
|
|
- long sdram_size;
|
|
|
|
|
|
|
|
/* Initialize the global data pointer */
|
|
/* Initialize the global data pointer */
|
|
memset(&gd_data, 0, sizeof(gd_data));
|
|
memset(&gd_data, 0, sizeof(gd_data));
|
|
@@ -142,17 +95,17 @@ void board_init_f(ulong board_type)
|
|
|
|
|
|
/* Perform initialization sequence */
|
|
/* Perform initialization sequence */
|
|
board_early_init_f();
|
|
board_early_init_f();
|
|
- cpu_init();
|
|
|
|
|
|
+ arch_cpu_init();
|
|
board_postclk_init();
|
|
board_postclk_init();
|
|
env_init();
|
|
env_init();
|
|
init_baudrate();
|
|
init_baudrate();
|
|
serial_init();
|
|
serial_init();
|
|
console_init_f();
|
|
console_init_f();
|
|
display_banner();
|
|
display_banner();
|
|
- sdram_size = initdram(board_type);
|
|
|
|
|
|
+ dram_init();
|
|
|
|
|
|
/* If we have no SDRAM, we can't go on */
|
|
/* If we have no SDRAM, we can't go on */
|
|
- if (sdram_size <= 0)
|
|
|
|
|
|
+ if (gd->ram_size <= 0)
|
|
panic("No working SDRAM available\n");
|
|
panic("No working SDRAM available\n");
|
|
|
|
|
|
/*
|
|
/*
|
|
@@ -166,7 +119,7 @@ void board_init_f(ulong board_type)
|
|
* - global data struct
|
|
* - global data struct
|
|
* - stack
|
|
* - stack
|
|
*/
|
|
*/
|
|
- addr = CONFIG_SYS_SDRAM_BASE + sdram_size;
|
|
|
|
|
|
+ addr = CONFIG_SYS_SDRAM_BASE + gd->ram_size;
|
|
monitor_len = (char *)(&__bss_end) - _text;
|
|
monitor_len = (char *)(&__bss_end) - _text;
|
|
|
|
|
|
/*
|
|
/*
|
|
@@ -180,12 +133,6 @@ void board_init_f(ulong board_type)
|
|
/* Reserve memory for malloc() */
|
|
/* Reserve memory for malloc() */
|
|
addr -= CONFIG_SYS_MALLOC_LEN;
|
|
addr -= CONFIG_SYS_MALLOC_LEN;
|
|
|
|
|
|
-#ifdef CONFIG_SYS_DMA_ALLOC_LEN
|
|
|
|
- /* Reserve DMA memory (must be cache aligned) */
|
|
|
|
- addr &= ~(CONFIG_SYS_DCACHE_LINESZ - 1);
|
|
|
|
- addr -= CONFIG_SYS_DMA_ALLOC_LEN;
|
|
|
|
-#endif
|
|
|
|
-
|
|
|
|
#ifdef CONFIG_LCD
|
|
#ifdef CONFIG_LCD
|
|
#ifdef CONFIG_FB_ADDR
|
|
#ifdef CONFIG_FB_ADDR
|
|
printf("LCD: Frame buffer allocated at preset 0x%08x\n",
|
|
printf("LCD: Frame buffer allocated at preset 0x%08x\n",
|
|
@@ -210,16 +157,11 @@ void board_init_f(ulong board_type)
|
|
|
|
|
|
/* And finally, a new, bigger stack. */
|
|
/* And finally, a new, bigger stack. */
|
|
new_sp = (unsigned long *)addr;
|
|
new_sp = (unsigned long *)addr;
|
|
- gd->arch.stack_end = addr;
|
|
|
|
|
|
+ gd->start_addr_sp = addr;
|
|
*(--new_sp) = 0;
|
|
*(--new_sp) = 0;
|
|
*(--new_sp) = 0;
|
|
*(--new_sp) = 0;
|
|
|
|
|
|
- /*
|
|
|
|
- * Initialize the board information struct with the
|
|
|
|
- * information we have.
|
|
|
|
- */
|
|
|
|
- bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
|
|
|
|
- bd->bi_dram[0].size = sdram_size;
|
|
|
|
|
|
+ dram_init_banksize();
|
|
|
|
|
|
memcpy(new_gd, gd, sizeof(gd_t));
|
|
memcpy(new_gd, gd, sizeof(gd_t));
|
|
|
|
|
|
@@ -264,7 +206,6 @@ void board_init_r(gd_t *new_gd, ulong dest_addr)
|
|
/* The malloc area is right below the monitor image in RAM */
|
|
/* The malloc area is right below the monitor image in RAM */
|
|
mem_malloc_init(CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
|
|
mem_malloc_init(CONFIG_SYS_MONITOR_BASE + gd->reloc_off -
|
|
CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN);
|
|
CONFIG_SYS_MALLOC_LEN, CONFIG_SYS_MALLOC_LEN);
|
|
- dma_alloc_init();
|
|
|
|
|
|
|
|
enable_interrupts();
|
|
enable_interrupts();
|
|
|
|
|