README.p3060qds 3.5 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110
  1. Overview
  2. =========
  3. The P3060QDS is a Freescale reference board that hosts the six-core P3060 SOC.
  4. The P3060 Processor combines six e500mc Power Architecture processor
  5. cores(1.2GHz) with high-performance datapath acceleration
  6. architecture(DPAA), CoreNet fabric infrastructure, as well as network
  7. and peripheral bus interfaces required for networking, telecom/datacom,
  8. wireless infrastructure, and military/aerospace applications.
  9. P3060QDS Board Specifications:
  10. ==============================
  11. Memory subsystem:
  12. * 2G Bytes UDIMM DDR3(64bit bus) with ECC on
  13. * 128M Bytes NOR flash single-chip memory
  14. * 16M Bytes SPI flash
  15. * 8K Bytes AT24C64 I2C EEPROM for RCW
  16. Ethernet(Default SERDES 0x19):
  17. * FM1-dTSEC1: connected to RGMII PHY1 (Vitesse VSC8641 on board,Bottom of dual RJ45)
  18. * FM1-dTSEC2: connected to RGMII PHY2 (Vitesse VSC8641 on board,Top of dual RJ45)
  19. * FM1-dTSEC3: connected to SGMII PHY (Vitesse VSC8234 port1 in slot1)
  20. * FM1-dTSEC4: connected to SGMII PHY (Vitesse VSC8234 port3 in slot1)
  21. * FM2-dTSEC1: connected to SGMII PHY (Vitesse VSC8234 port0 in slot2)
  22. * FM2-dTSEC2: connected to SGMII PHY (Vitesse VSC8234 port2 in slot2)
  23. * FM2-dTSEC3: connected to SGMII PHY (Vitesse VSC8234 port0 in slot1)
  24. * FM2-dTSEC4: connected to SGMII PHY (Vitesse VSC8234 port2 in slot1)
  25. PCIe:
  26. * PCIe1: Lanes A, B, C and D of Bank1 are connected to one x4 PCIe SLOT4
  27. * PCIe2: Lanes E, F, G and H of Bank1 are connected to one x4 PCIe SLOT3
  28. RapidIO:
  29. * sRIO1: Lanes E, F, G and H of Bank1 are connected to sRIO1 (SLOT3)
  30. * sRIO2: Lanes A, B, C and D of Bank1 are connected to sRIO2 (SLOT4)
  31. USB:
  32. * USB1: connected via an external ULPI PHY SMC3315 to a TYPE-A interface
  33. * USB2: connected via an external ULPI PHY SMC3315 to a TYPE-AB interface
  34. I2C:
  35. * I2C1_CH0: EEPROM AT24C64(0x50) RCW, AT24C02(0x51) DDR SPD,
  36. AT24C02(0x53) DDR SPD, AT24C02(0x57) SystemID, RTC DS3232(0x68)
  37. * I2C1_CH1: 1588 RiserCard(0x55), HSLB Testport, TempMon
  38. ADT7461(0x4C), SerDesMux DS64MB201(0x51/59/5C/5D)
  39. * I2C1_CH2: VDD/GVDD/GIDD ZL6100 (0x21/0x22/0x23/0x24/0x40)
  40. * I2C1_CH3: OCM CFG AT24C02(0x55), OCM IPL AT24C64(0x56)
  41. * I2C1_CH4: PCIe SLOT1
  42. * I2C1_CH5: PCIe SLOT2
  43. * I2C1_CH6: PCIe SLOT3
  44. * I2C1_CH7: PCIe SLOT4
  45. * I2C2: NULL
  46. * I2C3: NULL
  47. UART:
  48. * Supports two UARTs up to 115200 bps for console
  49. Boot from NOR flash
  50. ===================
  51. 1. Build image
  52. export ARCH=powerpc
  53. export CROSS_COMPILE=/your_path/gcc-4.5.xx-eglibc-2.11.xx/powerpc-linux-gnu/bin/powerpc-linux-gnu-
  54. make P3060QDS_config
  55. make
  56. 2. Program image
  57. => tftp 1000000 u-boot.bin
  58. => protect off all
  59. => erase eff80000 efffffff
  60. => cp.b 1000000 eff80000 80000
  61. 3. Program RCW
  62. => tftp 1000000 rcw.bin
  63. => protect off all
  64. => erase e8000000 e801ffff
  65. => cp.b 1000000 e8000000 50
  66. 4. Program FMAN Firmware ucode
  67. => tftp 1000000 ucode.bin
  68. => protect off all
  69. => erase ef000000 ef0fffff
  70. => cp.b 1000000 ef000000 2000
  71. 5. Change DIP-switch
  72. RCW Location: SW1[1-5] = 01101 (eLBC 16bit NOR flash)
  73. Note: 1 stands for 'on', 0 stands for 'off'
  74. Using the Device Tree Source File
  75. =================================
  76. To create the DTB (Device Tree Binary) image file, use a command
  77. similar to this:
  78. dtc -O dtb -b 0 -p 1024 p3060qds.dts > p3060qds.dtb
  79. Or use the following command:
  80. {linux-2.6}/make p3060qds.dtb ARCH=powerpc
  81. then the dtb file will be generated under the following directory:
  82. {linux-2.6}/arch/powerpc/boot/p3060qds.dtb
  83. Booting Linux
  84. =============
  85. Place a linux uImage in the TFTP disk area.
  86. tftp 1000000 uImage
  87. tftp 2000000 rootfs.ext2.gz.uboot
  88. tftp 3000000 p3060rdb.dtb
  89. bootm 1000000 2000000 3000000