dockstar.h 2.3 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192
  1. /*
  2. * Copyright (C) 2010 Eric C. Cooper <ecc@cmu.edu>
  3. *
  4. * Based on sheevaplug.h originally written by
  5. * Prafulla Wadaskar <prafulla@marvell.com>
  6. * (C) Copyright 2009
  7. * Marvell Semiconductor <www.marvell.com>
  8. *
  9. * SPDX-License-Identifier: GPL-2.0+
  10. */
  11. #ifndef _CONFIG_DOCKSTAR_H
  12. #define _CONFIG_DOCKSTAR_H
  13. /*
  14. * High Level Configuration Options (easy to change)
  15. */
  16. #define CONFIG_FEROCEON_88FR131 1 /* CPU Core subversion */
  17. #define CONFIG_KW88F6281 1 /* SOC Name */
  18. #define CONFIG_MACH_DOCKSTAR /* Machine type */
  19. #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
  20. /*
  21. * Commands configuration
  22. */
  23. #define CONFIG_SYS_NO_FLASH /* Declare no flash (NOR/SPI) */
  24. #define CONFIG_CMD_ENV
  25. #define CONFIG_CMD_NAND
  26. /*
  27. * mv-common.h should be defined after CMD configs since it used them
  28. * to enable certain macros
  29. */
  30. #include "mv-common.h"
  31. /*
  32. * Environment variables configurations
  33. */
  34. #ifdef CONFIG_CMD_NAND
  35. #define CONFIG_ENV_IS_IN_NAND 1
  36. #define CONFIG_ENV_SECT_SIZE 0x20000 /* 128K */
  37. #else
  38. #define CONFIG_ENV_IS_NOWHERE 1 /* if env in SDRAM */
  39. #endif
  40. /*
  41. * max 4k env size is enough, but in case of nand
  42. * it has to be rounded to sector size
  43. */
  44. #define CONFIG_ENV_SIZE 0x20000 /* 128k */
  45. #define CONFIG_ENV_ADDR 0x80000
  46. #define CONFIG_ENV_OFFSET 0x80000 /* env starts here */
  47. /*
  48. * Default environment variables
  49. */
  50. #define CONFIG_BOOTCOMMAND \
  51. "setenv bootargs ${console} ${mtdparts} ${bootargs_root}; " \
  52. "ubi part root; " \
  53. "ubifsmount ubi:root; " \
  54. "ubifsload 0x800000 ${kernel}; " \
  55. "ubifsload 0x1100000 ${initrd}; " \
  56. "bootm 0x800000 0x1100000"
  57. #define CONFIG_MTDPARTS "mtdparts=orion_nand:1m(uboot),-(root)\0"
  58. #define CONFIG_EXTRA_ENV_SETTINGS \
  59. "console=console=ttyS0,115200\0" \
  60. "mtdids=nand0=orion_nand\0" \
  61. "mtdparts="CONFIG_MTDPARTS \
  62. "kernel=/boot/uImage\0" \
  63. "initrd=/boot/uInitrd\0" \
  64. "bootargs_root=ubi.mtd=1 root=ubi0:root rootfstype=ubifs ro\0"
  65. /*
  66. * Ethernet Driver configuration
  67. */
  68. #ifdef CONFIG_CMD_NET
  69. #define CONFIG_MVGBE_PORTS {1, 0} /* enable port 0 only */
  70. #define CONFIG_PHY_BASE_ADR 0
  71. #endif /* CONFIG_CMD_NET */
  72. /*
  73. * File system
  74. */
  75. #define CONFIG_CMD_JFFS2
  76. #define CONFIG_CMD_UBIFS
  77. #define CONFIG_RBTREE
  78. #define CONFIG_MTD_DEVICE /* needed for mtdparts commands */
  79. #define CONFIG_MTD_PARTITIONS
  80. #define CONFIG_CMD_MTDPARTS
  81. #define CONFIG_LZO
  82. #endif /* _CONFIG_DOCKSTAR_H */