kernel: remove ubifs xz decompression support
[openwrt/staging/wigyori.git] / target / linux / layerscape / patches-4.4 / 8137-armv8-ls1088a-Add-PCIe-compatible.patch
1 From 1aeb63c52ade1219032161fcdb923aa4c62b3796 Mon Sep 17 00:00:00 2001
2 From: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
3 Date: Sun, 9 Oct 2016 14:52:49 +0800
4 Subject: [PATCH 137/141] armv8: ls1088a: Add PCIe compatible
5
6 commit: 1a089a382b187c80390f022d1e3f3749b2adcc64
7 [don't apply dtsi]
8
9 Signed-off-by: Prabhakar Kushwaha <prabhakar.kushwaha@nxp.com>
10 Integrated-by: Zhao Qiang <qiang.zhao@nxp.com>
11 ---
12 drivers/pci/host/pci-layerscape.c | 8 ++++++++
13 1 file changed, 8 insertions(+)
14
15 --- a/drivers/pci/host/pci-layerscape.c
16 +++ b/drivers/pci/host/pci-layerscape.c
17 @@ -215,6 +215,13 @@ static struct ls_pcie_drvdata ls1046_drv
18 .ops = &ls_pcie_host_ops,
19 };
20
21 +static struct ls_pcie_drvdata ls1088_drvdata = {
22 + .lut_offset = 0x80000,
23 + .ltssm_shift = 0,
24 + .lut_dbg = 0x407fc,
25 + .ops = &ls_pcie_host_ops,
26 +};
27 +
28 static struct ls_pcie_drvdata ls2080_drvdata = {
29 .lut_offset = 0x80000,
30 .ltssm_shift = 0,
31 @@ -227,6 +234,7 @@ static const struct of_device_id ls_pcie
32 { .compatible = "fsl,ls1021a-pcie", .data = &ls1021_drvdata },
33 { .compatible = "fsl,ls1043a-pcie", .data = &ls1043_drvdata },
34 { .compatible = "fsl,ls1046a-pcie", .data = &ls1046_drvdata },
35 + { .compatible = "fsl,ls1088a-pcie", .data = &ls1088_drvdata },
36 { .compatible = "fsl,ls2080a-pcie", .data = &ls2080_drvdata },
37 { .compatible = "fsl,ls2085a-pcie", .data = &ls2080_drvdata },
38 { },