pogo_e02.c 2.3 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2012
  4. * David Purdy <david.c.purdy@gmail.com>
  5. *
  6. * Based on Kirkwood support:
  7. * (C) Copyright 2009
  8. * Marvell Semiconductor <www.marvell.com>
  9. * Written-by: Prafulla Wadaskar <prafulla@marvell.com>
  10. */
  11. #include <common.h>
  12. #include <miiphy.h>
  13. #include <asm/arch/cpu.h>
  14. #include <asm/arch/soc.h>
  15. #include <asm/arch/mpp.h>
  16. #include "pogo_e02.h"
  17. DECLARE_GLOBAL_DATA_PTR;
  18. int board_early_init_f(void)
  19. {
  20. /*
  21. * default gpio configuration
  22. * There are maximum 64 gpios controlled through 2 sets of registers
  23. * the below configuration configures mainly initial LED status
  24. */
  25. mvebu_config_gpio(POGO_E02_OE_VAL_LOW,
  26. POGO_E02_OE_VAL_HIGH,
  27. POGO_E02_OE_LOW, POGO_E02_OE_HIGH);
  28. /* Multi-Purpose Pins Functionality configuration */
  29. static const u32 kwmpp_config[] = {
  30. MPP0_NF_IO2,
  31. MPP1_NF_IO3,
  32. MPP2_NF_IO4,
  33. MPP3_NF_IO5,
  34. MPP4_NF_IO6,
  35. MPP5_NF_IO7,
  36. MPP6_SYSRST_OUTn,
  37. MPP7_GPO,
  38. MPP8_UART0_RTS,
  39. MPP9_UART0_CTS,
  40. MPP10_UART0_TXD,
  41. MPP11_UART0_RXD,
  42. MPP12_SD_CLK,
  43. MPP13_SD_CMD,
  44. MPP14_SD_D0,
  45. MPP15_SD_D1,
  46. MPP16_SD_D2,
  47. MPP17_SD_D3,
  48. MPP18_NF_IO0,
  49. MPP19_NF_IO1,
  50. MPP29_TSMP9, /* USB Power Enable */
  51. MPP48_GPIO, /* LED green */
  52. MPP49_GPIO, /* LED orange */
  53. 0
  54. };
  55. kirkwood_mpp_conf(kwmpp_config, NULL);
  56. return 0;
  57. }
  58. int board_init(void)
  59. {
  60. /* Boot parameters address */
  61. gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
  62. return 0;
  63. }
  64. #ifdef CONFIG_RESET_PHY_R
  65. /* Configure and initialize PHY */
  66. void reset_phy(void)
  67. {
  68. u16 reg;
  69. u16 devadr;
  70. char *name = "egiga0";
  71. if (miiphy_set_current_dev(name))
  72. return;
  73. /* command to read PHY dev address */
  74. if (miiphy_read(name, 0xEE, 0xEE, (u16 *) &devadr)) {
  75. printf("Err..(%s) could not read PHY dev address\n", __func__);
  76. return;
  77. }
  78. /*
  79. * Enable RGMII delay on Tx and Rx for CPU port
  80. * Ref: sec 4.7.2 of chip datasheet
  81. */
  82. miiphy_write(name, devadr, MV88E1116_PGADR_REG, 2);
  83. miiphy_read(name, devadr, MV88E1116_MAC_CTRL_REG, &reg);
  84. reg |= (MV88E1116_RGMII_RXTM_CTRL | MV88E1116_RGMII_TXTM_CTRL);
  85. miiphy_write(name, devadr, MV88E1116_MAC_CTRL_REG, reg);
  86. miiphy_write(name, devadr, MV88E1116_PGADR_REG, 0);
  87. /* reset the phy */
  88. miiphy_reset(name, devadr);
  89. debug("88E1116 Initialized on %s\n", name);
  90. }
  91. #endif /* CONFIG_RESET_PHY_R */