bf561-acvilon.h 3.8 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149
  1. /*
  2. * U-Boot - Configuration file for BF561 Acvilon System On Module
  3. * For more information please go to http://www.niistt.ru/
  4. */
  5. #ifndef __CONFIG_BF561_ACVILON_H__
  6. #define __CONFIG_BF561_ACVILON_H__
  7. #include <asm/config-pre.h>
  8. /*
  9. * Processor Settings
  10. */
  11. #define CONFIG_BFIN_CPU bf561-0.5
  12. #define CONFIG_BFIN_BOOT_MODE BFIN_BOOT_BYPASS
  13. /*
  14. * Clock Settings
  15. * CCLK = (CLKIN * VCO_MULT) / CCLK_DIV
  16. * SCLK = (CLKIN * VCO_MULT) / SCLK_DIV
  17. */
  18. /* CONFIG_CLKIN_HZ is any value in Hz */
  19. #define CONFIG_CLKIN_HZ 12000000
  20. /* CLKIN_HALF controls the DF bit in PLL_CTL 0 = CLKIN */
  21. /* 1 = CLKIN / 2 */
  22. #define CONFIG_CLKIN_HALF 0
  23. /* PLL_BYPASS controls the BYPASS bit in PLL_CTL 0 = do not bypass */
  24. /* 1 = bypass PLL */
  25. #define CONFIG_PLL_BYPASS 0
  26. /* VCO_MULT controls the MSEL (multiplier) bits in PLL_CTL */
  27. /* Values can range from 0-63 (where 0 means 64) */
  28. #define CONFIG_VCO_MULT 50
  29. /* CCLK_DIV controls the core clock divider */
  30. /* Values can be 1, 2, 4, or 8 ONLY */
  31. #define CONFIG_CCLK_DIV 1
  32. /* SCLK_DIV controls the system clock divider */
  33. /* Values can range from 1-15 */
  34. #define CONFIG_SCLK_DIV 5
  35. /*
  36. * Memory Settings
  37. */
  38. #define CONFIG_MEM_ADD_WDTH 10
  39. #define CONFIG_MEM_SIZE 128
  40. #define CONFIG_EBIU_SDRRC_VAL 0x300
  41. #define CONFIG_EBIU_SDGCTL_VAL 0x00B11189
  42. #define CONFIG_EBIU_AMGCTL_VAL 0x4e
  43. #define CONFIG_EBIU_AMBCTL0_VAL 0xffc2ffc2
  44. #define CONFIG_EBIU_AMBCTL1_VAL 0x99b35554
  45. #define CONFIG_SYS_MONITOR_LEN (384 * 1024)
  46. #define CONFIG_SYS_MALLOC_LEN (128 * 1024)
  47. /*
  48. * RTC Settings
  49. */
  50. #define CONFIG_RTC_DS1337
  51. #define CONFIG_SYS_I2C_RTC_ADDR 0x68
  52. /* I2C SYSMON (LM75, AD7414 is almost compatible) */
  53. #define CONFIG_DTT_LM75 1 /* ON Semi's LM75 */
  54. #define CONFIG_DTT_SENSORS {0} /* Sensor addresses */
  55. #define CONFIG_SYS_I2C_DTT_ADDR 0x49
  56. /*#define CONFIG_SYS_DTT_MAX_TEMP 70
  57. #define CONFIG_SYS_DTT_LOW_TEMP -30
  58. #define CONFIG_SYS_DTT_HYSTERESIS 3*/
  59. /*
  60. * Network Settings
  61. */
  62. #define ADI_CMDS_NETWORK 1
  63. #define CONFIG_CMD_DATE
  64. #define CONFIG_CMD_DTT
  65. #if defined(CONFIG_CMD_NET)
  66. #define CONFIG_SMC911X 1
  67. #define CONFIG_SMC911X_32_BIT
  68. /* #define CONFIG_SMC911X_16_BIT */
  69. #define CONFIG_SMC911X_BASE 0x28000000
  70. #endif /* (CONFIG_CMD_NET) */
  71. #define CONFIG_HOSTNAME bf561-acvilon
  72. /*
  73. * Flash Settings
  74. */
  75. #define CONFIG_SYS_NO_FLASH
  76. /*
  77. * I2C Settings
  78. */
  79. #define CONFIG_HARD_I2C
  80. /* Use 300kHz speed by default */
  81. #define CONFIG_SYS_I2C_SPEED 0x00
  82. #define CONFIG_PCA9564_I2C
  83. #define CONFIG_PCA9564_BASE 0x2c000000
  84. /*
  85. * SPI Settings
  86. */
  87. #define CONFIG_BFIN_SPI
  88. #define CONFIG_ENV_SPI_MAX_HZ 10000000
  89. #define CONFIG_SF_DEFAULT_SPEED 10000000
  90. /*
  91. * Env Storage Settings
  92. */
  93. #define CONFIG_ENV_IS_IN_SPI_FLASH
  94. #define CONFIG_ENV_SECT_SIZE (1056 * 8)
  95. #define CONFIG_ENV_OFFSET ((16 + 256) * 1056)
  96. #define CONFIG_ENV_SIZE (8 * 1056)
  97. /*
  98. * NAND Settings
  99. * We're using NAND_PLAT driver to make things simplier
  100. */
  101. #define CONFIG_NAND_PLAT
  102. #define CONFIG_CMD_NAND
  103. #define CONFIG_SYS_NAND_BASE 0x24000000
  104. #define CONFIG_SYS_MAX_NAND_DEVICE 1
  105. #define BFIN_NAND_CLE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 2))
  106. #define BFIN_NAND_ALE(chip) ((unsigned long)(chip)->IO_ADDR_W | (1 << 3))
  107. #define BFIN_NAND_WRITE(addr, cmd) \
  108. do { \
  109. bfin_write8(addr, cmd); \
  110. SSYNC(); \
  111. } while (0)
  112. #define NAND_PLAT_WRITE_CMD(chip, cmd) BFIN_NAND_WRITE(BFIN_NAND_CLE(chip), cmd)
  113. #define NAND_PLAT_WRITE_ADR(chip, cmd) BFIN_NAND_WRITE(BFIN_NAND_ALE(chip), cmd)
  114. #define NAND_PLAT_GPIO_DEV_READY GPIO_PF10
  115. /*
  116. * Misc Settings
  117. */
  118. #define CONFIG_UART_CONSOLE 0
  119. #define CONFIG_BAUDRATE 57600
  120. /*
  121. * Pull in common ADI header for remaining command/environment setup
  122. */
  123. #include <configs/bfin_adi_common.h>
  124. #endif /* __CONFIG_BF561_ACVILON_H__ */