ibf-dsp561.c 465 B

12345678910111213141516171819202122232425
  1. /*
  2. * U-boot - main board file
  3. *
  4. * Copyright (c) 2008-2009 I-SYST.
  5. *
  6. * Licensed under the GPL-2 or later.
  7. */
  8. #include <common.h>
  9. DECLARE_GLOBAL_DATA_PTR;
  10. int checkboard(void)
  11. {
  12. printf("Board: I-SYST IBF-DSP561 Micromodule\n");
  13. printf(" Support: http://www.i-syst.com/\n");
  14. return 0;
  15. }
  16. phys_size_t initdram(int board_type)
  17. {
  18. gd->bd->bi_memstart = CONFIG_SYS_SDRAM_BASE;
  19. gd->bd->bi_memsize = CONFIG_SYS_MAX_RAM_SIZE;
  20. return gd->bd->bi_memsize;
  21. }