adp-ag101p.c 1.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081
  1. /*
  2. * Copyright (C) 2011 Andes Technology Corporation
  3. * Shawn Lin, Andes Technology Corporation <nobuhiro@andestech.com>
  4. * Macpaul Lin, Andes Technology Corporation <macpaul@andestech.com>
  5. *
  6. * SPDX-License-Identifier: GPL-2.0+
  7. */
  8. #include <common.h>
  9. #include <netdev.h>
  10. #include <asm/io.h>
  11. #include <faraday/ftsdc010.h>
  12. #include <faraday/ftsmc020.h>
  13. DECLARE_GLOBAL_DATA_PTR;
  14. /*
  15. * Miscellaneous platform dependent initializations
  16. */
  17. int board_init(void)
  18. {
  19. /*
  20. * refer to BOOT_PARAMETER_PA_BASE within
  21. * "linux/arch/nds32/include/asm/misc_spec.h"
  22. */
  23. gd->bd->bi_arch_number = MACH_TYPE_ADPAG101P;
  24. gd->bd->bi_boot_params = PHYS_SDRAM_0 + 0x400;
  25. return 0;
  26. }
  27. int dram_init(void)
  28. {
  29. unsigned long sdram_base = PHYS_SDRAM_0;
  30. unsigned long expected_size = PHYS_SDRAM_0_SIZE + PHYS_SDRAM_1_SIZE;
  31. unsigned long actual_size;
  32. actual_size = get_ram_size((void *)sdram_base, expected_size);
  33. gd->ram_size = actual_size;
  34. if (expected_size != actual_size) {
  35. printf("Warning: Only %lu of %lu MiB SDRAM is working\n",
  36. actual_size >> 20, expected_size >> 20);
  37. }
  38. return 0;
  39. }
  40. void dram_init_banksize(void)
  41. {
  42. gd->bd->bi_dram[0].start = PHYS_SDRAM_0;
  43. gd->bd->bi_dram[0].size = PHYS_SDRAM_0_SIZE;
  44. gd->bd->bi_dram[1].start = PHYS_SDRAM_1;
  45. gd->bd->bi_dram[1].size = PHYS_SDRAM_1_SIZE;
  46. }
  47. int board_eth_init(bd_t *bd)
  48. {
  49. return ftmac100_initialize(bd);
  50. }
  51. ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
  52. {
  53. if (banknum == 0) { /* non-CFI boot flash */
  54. info->portwidth = FLASH_CFI_8BIT;
  55. info->chipwidth = FLASH_CFI_BY8;
  56. info->interface = FLASH_CFI_X8;
  57. return 1;
  58. } else {
  59. return 0;
  60. }
  61. }
  62. int board_mmc_init(bd_t *bis)
  63. {
  64. ftsdc010_mmc_init(0);
  65. return 0;
  66. }