dts: add support 32bit curie(805x) [1/1]

PD#SWPL-889

Problem:
support 32bit curie(805x).

Solution:
add 32bit dts for curie(805x)
when KERNEL_A32_SUPPORT=true kernel 32bit build,
otherwise kernel 64bit build defaultly.

Verify:
verify by curie

Change-Id: I0ac24d4b2f6be1e3cd7241120ef06bfc9f46f2b8
Signed-off-by: Luan Yuan <luan.yuan@amlogic.com>
This commit is contained in:
Luan Yuan
2018-10-22 12:23:35 +08:00
parent dab56dff36
commit 84dd792b60
4 changed files with 2738 additions and 0 deletions

View File

@@ -14640,3 +14640,9 @@ AMLOGIC DTBO PARTITION
M: Xindong Xu <xindong.xu@amlogic.com>
F: arch/arm64/boot/dts/amlogic/common_overlay_dt.dts
F: arch/arm/boot/dts/amlogic/common_overlay_dt.dts
AMLOGIC DTS
M: Luan Yuan <luan.yuan@amlogic.com>
F: arch/arm/boot/dts/amlogic/gxl_p241_1g.dts
F: arch/arm/boot/dts/amlogic/gxl_p241_v2-1g.dts
F: arch/arm/boot/dts/amlogic/partition_mbox_p241_P.dtsi

File diff suppressed because it is too large Load Diff

File diff suppressed because it is too large Load Diff

View File

@@ -0,0 +1,126 @@
/*
* Amlogic partition set for normal
*
* Copyright (c) 2017-2017 Amlogic Ltd
*
* This file is licensed under a dual GPLv2 or BSD license.
*
*/
#include "firmware_system.dtsi"
/ {
partitions: partitions{
parts = <17>;
part-0 = <&logo>;
part-1 = <&recovery>;
part-2 = <&misc>;
part-3 = <&dtbo>;
part-4 = <&cri_data>;
part-5 = <&param>;
part-6 = <&boot>;
part-7 = <&rsv>;
part-8 = <&metadata>;
part-9 = <&vbmeta>;
part-10 = <&tee>;
part-11 = <&vendor>;
part-12 = <&odm>;
part-13 = <&system>;
part-14 = <&product>;
part-15 = <&cache>;
part-16 = <&data>;
logo:logo{
pname = "logo";
size = <0x0 0x800000>;
mask = <1>;
};
recovery:recovery{
pname = "recovery";
size = <0x0 0x1800000>;
mask = <1>;
};
misc:misc{
pname = "misc";
size = <0x0 0x800000>;
mask = <1>;
};
dtbo:dtbo{
pname = "dtbo";
size = <0x0 0x800000>;
mask = <1>;
};
cri_data:cri_data
{
pname = "cri_data";
size = <0x0 0x800000>;
mask = <2>;
};
rsv:rsv{
pname = "rsv";
size = <0x0 0x1000000>;
mask = <1>;
};
metadata:metadata{
pname = "metadata";
size = <0x0 0x1000000>;
mask = <1>;
};
vbmeta:vbmeta{
pname = "vbmeta";
size = <0x0 0x200000>;
mask = <1>;
};
param:param{
pname = "param";
size = <0x0 0x1000000>;
mask = <2>;
};
boot:boot
{
pname = "boot";
size = <0x0 0x1000000>;
mask = <1>;
};
tee:tee{
pname = "tee";
size = <0x0 0x2000000>;
mask = <1>;
};
vendor:vendor
{
pname = "vendor";
size = <0x0 0x10000000>;
mask = <1>;
};
odm:odm
{
pname = "odm";
size = <0x0 0x8000000>;
mask = <1>;
};
system:system
{
pname = "system";
size = <0x0 0x50000000>;
mask = <1>;
};
product:product{
pname = "product";
size = <0x0 0x8000000>;
mask = <1>;
};
cache:cache
{
pname = "cache";
size = <0x0 0x25000000>;
mask = <2>;
};
data:data
{
pname = "data";
size = <0xffffffff 0xffffffff>;
mask = <4>;
};
};
};/* end of / */