highbank.c 1.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657
  1. /*
  2. * Copyright 2010-2011 Calxeda, Inc.
  3. *
  4. * This program is free software; you can redistribute it and/or modify it
  5. * under the terms of the GNU General Public License as published by the Free
  6. * Software Foundation; either version 2 of the License, or (at your option)
  7. * any later version.
  8. *
  9. * This program is distributed in the hope it will be useful, but WITHOUT
  10. * ANY WARRANTY; without even the implied warranty of MERCHANTABILITY or
  11. * FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License for
  12. * more details.
  13. *
  14. * You should have received a copy of the GNU General Public License along with
  15. * this program. If not, see <http://www.gnu.org/licenses/>.
  16. */
  17. #include <common.h>
  18. #include <ahci.h>
  19. #include <scsi.h>
  20. #include <asm/sizes.h>
  21. DECLARE_GLOBAL_DATA_PTR;
  22. /*
  23. * Miscellaneous platform dependent initialisations
  24. */
  25. int board_init(void)
  26. {
  27. icache_enable();
  28. return 0;
  29. }
  30. int misc_init_r(void)
  31. {
  32. ahci_init(0xffe08000);
  33. scsi_scan(1);
  34. return 0;
  35. }
  36. int dram_init(void)
  37. {
  38. gd->ram_size = SZ_512M;
  39. return 0;
  40. }
  41. void dram_init_banksize(void)
  42. {
  43. gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
  44. gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
  45. }
  46. void reset_cpu(ulong addr)
  47. {
  48. }