mpr2.h 3.0 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Configuation settings for MPR2
  3. *
  4. * Copyright (C) 2008
  5. * Mark Jonas <mark.jonas@de.bosch.com>
  6. *
  7. * See file CREDITS for list of people who contributed to this
  8. * project.
  9. *
  10. * This program is free software; you can redistribute it and/or
  11. * modify it under the terms of the GNU General Public License as
  12. * published by the Free Software Foundation; either version 2 of
  13. * the License, or (at your option) any later version.
  14. *
  15. * This program is distributed in the hope that it will be useful,
  16. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  17. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  18. * GNU General Public License for more details.
  19. *
  20. * You should have received a copy of the GNU General Public License
  21. * along with this program; if not, write to the Free Software
  22. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  23. * MA 02111-1307 USA
  24. */
  25. #ifndef __MPR2_H
  26. #define __MPR2_H
  27. /* Supported commands */
  28. #define CONFIG_CMD_ENV
  29. #define CONFIG_CMD_CACHE
  30. #define CONFIG_CMD_MEMORY
  31. #define CONFIG_CMD_FLASH
  32. /* Default environment variables */
  33. #define CONFIG_BAUDRATE 115200
  34. #define CONFIG_BOOTARGS "console=ttySC0,115200"
  35. #define CONFIG_BOOTFILE /boot/zImage
  36. #define CONFIG_LOADADDR 0x8E000000
  37. #define CONFIG_VERSION_VARIABLE
  38. /* CPU and platform */
  39. #define CONFIG_SH 1
  40. #define CONFIG_SH3 1
  41. #define CONFIG_CPU_SH7720 1
  42. #define CONFIG_MPR2 1
  43. /* U-Boot internals */
  44. #define CFG_LONGHELP /* undef to save memory */
  45. #define CFG_PROMPT "=> " /* Monitor Command Prompt */
  46. #define CFG_CBSIZE 256 /* Buffer size for input from the Console */
  47. #define CFG_PBSIZE 256 /* Buffer size for Console output */
  48. #define CFG_MAXARGS 16 /* max args accepted for monitor commands */
  49. #define CFG_BARGSIZE 512 /* Buffer size for Boot Arguments passed to kernel */
  50. #define CFG_BAUDRATE_TABLE { 115200 } /* List of legal baudrate settings for this board */
  51. #define CFG_LOAD_ADDR (CFG_SDRAM_BASE + 32 * 1024 * 1024)
  52. #define CFG_MONITOR_BASE CFG_FLASH_BASE
  53. #define CFG_MONITOR_LEN (128 * 1024)
  54. #define CFG_MALLOC_LEN (256 * 1024)
  55. #define CFG_GBL_DATA_SIZE 256
  56. /* Memory */
  57. #define CFG_SDRAM_BASE 0x8C000000
  58. #define CFG_SDRAM_SIZE (64 * 1024 * 1024)
  59. #define CFG_MEMTEST_START CFG_SDRAM_BASE
  60. #define CFG_MEMTEST_END (CFG_MEMTEST_START + (60 * 1024 * 1024))
  61. /* Flash */
  62. #define CFG_FLASH_CFI
  63. #define CFG_FLASH_CFI_DRIVER
  64. #define CFG_FLASH_EMPTY_INFO
  65. #define CFG_FLASH_BASE 0xA0000000
  66. #define CFG_MAX_FLASH_SECT 256
  67. #define CFG_MAX_FLASH_BANKS 1
  68. #define CFG_FLASH_BANKS_LIST { CFG_FLASH_BASE }
  69. #define CFG_ENV_IS_IN_FLASH
  70. #define CFG_ENV_SECT_SIZE (128 * 1024)
  71. #define CFG_ENV_SIZE CFG_ENV_SECT_SIZE
  72. #define CFG_ENV_ADDR (CFG_MONITOR_BASE + CFG_MONITOR_LEN)
  73. #define CFG_FLASH_ERASE_TOUT 120000
  74. #define CFG_FLASH_WRITE_TOUT 500
  75. /* Clocks */
  76. #define CONFIG_SYS_CLK_FREQ 24000000
  77. #define TMU_CLK_DIVIDER 4 /* 4 (default), 16, 64, 256 or 1024 */
  78. #define CFG_HZ (CONFIG_SYS_CLK_FREQ / TMU_CLK_DIVIDER)
  79. /* UART */
  80. #define CFG_SCIF_CONSOLE 1
  81. #define CONFIG_CONS_SCIF0 1
  82. #endif /* __MPR2_H */