adp-ag101p.c 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091929394
  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. #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH)
  10. #include <netdev.h>
  11. #endif
  12. #include <linux/io.h>
  13. #include <asm/io.h>
  14. #include <asm/mach-types.h>
  15. #include <faraday/ftsdc010.h>
  16. #include <faraday/ftsmc020.h>
  17. DECLARE_GLOBAL_DATA_PTR;
  18. /*
  19. * Miscellaneous platform dependent initializations
  20. */
  21. int board_init(void)
  22. {
  23. /*
  24. * refer to BOOT_PARAMETER_PA_BASE within
  25. * "linux/arch/nds32/include/asm/misc_spec.h"
  26. */
  27. printf("Board: %s\n" , CONFIG_SYS_BOARD);
  28. gd->bd->bi_arch_number = MACH_TYPE_ADPAG101P;
  29. gd->bd->bi_boot_params = PHYS_SDRAM_0 + 0x400;
  30. return 0;
  31. }
  32. int dram_init(void)
  33. {
  34. unsigned long sdram_base = PHYS_SDRAM_0;
  35. unsigned long expected_size = PHYS_SDRAM_0_SIZE + PHYS_SDRAM_1_SIZE;
  36. unsigned long actual_size;
  37. actual_size = get_ram_size((void *)sdram_base, expected_size);
  38. gd->ram_size = actual_size;
  39. if (expected_size != actual_size) {
  40. printf("Warning: Only %lu of %lu MiB SDRAM is working\n",
  41. actual_size >> 20, expected_size >> 20);
  42. }
  43. return 0;
  44. }
  45. int dram_init_banksize(void)
  46. {
  47. gd->bd->bi_dram[0].start = PHYS_SDRAM_0;
  48. gd->bd->bi_dram[0].size = PHYS_SDRAM_0_SIZE;
  49. gd->bd->bi_dram[1].start = PHYS_SDRAM_1;
  50. gd->bd->bi_dram[1].size = PHYS_SDRAM_1_SIZE;
  51. return 0;
  52. }
  53. #if defined(CONFIG_FTMAC100) && !defined(CONFIG_DM_ETH)
  54. int board_eth_init(bd_t *bd)
  55. {
  56. return ftmac100_initialize(bd);
  57. }
  58. #endif
  59. ulong board_flash_get_legacy(ulong base, int banknum, flash_info_t *info)
  60. {
  61. if (banknum == 0) { /* non-CFI boot flash */
  62. info->portwidth = FLASH_CFI_8BIT;
  63. info->chipwidth = FLASH_CFI_BY8;
  64. info->interface = FLASH_CFI_X8;
  65. return 1;
  66. } else {
  67. return 0;
  68. }
  69. }
  70. int board_mmc_init(bd_t *bis)
  71. {
  72. #ifndef CONFIG_DM_MMC
  73. #ifdef CONFIG_FTSDC010
  74. ftsdc010_mmc_init(0);
  75. #endif
  76. #endif
  77. return 0;
  78. }