db-88f6720.c 2.8 KB

12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061626364656667686970717273747576777879808182838485868788899091
  1. /*
  2. * Copyright (C) 2016 Stefan Roese <sr@denx.de>
  3. *
  4. * SPDX-License-Identifier: GPL-2.0+
  5. */
  6. #include <common.h>
  7. #include <miiphy.h>
  8. #include <netdev.h>
  9. #include <asm/io.h>
  10. #include <asm/arch/cpu.h>
  11. #include <asm/arch/soc.h>
  12. DECLARE_GLOBAL_DATA_PTR;
  13. /*
  14. * Those values and defines are taken from the Marvell U-Boot version
  15. * "u-boot-2013.01-2014_T2.0" for the board Armada 375 DB-88F6720
  16. */
  17. #define DB_88F6720_MPP0_7 0x00020020 /* SPI */
  18. #define DB_88F6720_MPP8_15 0x22000022 /* SPI , I2C */
  19. #define DB_88F6720_MPP16_23 0x22222222 /* UART, TDM*/
  20. #define DB_88F6720_MPP24_31 0x33333333 /* SDIO, SPI1*/
  21. #define DB_88F6720_MPP32_39 0x04403330 /* SPI1, External SMI */
  22. #define DB_88F6720_MPP40_47 0x22002044 /* UART1, GE0, SATA0 LED */
  23. #define DB_88F6720_MPP48_55 0x22222222 /* GE0 */
  24. #define DB_88F6720_MPP56_63 0x04444422 /* GE0 , LED_MATRIX, GPIO */
  25. #define DB_88F6720_MPP64_67 0x014 /* LED_MATRIX, SATA1 LED*/
  26. #define DB_88F6720_GPP_OUT_ENA_LOW 0xFFFFFFFF
  27. #define DB_88F6720_GPP_OUT_ENA_MID 0x7FFFFFFF
  28. #define DB_88F6720_GPP_OUT_ENA_HIGH 0xFFFFFFFF
  29. #define DB_88F6720_GPP_OUT_VAL_LOW 0x0
  30. #define DB_88F6720_GPP_OUT_VAL_MID BIT(31) /* SATA Power output enable */
  31. #define DB_88F6720_GPP_OUT_VAL_HIGH 0x0
  32. #define DB_88F6720_GPP_POL_LOW 0x0
  33. #define DB_88F6720_GPP_POL_MID 0x0
  34. #define DB_88F6720_GPP_POL_HIGH 0x0
  35. int board_early_init_f(void)
  36. {
  37. /* Configure MPP */
  38. writel(DB_88F6720_MPP0_7, MVEBU_MPP_BASE + 0x00);
  39. writel(DB_88F6720_MPP8_15, MVEBU_MPP_BASE + 0x04);
  40. writel(DB_88F6720_MPP16_23, MVEBU_MPP_BASE + 0x08);
  41. writel(DB_88F6720_MPP24_31, MVEBU_MPP_BASE + 0x0c);
  42. writel(DB_88F6720_MPP32_39, MVEBU_MPP_BASE + 0x10);
  43. writel(DB_88F6720_MPP40_47, MVEBU_MPP_BASE + 0x14);
  44. writel(DB_88F6720_MPP48_55, MVEBU_MPP_BASE + 0x18);
  45. writel(DB_88F6720_MPP56_63, MVEBU_MPP_BASE + 0x1c);
  46. writel(DB_88F6720_MPP64_67, MVEBU_MPP_BASE + 0x20);
  47. /* Configure GPIO */
  48. /* Set GPP Out value */
  49. writel(DB_88F6720_GPP_OUT_VAL_LOW, MVEBU_GPIO0_BASE + 0x00);
  50. writel(DB_88F6720_GPP_OUT_VAL_MID, MVEBU_GPIO1_BASE + 0x00);
  51. writel(DB_88F6720_GPP_OUT_VAL_HIGH, MVEBU_GPIO2_BASE + 0x00);
  52. /* Set GPP Polarity */
  53. writel(DB_88F6720_GPP_POL_LOW, MVEBU_GPIO0_BASE + 0x0c);
  54. writel(DB_88F6720_GPP_POL_MID, MVEBU_GPIO1_BASE + 0x0c);
  55. writel(DB_88F6720_GPP_POL_HIGH, MVEBU_GPIO2_BASE + 0x0c);
  56. /* Set GPP Out Enable */
  57. writel(DB_88F6720_GPP_OUT_ENA_LOW, MVEBU_GPIO0_BASE + 0x04);
  58. writel(DB_88F6720_GPP_OUT_ENA_MID, MVEBU_GPIO1_BASE + 0x04);
  59. writel(DB_88F6720_GPP_OUT_ENA_HIGH, MVEBU_GPIO2_BASE + 0x04);
  60. return 0;
  61. }
  62. int board_init(void)
  63. {
  64. /* adress of boot parameters */
  65. gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
  66. return 0;
  67. }
  68. int checkboard(void)
  69. {
  70. puts("Board: Marvell DB-88F6720\n");
  71. return 0;
  72. }
  73. int board_eth_init(bd_t *bis)
  74. {
  75. cpu_eth_init(bis); /* Built in controller(s) come first */
  76. return pci_eth_init(bis);
  77. }