openrd.h 4.1 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143
  1. /*
  2. * (C) Copyright 2009
  3. * Net Insight <www.netinsight.net>
  4. * Written-by: Simon Kagstrom <simon.kagstrom@netinsight.net>
  5. *
  6. * Based on sheevaplug.h:
  7. * (C) Copyright 2009
  8. * Marvell Semiconductor <www.marvell.com>
  9. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  10. *
  11. * See file CREDITS for list of people who contributed to this
  12. * project.
  13. *
  14. * This program is free software; you can redistribute it and/or
  15. * modify it under the terms of the GNU General Public License as
  16. * published by the Free Software Foundation; either version 2 of
  17. * the License, or (at your option) any later version.
  18. *
  19. * This program is distributed in the hope that it will be useful,
  20. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  21. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  22. * GNU General Public License for more details.
  23. *
  24. * You should have received a copy of the GNU General Public License
  25. * along with this program; if not, write to the Free Software
  26. * Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston,
  27. * MA 02110-1301 USA
  28. */
  29. #ifndef _CONFIG_OPENRD_H
  30. #define _CONFIG_OPENRD_H
  31. /*
  32. * Version number information
  33. */
  34. #ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
  35. # define CONFIG_IDENT_STRING "\nOpenRD-Ultimate"
  36. #else
  37. # ifdef CONFIG_BOARD_IS_OPENRD_CLIENT
  38. # define CONFIG_IDENT_STRING "\nOpenRD-Client"
  39. # else
  40. # ifdef CONFIG_BOARD_IS_OPENRD_BASE
  41. # define CONFIG_IDENT_STRING "\nOpenRD-Base"
  42. # else
  43. # error Unknown OpenRD board specified
  44. # endif
  45. # endif
  46. #endif
  47. /*
  48. * High Level Configuration Options (easy to change)
  49. */
  50. #define CONFIG_SHEEVA_88SV131 1 /* CPU Core subversion */
  51. #define CONFIG_KIRKWOOD 1 /* SOC Family Name */
  52. #define CONFIG_KW88F6281 1 /* SOC Name */
  53. #define CONFIG_MACH_OPENRD_BASE /* Machine type */
  54. #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
  55. /*
  56. * Commands configuration
  57. */
  58. #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
  59. #define CONFIG_SYS_MVFS
  60. #include <config_cmd_default.h>
  61. #define CONFIG_CMD_AUTOSCRIPT
  62. #define CONFIG_CMD_DHCP
  63. #define CONFIG_CMD_ENV
  64. #define CONFIG_CMD_MII
  65. #define CONFIG_CMD_NAND
  66. #define CONFIG_CMD_PING
  67. #define CONFIG_CMD_USB
  68. #define CONFIG_CMD_IDE
  69. /*
  70. * mv-common.h should be defined after CMD configs since it used them
  71. * to enable certain macros
  72. */
  73. #include "mv-common.h"
  74. /*
  75. * Environment variables configurations
  76. */
  77. #ifdef CONFIG_CMD_NAND
  78. #define CONFIG_ENV_IS_IN_NAND 1
  79. #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
  80. #else
  81. #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
  82. #endif
  83. /*
  84. * max 4k env size is enough, but in case of nand
  85. * it has to be rounded to sector size
  86. */
  87. #define CONFIG_ENV_SIZE 0x20000 /* 128k */
  88. #define CONFIG_ENV_ADDR 0x60000
  89. #define CONFIG_ENV_OFFSET 0x60000 /* env starts here */
  90. /*
  91. * Default environment variables
  92. */
  93. #define CONFIG_BOOTCOMMAND "${x_bootcmd_kernel}; " \
  94. "setenv bootargs ${x_bootargs} ${x_bootargs_root}; " \
  95. "${x_bootcmd_usb}; bootm 0x6400000;"
  96. #define MTDIDS_DEFAULT "nand0=nand_mtd"
  97. #define MTDPARTS_DEFAULT "mtdparts=nand_mtd:0x100000@0x000000(uboot),"\
  98. "0x400000@0x100000(uImage),"\
  99. "0x1fb00000@0x500000(rootfs)"
  100. #define CONFIG_EXTRA_ENV_SETTINGS "x_bootargs=console" \
  101. "=ttyS0,115200 "MTDPARTS_DEFAULT " rw ubi.mtd=2,2048\0" \
  102. "x_bootcmd_kernel=nand read 0x6400000 0x100000 0x300000\0" \
  103. "x_bootcmd_usb=usb start\0" \
  104. "x_bootargs_root=root=ubi0:rootfs rootfstype=ubifs\0" \
  105. "mtdids="MTDIDS_DEFAULT"\0" \
  106. "mtdparts="MTDPARTS_DEFAULT"\0"
  107. /*
  108. * Ethernet Driver configuration
  109. */
  110. #ifdef CONFIG_CMD_NET
  111. # ifdef CONFIG_BOARD_IS_OPENRD_BASE
  112. # define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
  113. # else
  114. # define CONFIG_MVGBE_PORTS {1, 1} /* enable both ports */
  115. # endif
  116. # ifdef CONFIG_BOARD_IS_OPENRD_ULTIMATE
  117. # define CONFIG_PHY_BASE_ADR 0x0
  118. # define PHY_NO "88E1121"
  119. # else
  120. # define CONFIG_PHY_BASE_ADR 0x8
  121. # define PHY_NO "88E1116"
  122. # endif
  123. #endif /* CONFIG_CMD_NET */
  124. /*
  125. * SATA Driver configuration
  126. */
  127. #ifdef CONFIG_MVSATA_IDE
  128. #define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET
  129. #define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET
  130. #endif /*CONFIG_MVSATA_IDE*/
  131. #endif /* _CONFIG_OPENRD_BASE_H */