p1_p2_rdb_pc.c 13 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510
  1. /*
  2. * Copyright 2010-2011 Freescale Semiconductor, Inc.
  3. *
  4. * See file CREDITS for list of people who contributed to this
  5. * project.
  6. *
  7. * This program is free software; you can redistribute it and/or
  8. * modify it under the terms of the GNU General Public License as
  9. * published by the Free Software Foundation; either version 2 of
  10. * the License, or (at your option) any later version.
  11. *
  12. * This program is distributed in the hope that it will be useful,
  13. * but WITHOUT ANY WARRANTY; without even the implied warranty of
  14. * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
  15. * GNU General Public License for more details.
  16. *
  17. * You should have received a copy of the GNU General Public License
  18. * along with this program; if not, write to the Free Software
  19. * Foundation, Inc., 59 Temple Place, Suite 330, Boston,
  20. * MA 02111-1307 USA
  21. */
  22. #include <common.h>
  23. #include <command.h>
  24. #include <hwconfig.h>
  25. #include <pci.h>
  26. #include <i2c.h>
  27. #include <asm/processor.h>
  28. #include <asm/mmu.h>
  29. #include <asm/cache.h>
  30. #include <asm/immap_85xx.h>
  31. #include <asm/fsl_pci.h>
  32. #include <asm/fsl_ddr_sdram.h>
  33. #include <asm/io.h>
  34. #include <asm/fsl_law.h>
  35. #include <asm/fsl_lbc.h>
  36. #include <asm/mp.h>
  37. #include <miiphy.h>
  38. #include <libfdt.h>
  39. #include <fdt_support.h>
  40. #include <fsl_mdio.h>
  41. #include <tsec.h>
  42. #include <vsc7385.h>
  43. #include <ioports.h>
  44. #include <asm/fsl_serdes.h>
  45. #include <netdev.h>
  46. #ifdef CONFIG_QE
  47. #define GPIO_GETH_SW_PORT 1
  48. #define GPIO_GETH_SW_PIN 29
  49. #define GPIO_GETH_SW_DATA (1 << (31 - GPIO_GETH_SW_PIN))
  50. #define GPIO_SLIC_PORT 1
  51. #define GPIO_SLIC_PIN 30
  52. #define GPIO_SLIC_DATA (1 << (31 - GPIO_SLIC_PIN))
  53. #if defined(CONFIG_P1021RDB) && !defined(CONFIG_SYS_RAMBOOT)
  54. #define GPIO_DDR_RST_PORT 1
  55. #define GPIO_DDR_RST_PIN 8
  56. #define GPIO_DDR_RST_DATA (1 << (31 - GPIO_DDR_RST_PIN))
  57. #define GPIO_2BIT_MASK (0x3 << (32 - (GPIO_DDR_RST_PIN + 1) * 2))
  58. #endif
  59. #if defined(CONFIG_P1025RDB) || defined(CONFIG_P1021RDB)
  60. #define PCA_IOPORT_I2C_ADDR 0x23
  61. #define PCA_IOPORT_OUTPUT_CMD 0x2
  62. #define PCA_IOPORT_CFG_CMD 0x6
  63. #define PCA_IOPORT_QE_PIN_ENABLE 0xf8
  64. #define PCA_IOPORT_QE_TDM_ENABLE 0xf6
  65. #endif
  66. const qe_iop_conf_t qe_iop_conf_tab[] = {
  67. /* GPIO */
  68. {1, 1, 2, 0, 0}, /* GPIO7/PB1 - LOAD_DEFAULT_N */
  69. #if defined(CONFIG_P1021RDB) && !defined(CONFIG_SYS_RAMBOOT)
  70. {1, 8, 1, 1, 0}, /* GPIO10/PB8 - DDR_RST */
  71. #endif
  72. {0, 15, 1, 0, 0}, /* GPIO11/A15 - WDI */
  73. {GPIO_GETH_SW_PORT, GPIO_GETH_SW_PIN, 1, 0, 0}, /* RST_GETH_SW_N */
  74. {GPIO_SLIC_PORT, GPIO_SLIC_PIN, 1, 0, 0}, /* RST_SLIC_N */
  75. #ifdef CONFIG_P1025RDB
  76. /* QE_MUX_MDC */
  77. {1, 19, 1, 0, 1}, /* QE_MUX_MDC */
  78. /* QE_MUX_MDIO */
  79. {1, 20, 3, 0, 1}, /* QE_MUX_MDIO */
  80. /* UCC_1_MII */
  81. {0, 23, 2, 0, 2}, /* CLK12 */
  82. {0, 24, 2, 0, 1}, /* CLK9 */
  83. {0, 7, 1, 0, 2}, /* ENET1_TXD0_SER1_TXD0 */
  84. {0, 9, 1, 0, 2}, /* ENET1_TXD1_SER1_TXD1 */
  85. {0, 11, 1, 0, 2}, /* ENET1_TXD2_SER1_TXD2 */
  86. {0, 12, 1, 0, 2}, /* ENET1_TXD3_SER1_TXD3 */
  87. {0, 6, 2, 0, 2}, /* ENET1_RXD0_SER1_RXD0 */
  88. {0, 10, 2, 0, 2}, /* ENET1_RXD1_SER1_RXD1 */
  89. {0, 14, 2, 0, 2}, /* ENET1_RXD2_SER1_RXD2 */
  90. {0, 15, 2, 0, 2}, /* ENET1_RXD3_SER1_RXD3 */
  91. {0, 5, 1, 0, 2}, /* ENET1_TX_EN_SER1_RTS_B */
  92. {0, 13, 1, 0, 2}, /* ENET1_TX_ER */
  93. {0, 4, 2, 0, 2}, /* ENET1_RX_DV_SER1_CTS_B */
  94. {0, 8, 2, 0, 2}, /* ENET1_RX_ER_SER1_CD_B */
  95. {0, 17, 2, 0, 2}, /* ENET1_CRS */
  96. {0, 16, 2, 0, 2}, /* ENET1_COL */
  97. /* UCC_5_RMII */
  98. {1, 11, 2, 0, 1}, /* CLK13 */
  99. {1, 7, 1, 0, 2}, /* ENET5_TXD0_SER5_TXD0 */
  100. {1, 10, 1, 0, 2}, /* ENET5_TXD1_SER5_TXD1 */
  101. {1, 6, 2, 0, 2}, /* ENET5_RXD0_SER5_RXD0 */
  102. {1, 9, 2, 0, 2}, /* ENET5_RXD1_SER5_RXD1 */
  103. {1, 5, 1, 0, 2}, /* ENET5_TX_EN_SER5_RTS_B */
  104. {1, 4, 2, 0, 2}, /* ENET5_RX_DV_SER5_CTS_B */
  105. {1, 8, 2, 0, 2}, /* ENET5_RX_ER_SER5_CD_B */
  106. #endif
  107. {0, 0, 0, 0, QE_IOP_TAB_END} /* END of table */
  108. };
  109. #endif
  110. struct cpld_data {
  111. u8 cpld_rev_major;
  112. u8 pcba_rev;
  113. u8 wd_cfg;
  114. u8 rst_bps_sw;
  115. u8 load_default_n;
  116. u8 rst_bps_wd;
  117. u8 bypass_enable;
  118. u8 bps_led;
  119. u8 status_led; /* offset: 0x8 */
  120. u8 fxo_led; /* offset: 0x9 */
  121. u8 fxs_led; /* offset: 0xa */
  122. u8 rev4[2];
  123. u8 system_rst; /* offset: 0xd */
  124. u8 bps_out;
  125. u8 rev5[3];
  126. u8 cpld_rev_minor;
  127. };
  128. #define CPLD_WD_CFG 0x03
  129. #define CPLD_RST_BSW 0x00
  130. #define CPLD_RST_BWD 0x00
  131. #define CPLD_BYPASS_EN 0x03
  132. #define CPLD_STATUS_LED 0x01
  133. #define CPLD_FXO_LED 0x01
  134. #define CPLD_FXS_LED 0x0F
  135. #define CPLD_SYS_RST 0x00
  136. void board_cpld_init(void)
  137. {
  138. struct cpld_data *cpld_data = (void *)(CONFIG_SYS_CPLD_BASE);
  139. out_8(&cpld_data->wd_cfg, CPLD_WD_CFG);
  140. out_8(&cpld_data->status_led, CPLD_STATUS_LED);
  141. out_8(&cpld_data->fxo_led, CPLD_FXO_LED);
  142. out_8(&cpld_data->fxs_led, CPLD_FXS_LED);
  143. out_8(&cpld_data->system_rst, CPLD_SYS_RST);
  144. }
  145. void board_gpio_init(void)
  146. {
  147. #ifdef CONFIG_QE
  148. ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
  149. par_io_t *par_io = (par_io_t *) &(gur->qe_par_io);
  150. #if defined(CONFIG_P1021RDB) && !defined(CONFIG_SYS_RAMBOOT)
  151. /* reset DDR3 */
  152. setbits_be32(&par_io[GPIO_DDR_RST_PORT].cpdat, GPIO_DDR_RST_DATA);
  153. udelay(1000);
  154. clrbits_be32(&par_io[GPIO_DDR_RST_PORT].cpdat, GPIO_DDR_RST_DATA);
  155. udelay(1000);
  156. setbits_be32(&par_io[GPIO_DDR_RST_PORT].cpdat, GPIO_DDR_RST_DATA);
  157. /* disable CE_PB8 */
  158. clrbits_be32(&par_io[GPIO_DDR_RST_PORT].cpdir1, GPIO_2BIT_MASK);
  159. #endif
  160. /* Enable VSC7385 switch */
  161. setbits_be32(&par_io[GPIO_GETH_SW_PORT].cpdat, GPIO_GETH_SW_DATA);
  162. /* Enable SLIC */
  163. setbits_be32(&par_io[GPIO_SLIC_PORT].cpdat, GPIO_SLIC_DATA);
  164. #else
  165. ccsr_gpio_t *pgpio = (void *)(CONFIG_SYS_MPC85xx_GPIO_ADDR);
  166. /*
  167. * GPIO10 DDR Reset, open drain
  168. * GPIO7 LOAD_DEFAULT_N Input
  169. * GPIO11 WDI (watchdog input)
  170. * GPIO12 Ethernet Switch Reset
  171. * GPIO13 SLIC Reset
  172. */
  173. setbits_be32(&pgpio->gpdir, 0x02130000);
  174. #if !defined(CONFIG_SYS_RAMBOOT) && !defined(CONFIG_SPL)
  175. /* init DDR3 reset signal */
  176. setbits_be32(&pgpio->gpdir, 0x00200000);
  177. setbits_be32(&pgpio->gpodr, 0x00200000);
  178. clrbits_be32(&pgpio->gpdat, 0x00200000);
  179. udelay(1000);
  180. setbits_be32(&pgpio->gpdat, 0x00200000);
  181. udelay(1000);
  182. clrbits_be32(&pgpio->gpdir, 0x00200000);
  183. #endif
  184. #ifdef CONFIG_VSC7385_ENET
  185. /* reset VSC7385 Switch */
  186. setbits_be32(&pgpio->gpdir, 0x00080000);
  187. setbits_be32(&pgpio->gpdat, 0x00080000);
  188. #endif
  189. #ifdef CONFIG_SLIC
  190. /* reset SLIC */
  191. setbits_be32(&pgpio->gpdir, 0x00040000);
  192. setbits_be32(&pgpio->gpdat, 0x00040000);
  193. #endif
  194. #endif
  195. }
  196. int board_early_init_f(void)
  197. {
  198. ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
  199. setbits_be32(&gur->pmuxcr,
  200. (MPC85xx_PMUXCR_SDHC_CD | MPC85xx_PMUXCR_SDHC_WP));
  201. clrbits_be32(&gur->sdhcdcr, SDHCDCR_CD_INV);
  202. clrbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_SD_DATA);
  203. setbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_TDM_ENA);
  204. board_gpio_init();
  205. board_cpld_init();
  206. return 0;
  207. }
  208. int checkboard(void)
  209. {
  210. struct cpld_data *cpld_data = (void *)(CONFIG_SYS_CPLD_BASE);
  211. ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
  212. u8 in, out, io_config, val;
  213. printf("Board: %s CPLD: V%d.%d PCBA: V%d.0\n", CONFIG_BOARDNAME,
  214. in_8(&cpld_data->cpld_rev_major) & 0x0F,
  215. in_8(&cpld_data->cpld_rev_minor) & 0x0F,
  216. in_8(&cpld_data->pcba_rev) & 0x0F);
  217. /* Initialize i2c early for rom_loc and flash bank information */
  218. i2c_set_bus_num(CONFIG_SYS_SPD_BUS_NUM);
  219. if (i2c_read(CONFIG_SYS_I2C_PCA9557_ADDR, 0, 1, &in, 1) < 0 ||
  220. i2c_read(CONFIG_SYS_I2C_PCA9557_ADDR, 1, 1, &out, 1) < 0 ||
  221. i2c_read(CONFIG_SYS_I2C_PCA9557_ADDR, 3, 1, &io_config, 1) < 0) {
  222. printf("Error reading i2c boot information!\n");
  223. return 0; /* Don't want to hang() on this error */
  224. }
  225. val = (in & io_config) | (out & (~io_config));
  226. puts("rom_loc: ");
  227. if ((val & (~__SW_BOOT_MASK)) == __SW_BOOT_SD) {
  228. puts("sd");
  229. #ifdef __SW_BOOT_SPI
  230. } else if ((val & (~__SW_BOOT_MASK)) == __SW_BOOT_SPI) {
  231. puts("spi");
  232. #endif
  233. #ifdef __SW_BOOT_NAND
  234. } else if ((val & (~__SW_BOOT_MASK)) == __SW_BOOT_NAND) {
  235. puts("nand");
  236. #endif
  237. #ifdef __SW_BOOT_PCIE
  238. } else if ((val & (~__SW_BOOT_MASK)) == __SW_BOOT_PCIE) {
  239. puts("pcie");
  240. #endif
  241. } else {
  242. if (val & 0x2)
  243. puts("nor lower bank");
  244. else
  245. puts("nor upper bank");
  246. }
  247. puts("\n");
  248. if (val & 0x1) {
  249. setbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_SD_DATA);
  250. puts("SD/MMC : 8-bit Mode\n");
  251. puts("eSPI : Disabled\n");
  252. } else {
  253. puts("SD/MMC : 4-bit Mode\n");
  254. puts("eSPI : Enabled\n");
  255. }
  256. return 0;
  257. }
  258. #ifdef CONFIG_PCI
  259. void pci_init_board(void)
  260. {
  261. fsl_pcie_init_board(0);
  262. }
  263. #endif
  264. int board_early_init_r(void)
  265. {
  266. const unsigned int flashbase = CONFIG_SYS_FLASH_BASE;
  267. const u8 flash_esel = find_tlb_idx((void *)flashbase, 1);
  268. /*
  269. * Remap Boot flash region to caching-inhibited
  270. * so that flash can be erased properly.
  271. */
  272. /* Flush d-cache and invalidate i-cache of any FLASH data */
  273. flush_dcache();
  274. invalidate_icache();
  275. /* invalidate existing TLB entry for flash */
  276. disable_tlb(flash_esel);
  277. set_tlb(1, flashbase, CONFIG_SYS_FLASH_BASE_PHYS, /* tlb, epn, rpn */
  278. MAS3_SX|MAS3_SW|MAS3_SR, MAS2_I|MAS2_G,/* perms, wimge */
  279. 0, flash_esel, BOOKE_PAGESZ_64M, 1);/* ts, esel, tsize, iprot */
  280. return 0;
  281. }
  282. int board_eth_init(bd_t *bis)
  283. {
  284. struct fsl_pq_mdio_info mdio_info;
  285. struct tsec_info_struct tsec_info[4];
  286. ccsr_gur_t *gur __attribute__((unused)) =
  287. (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR);
  288. int num = 0;
  289. #ifdef CONFIG_VSC7385_ENET
  290. char *tmp;
  291. unsigned int vscfw_addr;
  292. #endif
  293. #ifdef CONFIG_TSEC1
  294. SET_STD_TSEC_INFO(tsec_info[num], 1);
  295. num++;
  296. #endif
  297. #ifdef CONFIG_TSEC2
  298. SET_STD_TSEC_INFO(tsec_info[num], 2);
  299. if (is_serdes_configured(SGMII_TSEC2)) {
  300. printf("eTSEC2 is in sgmii mode.\n");
  301. tsec_info[num].flags |= TSEC_SGMII;
  302. }
  303. num++;
  304. #endif
  305. #ifdef CONFIG_TSEC3
  306. SET_STD_TSEC_INFO(tsec_info[num], 3);
  307. num++;
  308. #endif
  309. if (!num) {
  310. printf("No TSECs initialized\n");
  311. return 0;
  312. }
  313. #ifdef CONFIG_VSC7385_ENET
  314. /* If a VSC7385 microcode image is present, then upload it. */
  315. if ((tmp = getenv("vscfw_addr")) != NULL) {
  316. vscfw_addr = simple_strtoul(tmp, NULL, 16);
  317. printf("uploading VSC7385 microcode from %x\n", vscfw_addr);
  318. if (vsc7385_upload_firmware((void *) vscfw_addr,
  319. CONFIG_VSC7385_IMAGE_SIZE))
  320. puts("Failure uploading VSC7385 microcode.\n");
  321. } else
  322. puts("No address specified for VSC7385 microcode.\n");
  323. #endif
  324. mdio_info.regs = (struct tsec_mii_mng *)CONFIG_SYS_MDIO_BASE_ADDR;
  325. mdio_info.name = DEFAULT_MII_NAME;
  326. fsl_pq_mdio_init(bis, &mdio_info);
  327. tsec_eth_init(bis, tsec_info, num);
  328. #if defined(CONFIG_UEC_ETH)
  329. /* QE0 and QE3 need to be exposed for UCC1 and UCC5 Eth mode */
  330. setbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_QE0);
  331. setbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_QE3);
  332. uec_standard_init(bis);
  333. #endif
  334. return pci_eth_init(bis);
  335. }
  336. #if defined(CONFIG_QE) && \
  337. (defined(CONFIG_P1025RDB) || defined(CONFIG_P1021RDB))
  338. static void fdt_board_fixup_qe_pins(void *blob)
  339. {
  340. unsigned int oldbus;
  341. u8 val8;
  342. int node;
  343. fsl_lbc_t *lbc = LBC_BASE_ADDR;
  344. if (hwconfig("qe")) {
  345. /* For QE and eLBC pins multiplexing,
  346. * there is a PCA9555 device on P1025RDB.
  347. * It control the multiplex pins' functions,
  348. * and setting the PCA9555 can switch the
  349. * function between QE and eLBC.
  350. */
  351. oldbus = i2c_get_bus_num();
  352. i2c_set_bus_num(0);
  353. if (hwconfig("tdm"))
  354. val8 = PCA_IOPORT_QE_TDM_ENABLE;
  355. else
  356. val8 = PCA_IOPORT_QE_PIN_ENABLE;
  357. i2c_write(PCA_IOPORT_I2C_ADDR, PCA_IOPORT_CFG_CMD,
  358. 1, &val8, 1);
  359. i2c_write(PCA_IOPORT_I2C_ADDR, PCA_IOPORT_OUTPUT_CMD,
  360. 1, &val8, 1);
  361. i2c_set_bus_num(oldbus);
  362. /* if run QE TDM, Set ABSWP to implement
  363. * conversion of addresses in the eLBC.
  364. */
  365. if (hwconfig("tdm")) {
  366. set_lbc_or(2, CONFIG_PMC_OR_PRELIM);
  367. set_lbc_br(2, CONFIG_PMC_BR_PRELIM);
  368. setbits_be32(&lbc->lbcr, CONFIG_SYS_LBC_LBCR);
  369. }
  370. } else {
  371. node = fdt_path_offset(blob, "/qe");
  372. if (node >= 0)
  373. fdt_del_node(blob, node);
  374. }
  375. return;
  376. }
  377. #endif
  378. #ifdef CONFIG_OF_BOARD_SETUP
  379. void ft_board_setup(void *blob, bd_t *bd)
  380. {
  381. phys_addr_t base;
  382. phys_size_t size;
  383. const char *soc_usb_compat = "fsl-usb2-dr";
  384. int err, usb1_off, usb2_off;
  385. ft_cpu_setup(blob, bd);
  386. base = getenv_bootm_low();
  387. size = getenv_bootm_size();
  388. fdt_fixup_memory(blob, (u64)base, (u64)size);
  389. FT_FSL_PCI_SETUP;
  390. #ifdef CONFIG_QE
  391. do_fixup_by_compat(blob, "fsl,qe", "status", "okay",
  392. sizeof("okay"), 0);
  393. #if defined(CONFIG_P1025RDB) || defined(CONFIG_P1021RDB)
  394. fdt_board_fixup_qe_pins(blob);
  395. #endif
  396. #endif
  397. #if defined(CONFIG_HAS_FSL_DR_USB)
  398. fdt_fixup_dr_usb(blob, bd);
  399. #endif
  400. #if defined(CONFIG_SDCARD) || defined(CONFIG_SPIFLASH)
  401. /* Delete eLBC node as it is muxed with USB2 controller */
  402. if (hwconfig("usb2")) {
  403. const char *soc_elbc_compat = "fsl,p1020-elbc";
  404. int off = fdt_node_offset_by_compatible(blob, -1,
  405. soc_elbc_compat);
  406. if (off < 0) {
  407. printf("WARNING: could not find compatible node %s: %s.\n",
  408. soc_elbc_compat,
  409. fdt_strerror(off));
  410. return;
  411. }
  412. err = fdt_del_node(blob, off);
  413. if (err < 0) {
  414. printf("WARNING: could not remove %s: %s.\n",
  415. soc_elbc_compat, fdt_strerror(err));
  416. }
  417. return;
  418. }
  419. #endif
  420. /* Delete USB2 node as it is muxed with eLBC */
  421. usb1_off = fdt_node_offset_by_compatible(blob, -1,
  422. soc_usb_compat);
  423. if (usb1_off < 0) {
  424. printf("WARNING: could not find compatible node %s: %s.\n",
  425. soc_usb_compat,
  426. fdt_strerror(usb1_off));
  427. return;
  428. }
  429. usb2_off = fdt_node_offset_by_compatible(blob, usb1_off,
  430. soc_usb_compat);
  431. if (usb2_off < 0) {
  432. printf("WARNING: could not find compatible node %s: %s.\n",
  433. soc_usb_compat,
  434. fdt_strerror(usb2_off));
  435. return;
  436. }
  437. err = fdt_del_node(blob, usb2_off);
  438. if (err < 0) {
  439. printf("WARNING: could not remove %s: %s.\n",
  440. soc_usb_compat, fdt_strerror(err));
  441. }
  442. }
  443. #endif