highbank.c 2.0 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293
  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 <netdev.h>
  20. #include <scsi.h>
  21. #include <asm/sizes.h>
  22. #include <asm/io.h>
  23. #define HB_SREG_A9_PWR_REQ 0xfff3cf00
  24. #define HB_SREG_A9_BOOT_SRC_STAT 0xfff3cf04
  25. #define HB_PWR_SUSPEND 0
  26. #define HB_PWR_SOFT_RESET 1
  27. #define HB_PWR_HARD_RESET 2
  28. #define HB_PWR_SHUTDOWN 3
  29. DECLARE_GLOBAL_DATA_PTR;
  30. /*
  31. * Miscellaneous platform dependent initialisations
  32. */
  33. int board_init(void)
  34. {
  35. icache_enable();
  36. return 0;
  37. }
  38. /* We know all the init functions have been run now */
  39. int board_eth_init(bd_t *bis)
  40. {
  41. int rc = 0;
  42. #ifdef CONFIG_CALXEDA_XGMAC
  43. rc += calxedaxgmac_initialize(0, 0xfff50000);
  44. rc += calxedaxgmac_initialize(1, 0xfff51000);
  45. #endif
  46. return rc;
  47. }
  48. int misc_init_r(void)
  49. {
  50. char envbuffer[16];
  51. u32 boot_choice;
  52. ahci_init(0xffe08000);
  53. scsi_scan(1);
  54. boot_choice = readl(HB_SREG_A9_BOOT_SRC_STAT) & 0xff;
  55. sprintf(envbuffer, "bootcmd%d", boot_choice);
  56. if (getenv(envbuffer)) {
  57. sprintf(envbuffer, "run bootcmd%d", boot_choice);
  58. setenv("bootcmd", envbuffer);
  59. } else
  60. setenv("bootcmd", "");
  61. return 0;
  62. }
  63. int dram_init(void)
  64. {
  65. gd->ram_size = SZ_512M;
  66. return 0;
  67. }
  68. void dram_init_banksize(void)
  69. {
  70. gd->bd->bi_dram[0].start = CONFIG_SYS_SDRAM_BASE;
  71. gd->bd->bi_dram[0].size = PHYS_SDRAM_1_SIZE;
  72. }
  73. void reset_cpu(ulong addr)
  74. {
  75. writel(HB_PWR_HARD_RESET, HB_SREG_A9_PWR_REQ);
  76. wfi();
  77. }