theadorable.c 9.7 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348
  1. // SPDX-License-Identifier: GPL-2.0+
  2. /*
  3. * Copyright (C) 2015-2019 Stefan Roese <sr@denx.de>
  4. */
  5. #include <common.h>
  6. #include <console.h>
  7. #include <i2c.h>
  8. #include <pci.h>
  9. #if !defined(CONFIG_SPL_BUILD)
  10. #include <bootcount.h>
  11. #endif
  12. #include <asm/gpio.h>
  13. #include <asm/io.h>
  14. #include <asm/arch/cpu.h>
  15. #include <asm/arch/soc.h>
  16. #include <linux/mbus.h>
  17. #ifdef CONFIG_NET
  18. #include <netdev.h>
  19. #endif
  20. #include <u-boot/crc.h>
  21. #include "theadorable.h"
  22. #include "../drivers/ddr/marvell/axp/ddr3_hw_training.h"
  23. #include "../arch/arm/mach-mvebu/serdes/axp/high_speed_env_spec.h"
  24. DECLARE_GLOBAL_DATA_PTR;
  25. #define MV_USB_PHY_BASE (MVEBU_AXP_USB_BASE + 0x800)
  26. #define PHY_CHANNEL_RX_CTRL0_REG(port, chan) \
  27. (MV_USB_PHY_BASE + ((port) << 12) + ((chan) << 6) + 0x8)
  28. #define THEADORABLE_GPP_OUT_ENA_LOW 0x00336780
  29. #define THEADORABLE_GPP_OUT_ENA_MID 0x00003cf0
  30. #define THEADORABLE_GPP_OUT_ENA_HIGH (~(0x0))
  31. #define THEADORABLE_GPP_OUT_VAL_LOW 0x2c0c983f
  32. #define THEADORABLE_GPP_OUT_VAL_MID 0x0007000c
  33. #define THEADORABLE_GPP_OUT_VAL_HIGH 0x00000000
  34. #define GPIO_USB0_PWR_ON 18
  35. #define GPIO_USB1_PWR_ON 19
  36. #define PEX_SWITCH_NOT_FOUNT_LIMIT 3
  37. #define STM_I2C_BUS 1
  38. #define STM_I2C_ADDR 0x27
  39. #define REBOOT_DELAY 1000 /* reboot-delay in ms */
  40. #define ABORT_TIMEOUT 3000 /* 3 seconds reboot abort timeout */
  41. /* DDR3 static configuration */
  42. static MV_DRAM_MC_INIT ddr3_theadorable[MV_MAX_DDR3_STATIC_SIZE] = {
  43. {0x00001400, 0x7301ca28}, /* DDR SDRAM Configuration Register */
  44. {0x00001404, 0x30000800}, /* Dunit Control Low Register */
  45. {0x00001408, 0x44149887}, /* DDR SDRAM Timing (Low) Register */
  46. {0x0000140C, 0x38d93fc7}, /* DDR SDRAM Timing (High) Register */
  47. {0x00001410, 0x1b100001}, /* DDR SDRAM Address Control Register */
  48. {0x00001424, 0x0000f3ff}, /* Dunit Control High Register */
  49. {0x00001428, 0x000f8830}, /* ODT Timing (Low) Register */
  50. {0x0000142C, 0x014c50f4}, /* DDR3 Timing Register */
  51. {0x0000147C, 0x0000c671}, /* ODT Timing (High) Register */
  52. {0x00001494, 0x00010000}, /* DDR SDRAM ODT Control (Low) Reg */
  53. {0x0000149C, 0x00000001}, /* DDR Dunit ODT Control Register */
  54. {0x000014A0, 0x00000001}, /* DRAM FIFO Control Register */
  55. {0x000014A8, 0x00000101}, /* AXI Control Register */
  56. /*
  57. * DO NOT Modify - Open Mbus Window - 2G - Mbus is required for the
  58. * training sequence
  59. */
  60. {0x000200e8, 0x3fff0e01},
  61. {0x00020184, 0x3fffffe0}, /* Close fast path Window to - 2G */
  62. {0x0001504, 0x7fffffe1}, /* CS0 Size */
  63. {0x000150C, 0x00000000}, /* CS1 Size */
  64. {0x0001514, 0x00000000}, /* CS2 Size */
  65. {0x000151C, 0x00000000}, /* CS3 Size */
  66. {0x00020220, 0x00000007}, /* Reserved */
  67. {0x00001538, 0x00000009}, /* Read Data Sample Delays Register */
  68. {0x0000153C, 0x00000009}, /* Read Data Ready Delay Register */
  69. {0x000015D0, 0x00000650}, /* MR0 */
  70. {0x000015D4, 0x00000044}, /* MR1 */
  71. {0x000015D8, 0x00000010}, /* MR2 */
  72. {0x000015DC, 0x00000000}, /* MR3 */
  73. {0x000015E0, 0x00000001},
  74. {0x000015E4, 0x00203c18}, /* ZQDS Configuration Register */
  75. {0x000015EC, 0xf800a225}, /* DDR PHY */
  76. /* Recommended Settings from Marvell for 4 x 16 bit devices: */
  77. {0x000014C0, 0x192424c9}, /* DRAM addr and Ctrl Driving Strenght*/
  78. {0x000014C4, 0x0aaa24c9}, /* DRAM Data and DQS Driving Strenght */
  79. {0x0, 0x0}
  80. };
  81. static MV_DRAM_MODES board_ddr_modes[MV_DDR3_MODES_NUMBER] = {
  82. {"theadorable_1333-667", 0x3, 0x5, 0x0, A0, ddr3_theadorable, NULL},
  83. };
  84. extern MV_SERDES_CHANGE_M_PHY serdes_change_m_phy[];
  85. /*
  86. * Lane0 - PCIE0.0 X1 (to WIFI Module)
  87. * Lane5 - SATA0
  88. * Lane6 - SATA1
  89. * Lane7 - SGMII0 (to Ethernet Phy)
  90. * Lane8-11 - PCIE2.0 X4 (to PEX Switch)
  91. * all other lanes are disabled
  92. */
  93. MV_BIN_SERDES_CFG theadorable_serdes_cfg[] = {
  94. { MV_PEX_ROOT_COMPLEX, 0x22200001, 0x00001111,
  95. { PEX_BUS_MODE_X1, PEX_BUS_DISABLED, PEX_BUS_MODE_X4,
  96. PEX_BUS_DISABLED },
  97. 0x0060, serdes_change_m_phy
  98. },
  99. };
  100. /*
  101. * Define a board-specific detection pulse-width array for the SerDes PCIe
  102. * interfaces. If not defined in the board code, the default of currently 2
  103. * is used. Values from 0...3 are possible (2 bits).
  104. */
  105. u8 serdes_pex_pulse_width[4] = { 0, 2, 2, 2 };
  106. MV_DRAM_MODES *ddr3_get_static_ddr_mode(void)
  107. {
  108. /* Only one mode supported for this board */
  109. return &board_ddr_modes[0];
  110. }
  111. MV_BIN_SERDES_CFG *board_serdes_cfg_get(void)
  112. {
  113. return &theadorable_serdes_cfg[0];
  114. }
  115. u8 board_sat_r_get(u8 dev_num, u8 reg)
  116. {
  117. /* Bit x enables PCI 2.0 link capabilities instead of PCI 1.x */
  118. return 0xe; /* PEX port 0 is PCIe Gen1, PEX port 1..3 PCIe Gen2 */
  119. }
  120. int board_early_init_f(void)
  121. {
  122. /* Configure MPP */
  123. writel(0x00000000, MVEBU_MPP_BASE + 0x00);
  124. writel(0x03300000, MVEBU_MPP_BASE + 0x04);
  125. writel(0x00000033, MVEBU_MPP_BASE + 0x08);
  126. writel(0x00000000, MVEBU_MPP_BASE + 0x0c);
  127. writel(0x11110000, MVEBU_MPP_BASE + 0x10);
  128. writel(0x00221100, MVEBU_MPP_BASE + 0x14);
  129. writel(0x00000000, MVEBU_MPP_BASE + 0x18);
  130. writel(0x00000000, MVEBU_MPP_BASE + 0x1c);
  131. writel(0x00000000, MVEBU_MPP_BASE + 0x20);
  132. /* Configure GPIO */
  133. writel(THEADORABLE_GPP_OUT_VAL_LOW, MVEBU_GPIO0_BASE + 0x00);
  134. writel(THEADORABLE_GPP_OUT_ENA_LOW, MVEBU_GPIO0_BASE + 0x04);
  135. writel(THEADORABLE_GPP_OUT_VAL_MID, MVEBU_GPIO1_BASE + 0x00);
  136. writel(THEADORABLE_GPP_OUT_ENA_MID, MVEBU_GPIO1_BASE + 0x04);
  137. writel(THEADORABLE_GPP_OUT_VAL_HIGH, MVEBU_GPIO2_BASE + 0x00);
  138. writel(THEADORABLE_GPP_OUT_ENA_HIGH, MVEBU_GPIO2_BASE + 0x04);
  139. return 0;
  140. }
  141. int board_init(void)
  142. {
  143. int ret;
  144. /* adress of boot parameters */
  145. gd->bd->bi_boot_params = mvebu_sdram_bar(0) + 0x100;
  146. /*
  147. * Map SPI devices via MBUS so that they can be accessed via
  148. * the SPI direct access mode
  149. */
  150. mbus_dt_setup_win(&mbus_state, SPI_BUS0_DEV1_BASE, SPI_BUS0_DEV1_SIZE,
  151. CPU_TARGET_DEVICEBUS_BOOTROM_SPI, CPU_ATTR_SPI0_CS1);
  152. mbus_dt_setup_win(&mbus_state, SPI_BUS1_DEV2_BASE, SPI_BUS0_DEV1_SIZE,
  153. CPU_TARGET_DEVICEBUS_BOOTROM_SPI, CPU_ATTR_SPI1_CS2);
  154. /*
  155. * Set RX Channel Control 0 Register:
  156. * Tests have shown, that setting the LPF_COEF from 0 (1/8)
  157. * to 3 (1/1) results in a more stable USB connection.
  158. */
  159. setbits_le32(PHY_CHANNEL_RX_CTRL0_REG(0, 1), 0xc);
  160. setbits_le32(PHY_CHANNEL_RX_CTRL0_REG(0, 2), 0xc);
  161. setbits_le32(PHY_CHANNEL_RX_CTRL0_REG(0, 3), 0xc);
  162. /* Toggle USB power */
  163. ret = gpio_request(GPIO_USB0_PWR_ON, "USB0_PWR_ON");
  164. if (ret < 0)
  165. return ret;
  166. gpio_direction_output(GPIO_USB0_PWR_ON, 0);
  167. ret = gpio_request(GPIO_USB1_PWR_ON, "USB1_PWR_ON");
  168. if (ret < 0)
  169. return ret;
  170. gpio_direction_output(GPIO_USB1_PWR_ON, 0);
  171. mdelay(1);
  172. gpio_set_value(GPIO_USB0_PWR_ON, 1);
  173. gpio_set_value(GPIO_USB1_PWR_ON, 1);
  174. return 0;
  175. }
  176. int checkboard(void)
  177. {
  178. board_fpga_add();
  179. return 0;
  180. }
  181. #ifdef CONFIG_NET
  182. int board_eth_init(bd_t *bis)
  183. {
  184. cpu_eth_init(bis); /* Built in controller(s) come first */
  185. return pci_eth_init(bis);
  186. }
  187. #endif
  188. #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_BOARD_LATE_INIT)
  189. int board_late_init(void)
  190. {
  191. pci_dev_t bdf;
  192. ulong bootcount;
  193. /*
  194. * Check if the PEX switch is detected (somtimes its not available
  195. * on the PCIe bus). In this case, try to recover by issuing a
  196. * soft-reset or even a power-cycle, depending on the bootcounter
  197. * value.
  198. */
  199. bdf = pci_find_device(PCI_VENDOR_ID_PLX, 0x8619, 0);
  200. if (bdf == -1) {
  201. unsigned long start_time = get_timer(0);
  202. u8 i2c_buf[8];
  203. int ret;
  204. /* PEX switch not found! */
  205. bootcount = bootcount_load();
  206. printf("Failed to find PLX PEX-switch (bootcount=%ld)\n",
  207. bootcount);
  208. /*
  209. * The user can exit this boot-loop in the error case by
  210. * hitting Ctrl-C. So wait some time for this key here.
  211. */
  212. printf("Continue booting with Ctrl-C, otherwise rebooting\n");
  213. do {
  214. /* Handle control-c and timeouts */
  215. if (ctrlc()) {
  216. printf("PEX error boot-loop aborted!\n");
  217. return 0;
  218. }
  219. } while (get_timer(start_time) < ABORT_TIMEOUT);
  220. /*
  221. * At this stage the bootcounter has not been incremented
  222. * yet. We need to do this manually here to get an actually
  223. * working bootcounter in this error case.
  224. */
  225. bootcount_inc();
  226. if (bootcount > PEX_SWITCH_NOT_FOUNT_LIMIT) {
  227. printf("Issuing power-switch via uC!\n");
  228. printf("Issuing power-switch via uC!\n");
  229. i2c_set_bus_num(STM_I2C_BUS);
  230. i2c_buf[0] = STM_I2C_ADDR << 1;
  231. i2c_buf[1] = 0xc5; /* cmd */
  232. i2c_buf[2] = 0x01; /* enable */
  233. /* Delay before reboot */
  234. i2c_buf[3] = REBOOT_DELAY & 0x00ff;
  235. i2c_buf[4] = (REBOOT_DELAY & 0xff00) >> 8;
  236. /* Delay before shutdown */
  237. i2c_buf[5] = 0x00;
  238. i2c_buf[6] = 0x00;
  239. i2c_buf[7] = crc8(0x72, &i2c_buf[0], 7);
  240. ret = i2c_write(STM_I2C_ADDR, 0, 0, &i2c_buf[1], 7);
  241. if (ret) {
  242. printf("I2C write error (ret=%d)\n", ret);
  243. printf("Issuing soft-reset...\n");
  244. /* default handling: SOFT reset */
  245. do_reset(NULL, 0, 0, NULL);
  246. }
  247. /* Wait for power-cycle to occur... */
  248. printf("Waiting for power-cycle via uC...\n");
  249. while (1)
  250. ;
  251. } else {
  252. printf("Issuing soft-reset...\n");
  253. /* default handling: SOFT reset */
  254. do_reset(NULL, 0, 0, NULL);
  255. }
  256. }
  257. return 0;
  258. }
  259. #endif
  260. #if !defined(CONFIG_SPL_BUILD) && defined(CONFIG_PCI)
  261. int do_pcie_test(cmd_tbl_t *cmdtp, int flag, int argc, char * const argv[])
  262. {
  263. pci_dev_t bdf;
  264. u16 ven_id, dev_id;
  265. if (argc != 3)
  266. return cmd_usage(cmdtp);
  267. ven_id = simple_strtoul(argv[1], NULL, 16);
  268. dev_id = simple_strtoul(argv[2], NULL, 16);
  269. printf("Checking for PCIe device: VendorID 0x%04x, DeviceId 0x%04x\n",
  270. ven_id, dev_id);
  271. /*
  272. * Check if the PCIe device is detected (somtimes its not available
  273. * on the PCIe bus)
  274. */
  275. bdf = pci_find_device(ven_id, dev_id, 0);
  276. if (bdf == -1) {
  277. /* PCIe device not found! */
  278. printf("Failed to find PCIe device\n");
  279. } else {
  280. /* PCIe device found! */
  281. printf("PCIe device found, resetting board...\n");
  282. /* default handling: SOFT reset */
  283. do_reset(NULL, 0, 0, NULL);
  284. }
  285. return 0;
  286. }
  287. U_BOOT_CMD(
  288. pcie, 3, 0, do_pcie_test,
  289. "Test for presence of a PCIe device",
  290. "<VendorID> <DeviceID>"
  291. );
  292. #endif