layerscape: add patches-5.4
[openwrt/staging/mkresin.git] / target / linux / layerscape / patches-5.4 / 815-sata-0003-ahci_qoriq-bug-fix-for-ecc_addr.patch
1 From a148b8623b7d97c87857f9e203bad538ebd837f0 Mon Sep 17 00:00:00 2001
2 From: Udit Kumar <udit.kumar@nxp.com>
3 Date: Wed, 12 Jun 2019 10:42:02 +0530
4 Subject: [PATCH] ahci_qoriq: bug fix for ecc_addr
5
6 Original driver expect a register node with name "sata-ecc"
7 this node is of 64 bit wide.
8 In ACPI such nodes can be provided with QWordMemory, but
9 QWordMemory can not hold DescriptorName more than 4 characters.
10
11 Therefore this patch changes platform property retrival based
12 upon index instead of named.
13
14 Signed-off-by: Udit Kumar <udit.kumar@nxp.com>
15 ---
16 drivers/ata/ahci_qoriq.c | 4 +---
17 1 file changed, 1 insertion(+), 3 deletions(-)
18
19 --- a/drivers/ata/ahci_qoriq.c
20 +++ b/drivers/ata/ahci_qoriq.c
21 @@ -433,9 +433,7 @@ static int ahci_qoriq_probe(struct platf
22 qoriq_priv->type = (enum ahci_qoriq_type)acpi_id->driver_data;
23
24 if (unlikely(!ecc_initialized)) {
25 - res = platform_get_resource_byname(pdev,
26 - IORESOURCE_MEM,
27 - "sata-ecc");
28 + res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
29 if (res) {
30 qoriq_priv->ecc_addr =
31 devm_ioremap_resource(dev, res);