]> Git Repo - linux.git/commitdiff
pata: ixp4xx: Refer to cmd and ctl rather than csN
authorLinus Walleij <[email protected]>
Mon, 26 Jul 2021 08:37:55 +0000 (10:37 +0200)
committerLinus Walleij <[email protected]>
Wed, 4 Aug 2021 10:20:32 +0000 (12:20 +0200)
The two "cs0" and "cs1" are "chip selects" but on some
platforms such as GW2358 they are actually both in CS3
making this terminology very confusing. Call the
addresses "cmd" and "ctl" after function instead.

Signed-off-by: Linus Walleij <[email protected]>
drivers/ata/pata_ixp4xx_cf.c
include/linux/platform_data/pata_ixp4xx_cf.h

index bc5029d6525de191d83ef0faa9af9d2be23b2530..72d6d6f2ef99abdb05e200d21279d7fe2e8a71e3 100644 (file)
@@ -95,15 +95,14 @@ static struct ata_port_operations ixp4xx_port_ops = {
 
 static void ixp4xx_setup_port(struct ata_port *ap,
                              struct ixp4xx_pata_data *data,
-                             unsigned long raw_cs0, unsigned long raw_cs1)
+                             unsigned long raw_cmd, unsigned long raw_ctl)
 {
        struct ata_ioports *ioaddr = &ap->ioaddr;
-       unsigned long raw_cmd = raw_cs0;
-       unsigned long raw_ctl = raw_cs1 + 0x06;
 
-       ioaddr->cmd_addr        = data->cs0;
-       ioaddr->altstatus_addr  = data->cs1 + 0x06;
-       ioaddr->ctl_addr        = data->cs1 + 0x06;
+       raw_ctl += 0x06;
+       ioaddr->cmd_addr        = data->cmd;
+       ioaddr->altstatus_addr  = data->ctl + 0x06;
+       ioaddr->ctl_addr        = data->ctl + 0x06;
 
        ata_sff_std_ports(ioaddr);
 
@@ -135,7 +134,7 @@ static void ixp4xx_setup_port(struct ata_port *ap,
 
 static int ixp4xx_pata_probe(struct platform_device *pdev)
 {
-       struct resource *cs0, *cs1;
+       struct resource *cmd, *ctl;
        struct ata_host *host;
        struct ata_port *ap;
        struct device *dev = &pdev->dev;
@@ -143,10 +142,10 @@ static int ixp4xx_pata_probe(struct platform_device *pdev)
        int ret;
        int irq;
 
-       cs0 = platform_get_resource(pdev, IORESOURCE_MEM, 0);
-       cs1 = platform_get_resource(pdev, IORESOURCE_MEM, 1);
+       cmd = platform_get_resource(pdev, IORESOURCE_MEM, 0);
+       ctl = platform_get_resource(pdev, IORESOURCE_MEM, 1);
 
-       if (!cs0 || !cs1)
+       if (!cmd || !ctl)
                return -EINVAL;
 
        /* allocate host */
@@ -159,10 +158,10 @@ static int ixp4xx_pata_probe(struct platform_device *pdev)
        if (ret)
                return ret;
 
-       data->cs0 = devm_ioremap(dev, cs0->start, 0x1000);
-       data->cs1 = devm_ioremap(dev, cs1->start, 0x1000);
+       data->cmd = devm_ioremap(dev, cmd->start, 0x1000);
+       data->ctl = devm_ioremap(dev, ctl->start, 0x1000);
 
-       if (!data->cs0 || !data->cs1)
+       if (!data->cmd || !data->ctl)
                return -ENOMEM;
 
        irq = platform_get_irq(pdev, 0);
@@ -183,7 +182,7 @@ static int ixp4xx_pata_probe(struct platform_device *pdev)
        ap->pio_mask = ATA_PIO4;
        ap->flags |= ATA_FLAG_NO_ATAPI;
 
-       ixp4xx_setup_port(ap, data, cs0->start, cs1->start);
+       ixp4xx_setup_port(ap, data, cmd->start, ctl->start);
 
        ata_print_version_once(dev, DRV_VERSION);
 
index 601ba97fef57d3e408b5b10fe8e47c7ee6c78344..e60fa41da4a52a04153d1ef784ff54988d439684 100644 (file)
@@ -14,8 +14,8 @@ struct ixp4xx_pata_data {
        volatile u32    *cs1_cfg;
        unsigned long   cs0_bits;
        unsigned long   cs1_bits;
-       void __iomem    *cs0;
-       void __iomem    *cs1;
+       void __iomem    *cmd;
+       void __iomem    *ctl;
 };
 
 #endif
This page took 0.059804 seconds and 4 git commands to generate.