cm-bf533.c 478 B

12345678910111213141516171819202122232425
  1. /*
  2. * U-boot - main board file
  3. *
  4. * Copyright (c) 2005-2008 Analog Devices Inc.
  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: Bluetechnix CM-BF533 board\n");
  13. printf(" Support: http://www.bluetechnix.at/\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. }