lsxl.h 5.2 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182
  1. /*
  2. * Copyright (c) 2012 Michael Walle
  3. * Michael Walle <michael@walle.cc>
  4. *
  5. * See file CREDITS for list of people who contributed to this
  6. * project.
  7. *
  8. * This program is free software; you can redistribute it and/or
  9. * modify it under the terms of the GNU General Public License as
  10. * published by the Free Software Foundation; either version 2 of
  11. * the License, or (at your option) any later version.
  12. *
  13. * This program is distributed in the hope that it will be useful,
  14. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  15. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  16. * GNU General Public License for more details.
  17. *
  18. * You should have received a copy of the GNU General Public License
  19. * along with this program; if not, write to the Free Software
  20. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  21. * MA 02110-1301 USA
  22. */
  23. #ifndef _CONFIG_LSXL_H
  24. #define _CONFIG_LSXL_H
  25. /*
  26. * Version number information
  27. */
  28. #if defined(CONFIG_LSCHLV2)
  29. #define CONFIG_IDENT_STRING " LS-CHLv2"
  30. #define CONFIG_SYS_KWD_CONFIG $(SRCTREE)/$(CONFIG_BOARDDIR)/kwbimage-lschl.cfg
  31. #define CONFIG_MACH_TYPE 3006
  32. #define CONFIG_SYS_TCLK 166666667 /* 166 MHz */
  33. #elif defined(CONFIG_LSXHL)
  34. #define CONFIG_IDENT_STRING " LS-XHL"
  35. #define CONFIG_SYS_KWD_CONFIG $(SRCTREE)/$(CONFIG_BOARDDIR)/kwbimage-lsxhl.cfg
  36. #define CONFIG_MACH_TYPE 2663
  37. /* CONFIG_SYS_TCLK is 200000000 by default */
  38. #else
  39. #error "unknown board"
  40. #endif
  41. /*
  42. * General configuration options
  43. */
  44. #define CONFIG_FEROCEON_88FR131 /* CPU Core subversion */
  45. #define CONFIG_KIRKWOOD /* SOC Family Name */
  46. #define CONFIG_KW88F6281 /* SOC Name */
  47. #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
  48. #define CONFIG_MISC_INIT_R
  49. #define CONFIG_SHOW_BOOT_PROGRESS
  50. #define CONFIG_RANDOM_MACADDR
  51. #define CONFIG_KIRKWOOD_GPIO
  52. #define CONFIG_OF_LIBFDT
  53. #define CONFIG_SYS_NO_FLASH
  54. #define CONFIG_SYS_HUSH_PARSER
  55. #define CONFIG_SYS_CONSOLE_IS_IN_ENV
  56. #define CONFIG_SYS_CONSOLE_INFO_QUIET
  57. /*
  58. * Enable u-boot API for standalone programs.
  59. */
  60. #define CONFIG_API
  61. /*
  62. * Commands configuration
  63. */
  64. #include <config_cmd_default.h>
  65. #define CONFIG_CMD_DHCP
  66. #define CONFIG_CMD_ELF
  67. #define CONFIG_CMD_ENV
  68. #define CONFIG_CMD_EXT2
  69. #define CONFIG_CMD_FAT
  70. #define CONFIG_CMD_IDE
  71. #define CONFIG_CMD_PING
  72. #define CONFIG_CMD_PING
  73. #define CONFIG_CMD_SF
  74. #define CONFIG_CMD_SPI
  75. #define CONFIG_CMD_USB
  76. #define CONFIG_DOS_PARTITION
  77. #define CONFIG_EFI_PARTITION
  78. /*
  79. * mv-common.h should be defined after CMD configs since it used them
  80. * to enable certain macros
  81. */
  82. #include "mv-common.h"
  83. /* ST M25P40 */
  84. #undef CONFIG_SPI_FLASH_MACRONIX
  85. #define CONFIG_SPI_FLASH_STMICRO
  86. #undef CONFIG_ENV_SPI_MAX_HZ
  87. #define CONFIG_ENV_SPI_MAX_HZ 25000000
  88. #undef CONFIG_SF_DEFAULT_SPEED
  89. #define CONFIG_SF_DEFAULT_SPEED 25000000
  90. #undef CONFIG_SYS_PROMPT
  91. #define CONFIG_SYS_PROMPT "=> "
  92. #define CONFIG_SYS_PROMPT_HUSH_PS2 "> "
  93. /*
  94. * Environment variables configurations
  95. */
  96. #ifdef CONFIG_SPI_FLASH
  97. #define CONFIG_SYS_MAX_FLASH_BANKS 1
  98. #define CONFIG_SYS_MAX_FLASH_SECT 8
  99. #define CONFIG_ENV_IS_IN_SPI_FLASH 1
  100. #define CONFIG_ENV_SECT_SIZE 0x10000 /* 64K */
  101. #else
  102. #define CONFIG_ENV_IS_NOWHERE
  103. #endif
  104. #define CONFIG_ENV_SIZE 0x10000 /* 64k */
  105. #define CONFIG_ENV_OFFSET 0x70000 /* env starts here */
  106. /*
  107. * Default environment variables
  108. */
  109. #define CONFIG_LOADADDR 0x00800000
  110. #define CONFIG_BOOTCOMMAND "run bootcmd_${bootsource}"
  111. #define CONFIG_BOOTARGS "console=ttyS0,115200 root=/dev/sda2"
  112. #define CONFIG_EXTRA_ENV_SETTINGS \
  113. "bootsource=hdd\0" \
  114. "hdpart=0:1\0" \
  115. "bootcmd_net=bootp 0x00100000 uImage " \
  116. "&& tftpboot 0x00800000 uInitrd " \
  117. "&& bootm 0x00100000 0x00800000\0" \
  118. "bootcmd_hdd=ide reset " \
  119. "&& ext2load ide ${hdpart} 0x00100000 /uImage " \
  120. "&& ext2load ide ${hdpart} 0x00800000 /uInitrd " \
  121. "&& bootm 0x00100000 0x00800000\0" \
  122. "bootcmd_usb=usb start " \
  123. "&& fatload usb 0:1 0x00100000 /uImage " \
  124. "&& fatload usb 0:1 0x00800000 /uInitrd " \
  125. "&& bootm 0x00100000 0x00800000\0" \
  126. "bootcmd_rescue=run config_nc_dhcp; run nc\0" \
  127. "eraseenv=sf probe 0 " \
  128. "&& sf erase " __stringify(CONFIG_ENV_OFFSET) \
  129. " +" __stringify(CONFIG_ENV_SIZE) "\0" \
  130. "config_nc_dhcp=setenv autoload_old ${autoload}; " \
  131. "setenv autoload no " \
  132. "&& bootp " \
  133. "&& setenv ncip " \
  134. "&& setenv autoload ${autoload_old}; " \
  135. "setenv autoload_old\0" \
  136. "standard_env=setenv ipaddr; setenv netmask; setenv serverip; " \
  137. "setenv ncip; setenv gatewayip; setenv ethact; " \
  138. "setenv bootfile; setenv dnsip; " \
  139. "setenv bootsource hdd; run ser\0" \
  140. "restore_env=run standard_env; saveenv; reset\0" \
  141. "ser=setenv stdin serial; setenv stdout serial; " \
  142. "setenv stderr serial\0" \
  143. "nc=setenv stdin nc; setenv stdout nc; setenv stderr nc\0" \
  144. "stdin=serial\0" \
  145. "stdout=serial\0" \
  146. "stderr=serial\0"
  147. /*
  148. * Ethernet Driver configuration
  149. */
  150. #ifdef CONFIG_CMD_NET
  151. #define CONFIG_MVGBE_PORTS {0, 1} /* enable port 1 only */
  152. #define CONFIG_PHY_BASE_ADR 7
  153. #undef CONFIG_RESET_PHY_R
  154. #endif /* CONFIG_CMD_NET */
  155. #ifdef CONFIG_CMD_IDE
  156. #undef CONFIG_IDE_LED
  157. #undef CONFIG_SYS_IDE_MAXBUS
  158. #define CONFIG_SYS_IDE_MAXBUS 1
  159. #undef CONFIG_SYS_IDE_MAXDEVICE
  160. #define CONFIG_SYS_IDE_MAXDEVICE 1
  161. #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
  162. #endif
  163. #endif /* _CONFIG_LSXL_H */