summaryrefslogtreecommitdiffstats
path: root/bsps/powerpc/qoriq
diff options
context:
space:
mode:
authorSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-25 15:06:08 +0200
committerSebastian Huber <sebastian.huber@embedded-brains.de>2018-04-26 07:17:57 +0200
commiteb36d1198cdf9dc1e2f776ef6e1e38755f6d13c5 (patch)
tree14177ad7a58c06a3c537d1e55dae7bc369a1a4b9 /bsps/powerpc/qoriq
parentbsps: Remove unmaintained times files (diff)
downloadrtems-eb36d1198cdf9dc1e2f776ef6e1e38755f6d13c5.tar.bz2
bsps: Move documentation, etc. files to bsps
This patch is a part of the BSP source reorganization. Update #3285.
Diffstat (limited to 'bsps/powerpc/qoriq')
-rw-r--r--bsps/powerpc/qoriq/README29
1 files changed, 29 insertions, 0 deletions
diff --git a/bsps/powerpc/qoriq/README b/bsps/powerpc/qoriq/README
new file mode 100644
index 0000000000..065b9d8972
--- /dev/null
+++ b/bsps/powerpc/qoriq/README
@@ -0,0 +1,29 @@
+Board support package for the Freescale QorIQ platform:
+
+ http://en.wikipedia.org/wiki/QorIQ
+
+Boards known to work P1020RDB, MVME2500, T2080RDB and T4240RDB.
+
+Boot via U-Boot and FDT support is mandatory. Use
+
+ mkimage -A ppc -O linux -T kernel -a 0x4000 -e 0x4000 -n RTEMS -d app.bin.gz app.img
+
+to create a bootable image. You must use the "linux" image type to enable the
+dynamic FDT adjustment by U-Boot. Boot it for example via the
+
+ tftp 1000000 app.img
+ tftp c00000 p1020rdb.dtb
+ bootm 1000000 - c00000
+
+U-Boot commands.
+
+For a Topaz hypervisor guest configuration use:
+
+ rtems/configure --enable-rtemsbsp=qoriq_e6500_32 \
+ QORIQ_IS_HYPERVISOR_GUEST=1 \
+ QORIQ_UART_0_ENABLE=0 \
+ QORIQ_UART_1_ENABLE=0 \
+ QORIQ_TLB1_ENTRY_COUNT=16
+
+You may have to adjust the linker command file according to your partition
+configuration.