gplugd.h 2.0 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485
  1. /* SPDX-License-Identifier: GPL-2.0+ */
  2. /*
  3. * (C) Copyright 2011
  4. * eInfochips Ltd. <www.einfochips.com>
  5. * Written-by: Ajay Bhargav <contact@8051projects.net>
  6. *
  7. * Based on Aspenite:
  8. * (C) Copyright 2010
  9. * Marvell Semiconductor <www.marvell.com>
  10. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  11. * Contributor: Mahavir Jain <mjain@marvell.com>
  12. */
  13. #ifndef __CONFIG_GPLUGD_H
  14. #define __CONFIG_GPLUGD_H
  15. /*
  16. * High Level Configuration Options
  17. */
  18. #define CONFIG_SHEEVA_88SV331xV5 1 /* CPU Core subversion */
  19. #define CONFIG_ARMADA100 1 /* SOC Family Name */
  20. #define CONFIG_ARMADA168 1 /* SOC Used on this Board */
  21. #define CONFIG_MACH_TYPE MACH_TYPE_GPLUGD /* Machine type */
  22. #define CONFIG_SKIP_LOWLEVEL_INIT /* disable board lowlevel_init */
  23. /*
  24. * There is no internal RAM in ARMADA100, using DRAM
  25. * TBD: dcache to be used for this
  26. */
  27. #define CONFIG_SYS_INIT_SP_ADDR (CONFIG_SYS_TEXT_BASE - 0x00200000)
  28. #define CONFIG_NR_DRAM_BANKS_MAX 2
  29. /*
  30. * Commands configuration
  31. */
  32. /* Disable DCACHE */
  33. #define CONFIG_SYS_DCACHE_OFF
  34. /* Network configuration */
  35. #ifdef CONFIG_CMD_NET
  36. #define CONFIG_ARMADA100_FEC
  37. /* DHCP Support */
  38. #define CONFIG_BOOTP_DHCP_REQUEST_DELAY 50000
  39. #endif /* CONFIG_CMD_NET */
  40. /* GPIO Support */
  41. #define CONFIG_MARVELL_GPIO
  42. /* PHY configuration */
  43. #define CONFIG_MII
  44. #define CONFIG_RESET_PHY_R
  45. /* 88E3015 register definition */
  46. #define PHY_LED_PAR_SEL_REG 22
  47. #define PHY_LED_MAN_REG 25
  48. #define PHY_LED_VAL 0x5b /* LINK LED1, ACT LED2 */
  49. /* GPIO Configuration for PHY */
  50. #define CONFIG_SYS_GPIO_PHY_RST 104 /* GPIO104 */
  51. /* Flash Support */
  52. /*
  53. * mv-common.h should be defined after CMD configs since it used them
  54. * to enable certain macros
  55. */
  56. #include "mv-common.h"
  57. #ifdef CONFIG_SYS_NS16550_COM1
  58. #undef CONFIG_SYS_NS16550_COM1
  59. #endif /* CONFIG_SYS_NS16550_COM1 */
  60. #define CONFIG_SYS_NS16550_COM1 ARMD1_UART3_BASE
  61. /*
  62. * Environment variables configurations
  63. */
  64. #define CONFIG_ENV_SIZE 0x4000
  65. #ifdef CONFIG_CMD_USB
  66. #define CONFIG_USB_EHCI_ARMADA100
  67. #define CONFIG_EHCI_IS_TDI
  68. #endif /* CONFIG_CMD_USB */
  69. #endif /* __CONFIG_GPLUGD_H */