]> asedeno.scripts.mit.edu Git - linux.git/commitdiff
ahci: qoriq: add ls1028a platforms support
authorPeng Ma <peng.ma@nxp.com>
Mon, 11 Mar 2019 07:20:14 +0000 (15:20 +0800)
committerJens Axboe <axboe@kernel.dk>
Tue, 9 Apr 2019 14:16:43 +0000 (08:16 -0600)
Ls1028a is a new introduced soc which supports ATA3.0

Signed-off-by: Peng Ma <peng.ma@nxp.com>
Signed-off-by: Jens Axboe <axboe@kernel.dk>
drivers/ata/ahci_qoriq.c

index 08dbb86c913ecf58ce684970d60cf24d16799a00..ea1175f7f147ef4ed53b762ba5f4153288dd0006 100644 (file)
@@ -53,6 +53,7 @@
 
 enum ahci_qoriq_type {
        AHCI_LS1021A,
+       AHCI_LS1028A,
        AHCI_LS1043A,
        AHCI_LS2080A,
        AHCI_LS1046A,
@@ -72,6 +73,7 @@ static bool ecc_initialized;
 
 static const struct of_device_id ahci_qoriq_of_match[] = {
        { .compatible = "fsl,ls1021a-ahci", .data = (void *)AHCI_LS1021A},
+       { .compatible = "fsl,ls1028a-ahci", .data = (void *)AHCI_LS1028A},
        { .compatible = "fsl,ls1043a-ahci", .data = (void *)AHCI_LS1043A},
        { .compatible = "fsl,ls2080a-ahci", .data = (void *)AHCI_LS2080A},
        { .compatible = "fsl,ls1046a-ahci", .data = (void *)AHCI_LS1046A},
@@ -223,6 +225,7 @@ static int ahci_qoriq_phy_init(struct ahci_host_priv *hpriv)
                        writel(AHCI_PORT_AXICC_CFG, reg_base + PORT_AXICC);
                break;
 
+       case AHCI_LS1028A:
        case AHCI_LS1088A:
        case AHCI_LX2160A:
                if (!(qpriv->ecc_addr || ecc_initialized))