flash.c 2.4 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495
  1. /*
  2. * (C) Copyright 2002
  3. * Wolfgang Denk, DENX Software Engineering, wd@denx.de.
  4. *
  5. * (C) Copyright 2002 Jun Gu <jung@artesyncp.com>
  6. * Add support for Am29F016D and dynamic switch setting.
  7. *
  8. * SPDX-License-Identifier: GPL-2.0+
  9. */
  10. /*
  11. * Modified 4/5/2001
  12. * Wait for completion of each sector erase command issued
  13. * 4/5/2001
  14. * Chris Hallinan - DS4.COM, Inc. - clh@net1plus.com
  15. */
  16. #include <common.h>
  17. #include <asm/ppc4xx.h>
  18. #include <asm/processor.h>
  19. #undef DEBUG
  20. #ifdef DEBUG
  21. #define DEBUGF(x...) printf(x)
  22. #else
  23. #define DEBUGF(x...)
  24. #endif /* DEBUG */
  25. static unsigned long flash_addr_table[1][CONFIG_SYS_MAX_FLASH_BANKS] = {
  26. {0xff900000, 0xff980000, 0xffc00000}, /* 0:000: configuraton 3 */
  27. };
  28. /*
  29. * include common flash code (for amcc boards)
  30. */
  31. #include "../common/flash.c"
  32. /*-----------------------------------------------------------------------
  33. * Functions
  34. */
  35. static ulong flash_get_size(vu_long * addr, flash_info_t * info);
  36. unsigned long flash_init(void)
  37. {
  38. unsigned long total_b = 0;
  39. unsigned long size_b[CONFIG_SYS_MAX_FLASH_BANKS];
  40. unsigned short index = 0;
  41. int i;
  42. /* read FPGA base register FPGA_REG0 */
  43. DEBUGF("\n");
  44. DEBUGF("FLASH: Index: %d\n", index);
  45. /* Init: no FLASHes known */
  46. for (i = 0; i < CONFIG_SYS_MAX_FLASH_BANKS; ++i) {
  47. flash_info[i].flash_id = FLASH_UNKNOWN;
  48. flash_info[i].sector_count = -1;
  49. flash_info[i].size = 0;
  50. /* check whether the address is 0 */
  51. if (flash_addr_table[index][i] == 0) {
  52. continue;
  53. }
  54. /* call flash_get_size() to initialize sector address */
  55. size_b[i] = flash_get_size((vu_long *)
  56. flash_addr_table[index][i],
  57. &flash_info[i]);
  58. flash_info[i].size = size_b[i];
  59. if (flash_info[i].flash_id == FLASH_UNKNOWN) {
  60. printf("## Unknown FLASH on Bank %d - Size = 0x%08lx = %ld MB\n",
  61. i, size_b[i], size_b[i] << 20);
  62. flash_info[i].sector_count = -1;
  63. flash_info[i].size = 0;
  64. }
  65. /* Monitor protection ON by default */
  66. (void)flash_protect(FLAG_PROTECT_SET, CONFIG_SYS_MONITOR_BASE,
  67. CONFIG_SYS_MONITOR_BASE + CONFIG_SYS_MONITOR_LEN - 1,
  68. &flash_info[2]);
  69. #ifdef CONFIG_ENV_IS_IN_FLASH
  70. (void)flash_protect(FLAG_PROTECT_SET, CONFIG_ENV_ADDR,
  71. CONFIG_ENV_ADDR + CONFIG_ENV_SECT_SIZE - 1,
  72. &flash_info[2]);
  73. (void)flash_protect(FLAG_PROTECT_SET, CONFIG_ENV_ADDR_REDUND,
  74. CONFIG_ENV_ADDR_REDUND + CONFIG_ENV_SECT_SIZE - 1,
  75. &flash_info[2]);
  76. #endif
  77. total_b += flash_info[i].size;
  78. }
  79. return total_b;
  80. }