generic: mtd: backport SPI_NOR_HAS_LOCK
[openwrt/openwrt.git] / target / linux / layerscape / patches-4.4 / 3139-ls1088ardb-add-ITS-file.patch
1 From caaab508dc2ba749d8394b5934353b1c47f37d75 Mon Sep 17 00:00:00 2001
2 From: Zhao Qiang <qiang.zhao@nxp.com>
3 Date: Sun, 9 Oct 2016 15:14:16 +0800
4 Subject: [PATCH 139/141] ls1088ardb: add ITS file
5
6 Signed-off-by: Zhao Qiang <qiang.zhao@nxp.com>
7 ---
8 kernel-ls1088a-rdb.its | 55 ++++++++++++++++++++++++++++++++++++++++++++++++
9 1 file changed, 55 insertions(+)
10 create mode 100644 kernel-ls1088a-rdb.its
11
12 --- /dev/null
13 +++ b/kernel-ls1088a-rdb.its
14 @@ -0,0 +1,55 @@
15 +/*
16 + * Copyright (C) 2015, Freescale Semiconductor
17 + *
18 + * Raghav Dogra <raghav@freescale.com>
19 + *
20 + * This file is licensed under the terms of the GNU General Public
21 + * License version 2. This program is licensed "as is" without any
22 + * warranty of any kind, whether express or implied.
23 + */
24 +
25 +/dts-v1/;
26 +
27 +/ {
28 + description = "Simulator Image file for the LS1088A Linux Kernel";
29 + #address-cells = <1>;
30 +
31 + images {
32 + kernel@1 {
33 + description = "ARM64 Linux kernel";
34 + data = /incbin/("./arch/arm64/boot/Image.gz");
35 + type = "kernel";
36 + arch = "arm64";
37 + os = "linux";
38 + compression = "gzip";
39 + load = <0x80080000>;
40 + entry = <0x80080000>;
41 + };
42 + fdt@1 {
43 + description = "Flattened Device Tree blob";
44 + data = /incbin/("./arch/arm64/boot/dts/freescale/fsl-ls1088a-rdb.dtb");
45 + type = "flat_dt";
46 + arch = "arm64";
47 + compression = "none";
48 + load = <0x90000000>;
49 + };
50 + ramdisk@1 {
51 + description = "LS2 Ramdisk";
52 + data = /incbin/("./fsl-image-core-ls1088ardb-be.ext2.gz");
53 + type = "ramdisk";
54 + arch = "arm64";
55 + os = "linux";
56 + compression = "none";
57 + };
58 + };
59 +
60 + configurations {
61 + default = "config@1";
62 + config@1 {
63 + description = "Boot Linux kernel";
64 + kernel = "kernel@1";
65 + fdt = "fdt@1";
66 + ramdisk = "ramdisk@1";
67 + };
68 + };
69 +};