342c11436df7f8b9575a5bc50a9b0ead8018c444
[openwrt.git] / target / linux / sunxi / patches-3.13 / 160-ahci-add-pre-start-hook.patch
1 From 3eec76bc21d78e56ac8404b59f29dd9dbbd1528a Mon Sep 17 00:00:00 2001
2 From: Oliver Schinagl <oliver@schinagl.nl>
3 Date: Mon, 2 Dec 2013 16:13:32 +0100
4 Subject: [PATCH] libahci: Add a pre ahci_start_engine hook
5
6 Allwinner A10 and A20 ARM SoCs have an AHCI sata controller which need a
7 special register to be poked before starting the DMA engine.
8
9 This register gets reset on an ahci_stop_engine call, so there is no other
10 place then ahci_start_engine where this poking can be done.
11
12 This commit adds a pre ahci_start_engine hook for use by the Allwinner AHCI
13 driver (and potentially other drivers in the future).
14
15 Signed-off-by: Hans de Goede <hdegoede@redhat.com>
16 ---
17  drivers/ata/ahci.h    | 2 ++
18  drivers/ata/libahci.c | 4 ++++
19  2 files changed, 6 insertions(+)
20
21 diff --git a/drivers/ata/ahci.h b/drivers/ata/ahci.h
22 index 2289efd..1bba479 100644
23 --- a/drivers/ata/ahci.h
24 +++ b/drivers/ata/ahci.h
25 @@ -323,6 +323,8 @@ struct ahci_host_priv {
26         u32                     em_msg_type;    /* EM message type */
27         struct clk              *clk;           /* Only for platforms supporting clk */
28         void                    *plat_data;     /* Other platform data */
29 +       /* Optional pre ahci_start_engine hook */
30 +       void                    (*pre_start_engine)(struct ata_port *ap);
31  };
32  
33  extern int ahci_ignore_sss;
34 diff --git a/drivers/ata/libahci.c b/drivers/ata/libahci.c
35 index c482f8c..780e9df 100644
36 --- a/drivers/ata/libahci.c
37 +++ b/drivers/ata/libahci.c
38 @@ -568,8 +568,12 @@ static int ahci_scr_write(struct ata_link *link, unsigned int sc_reg, u32 val)
39  void ahci_start_engine(struct ata_port *ap)
40  {
41         void __iomem *port_mmio = ahci_port_base(ap);
42 +       struct ahci_host_priv *hpriv = ap->host->private_data;
43         u32 tmp;
44  
45 +       if (hpriv->pre_start_engine)
46 +               hpriv->pre_start_engine(ap);
47 +
48         /* start DMA */
49         tmp = readl(port_mmio + PORT_CMD);
50         tmp |= PORT_CMD_START;
51 -- 
52 1.8.5.1
53