diff options
author | kenny liang <kenny.liang@mediatek.com> | 2019-04-10 21:09:26 +0800 |
---|---|---|
committer | kenny liang <kenny.liang@mediatek.com> | 2019-05-10 10:30:17 +0800 |
commit | 3fa9dec43dbf1d8862d2e6c16dfac5fe6d8d317c (patch) | |
tree | a4b141fb8c99b0897a00f3d373191b3e0fa29665 /docs/plat | |
parent | f2f0846598909cb905de5d4380bac5b1d4c89d09 (diff) | |
download | platform_external_arm-trusted-firmware-3fa9dec43dbf1d8862d2e6c16dfac5fe6d8d317c.tar.gz platform_external_arm-trusted-firmware-3fa9dec43dbf1d8862d2e6c16dfac5fe6d8d317c.tar.bz2 platform_external_arm-trusted-firmware-3fa9dec43dbf1d8862d2e6c16dfac5fe6d8d317c.zip |
Initialize platform for MediaTek mt8183
- Add basic platform setup
- Add generic CPU helper functions
- Add delay timer platform implementation
- Use TI 16550 uart driver
Change-Id: I1c29569c68fe9fca5e10e88a22a29690bab7141f
Signed-off-by: kenny liang <kenny.liang@mediatek.com>
Diffstat (limited to 'docs/plat')
-rw-r--r-- | docs/plat/mt8183.rst | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/docs/plat/mt8183.rst b/docs/plat/mt8183.rst new file mode 100644 index 000000000..c559e198a --- /dev/null +++ b/docs/plat/mt8183.rst @@ -0,0 +1,20 @@ +Description +=========== + +MediaTek 8183 (MT8183) is a 64-bit ARM SoC introduced by MediaTek in early 2018. +The chip incorporates eight cores - four Cortex-A53 little cores and Cortex-A73. +Both clusters can operate at up to 2 GHz. + +Boot Sequence +============= + +:: + + Boot Rom --> Coreboot --> TF-A BL31 --> Depthcharge --> Linux Kernel + +How to Build +============ + +.. code:: shell + + make CROSS_COMPILE=aarch64-linux-gnu- PLAT=mt8183 DEBUG=1 |