Skip to content

Commit 46cb52a

Browse files
linuswaxboe
authored andcommitted
ata: ftide010: Add a quirk for SQ201
The DMA is broken on this specific device for some unknown reason (probably badly designed or plain broken interface electronics) and will only work with PIO. Other users of the same hardware does not have this problem. Add a specific quirk so that this Gemini device gets DMA turned off. Also fix up some code around passing the port information around in probe while we're at it. Signed-off-by: Linus Walleij <linus.walleij@linaro.org> Signed-off-by: Jens Axboe <axboe@kernel.dk>
1 parent b0a84be commit 46cb52a

File tree

1 file changed

+17
-10
lines changed

1 file changed

+17
-10
lines changed

drivers/ata/pata_ftide010.c

Lines changed: 17 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -256,14 +256,12 @@ static struct ata_port_operations pata_ftide010_port_ops = {
256256
.qc_issue = ftide010_qc_issue,
257257
};
258258

259-
static struct ata_port_info ftide010_port_info[] = {
260-
{
261-
.flags = ATA_FLAG_SLAVE_POSS,
262-
.mwdma_mask = ATA_MWDMA2,
263-
.udma_mask = ATA_UDMA6,
264-
.pio_mask = ATA_PIO4,
265-
.port_ops = &pata_ftide010_port_ops,
266-
},
259+
static struct ata_port_info ftide010_port_info = {
260+
.flags = ATA_FLAG_SLAVE_POSS,
261+
.mwdma_mask = ATA_MWDMA2,
262+
.udma_mask = ATA_UDMA6,
263+
.pio_mask = ATA_PIO4,
264+
.port_ops = &pata_ftide010_port_ops,
267265
};
268266

269267
#if IS_ENABLED(CONFIG_SATA_GEMINI)
@@ -349,6 +347,7 @@ static int pata_ftide010_gemini_cable_detect(struct ata_port *ap)
349347
}
350348

351349
static int pata_ftide010_gemini_init(struct ftide010 *ftide,
350+
struct ata_port_info *pi,
352351
bool is_ata1)
353352
{
354353
struct device *dev = ftide->dev;
@@ -373,7 +372,13 @@ static int pata_ftide010_gemini_init(struct ftide010 *ftide,
373372

374373
/* Flag port as SATA-capable */
375374
if (gemini_sata_bridge_enabled(sg, is_ata1))
376-
ftide010_port_info[0].flags |= ATA_FLAG_SATA;
375+
pi->flags |= ATA_FLAG_SATA;
376+
377+
/* This device has broken DMA, only PIO works */
378+
if (of_machine_is_compatible("itian,sq201")) {
379+
pi->mwdma_mask = 0;
380+
pi->udma_mask = 0;
381+
}
377382

378383
/*
379384
* We assume that a simple 40-wire cable is used in the PATA mode.
@@ -435,6 +440,7 @@ static int pata_ftide010_gemini_init(struct ftide010 *ftide,
435440
}
436441
#else
437442
static int pata_ftide010_gemini_init(struct ftide010 *ftide,
443+
struct ata_port_info *pi,
438444
bool is_ata1)
439445
{
440446
return -ENOTSUPP;
@@ -446,7 +452,7 @@ static int pata_ftide010_probe(struct platform_device *pdev)
446452
{
447453
struct device *dev = &pdev->dev;
448454
struct device_node *np = dev->of_node;
449-
const struct ata_port_info pi = ftide010_port_info[0];
455+
struct ata_port_info pi = ftide010_port_info;
450456
const struct ata_port_info *ppi[] = { &pi, NULL };
451457
struct ftide010 *ftide;
452458
struct resource *res;
@@ -490,6 +496,7 @@ static int pata_ftide010_probe(struct platform_device *pdev)
490496
* are ATA0. This will also set up the cable types.
491497
*/
492498
ret = pata_ftide010_gemini_init(ftide,
499+
&pi,
493500
(res->start == 0x63400000));
494501
if (ret)
495502
goto err_dis_clk;

0 commit comments

Comments
 (0)