blob: aaff5e85c35c0a3c21da9fcd051a235f26254894 [file] [log] [blame]
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301/*
2 * drivers/ata/sata_dwc_460ex.c
3 *
4 * Synopsys DesignWare Cores (DWC) SATA host driver
5 *
6 * Author: Mark Miesfeld <mmiesfeld@amcc.com>
7 *
8 * Ported from 2.6.19.2 to 2.6.25/26 by Stefan Roese <sr@denx.de>
9 * Copyright 2008 DENX Software Engineering
10 *
11 * Based on versions provided by AMCC and Synopsys which are:
12 * Copyright 2006 Applied Micro Circuits Corporation
13 * COPYRIGHT (C) 2005 SYNOPSYS, INC. ALL RIGHTS RESERVED
14 *
15 * This program is free software; you can redistribute it and/or modify it
16 * under the terms of the GNU General Public License as published by the
17 * Free Software Foundation; either version 2 of the License, or (at your
18 * option) any later version.
19 */
20
21#ifdef CONFIG_SATA_DWC_DEBUG
22#define DEBUG
23#endif
24
25#ifdef CONFIG_SATA_DWC_VDEBUG
26#define VERBOSE_DEBUG
27#define DEBUG_NCQ
28#endif
29
30#include <linux/kernel.h>
31#include <linux/module.h>
Rupjyoti Sarmah62936002010-07-06 16:36:03 +053032#include <linux/device.h>
Mans Rullgard50b43372016-04-26 12:03:10 +030033#include <linux/dmaengine.h>
Rob Herringc11eede2013-11-10 23:19:08 -060034#include <linux/of_address.h>
35#include <linux/of_irq.h>
Rupjyoti Sarmah62936002010-07-06 16:36:03 +053036#include <linux/of_platform.h>
37#include <linux/platform_device.h>
Mans Rullgard0f48deb2016-04-26 12:03:11 +030038#include <linux/phy/phy.h>
Rupjyoti Sarmah62936002010-07-06 16:36:03 +053039#include <linux/libata.h>
40#include <linux/slab.h>
Andy Shevchenko8b344482015-03-03 22:41:21 +020041
Rupjyoti Sarmah62936002010-07-06 16:36:03 +053042#include "libata.h"
43
44#include <scsi/scsi_host.h>
45#include <scsi/scsi_cmnd.h>
46
Sergei Shtylyovc2119622011-01-28 21:55:55 +030047/* These two are defined in "libata.h" */
48#undef DRV_NAME
49#undef DRV_VERSION
Jeff Garzik72d5f2d2012-12-14 09:43:39 -050050
Rupjyoti Sarmah62936002010-07-06 16:36:03 +053051#define DRV_NAME "sata-dwc"
Sergei Shtylyov84b47e32011-01-28 22:01:01 +030052#define DRV_VERSION "1.3"
Rupjyoti Sarmah62936002010-07-06 16:36:03 +053053
Mans Rullgardee81d6c2016-04-26 12:03:20 +030054#define sata_dwc_writel(a, v) writel_relaxed(v, a)
55#define sata_dwc_readl(a) readl_relaxed(a)
Andy Shevchenko84683a72015-01-07 15:24:21 +020056
57#ifndef NO_IRQ
58#define NO_IRQ 0
59#endif
60
Andy Shevchenko4ea8c202016-04-26 12:03:05 +030061#define AHB_DMA_BRST_DFLT 64 /* 16 data items burst length */
Rupjyoti Sarmah62936002010-07-06 16:36:03 +053062
Rupjyoti Sarmah62936002010-07-06 16:36:03 +053063enum {
Rupjyoti Sarmah62936002010-07-06 16:36:03 +053064 SATA_DWC_MAX_PORTS = 1,
65
66 SATA_DWC_SCR_OFFSET = 0x24,
67 SATA_DWC_REG_OFFSET = 0x64,
68};
69
70/* DWC SATA Registers */
71struct sata_dwc_regs {
72 u32 fptagr; /* 1st party DMA tag */
73 u32 fpbor; /* 1st party DMA buffer offset */
74 u32 fptcr; /* 1st party DMA Xfr count */
75 u32 dmacr; /* DMA Control */
76 u32 dbtsr; /* DMA Burst Transac size */
77 u32 intpr; /* Interrupt Pending */
78 u32 intmr; /* Interrupt Mask */
79 u32 errmr; /* Error Mask */
80 u32 llcr; /* Link Layer Control */
81 u32 phycr; /* PHY Control */
82 u32 physr; /* PHY Status */
83 u32 rxbistpd; /* Recvd BIST pattern def register */
84 u32 rxbistpd1; /* Recvd BIST data dword1 */
85 u32 rxbistpd2; /* Recvd BIST pattern data dword2 */
86 u32 txbistpd; /* Trans BIST pattern def register */
87 u32 txbistpd1; /* Trans BIST data dword1 */
88 u32 txbistpd2; /* Trans BIST data dword2 */
89 u32 bistcr; /* BIST Control Register */
90 u32 bistfctr; /* BIST FIS Count Register */
91 u32 bistsr; /* BIST Status Register */
92 u32 bistdecr; /* BIST Dword Error count register */
93 u32 res[15]; /* Reserved locations */
94 u32 testr; /* Test Register */
95 u32 versionr; /* Version Register */
96 u32 idr; /* ID Register */
97 u32 unimpl[192]; /* Unimplemented */
98 u32 dmadr[256]; /* FIFO Locations in DMA Mode */
99};
100
101enum {
102 SCR_SCONTROL_DET_ENABLE = 0x00000001,
103 SCR_SSTATUS_DET_PRESENT = 0x00000001,
104 SCR_SERROR_DIAG_X = 0x04000000,
105/* DWC SATA Register Operations */
106 SATA_DWC_TXFIFO_DEPTH = 0x01FF,
107 SATA_DWC_RXFIFO_DEPTH = 0x01FF,
108 SATA_DWC_DMACR_TMOD_TXCHEN = 0x00000004,
109 SATA_DWC_DMACR_TXCHEN = (0x00000001 | SATA_DWC_DMACR_TMOD_TXCHEN),
110 SATA_DWC_DMACR_RXCHEN = (0x00000002 | SATA_DWC_DMACR_TMOD_TXCHEN),
111 SATA_DWC_DMACR_TXRXCH_CLEAR = SATA_DWC_DMACR_TMOD_TXCHEN,
112 SATA_DWC_INTPR_DMAT = 0x00000001,
113 SATA_DWC_INTPR_NEWFP = 0x00000002,
114 SATA_DWC_INTPR_PMABRT = 0x00000004,
115 SATA_DWC_INTPR_ERR = 0x00000008,
116 SATA_DWC_INTPR_NEWBIST = 0x00000010,
117 SATA_DWC_INTPR_IPF = 0x10000000,
118 SATA_DWC_INTMR_DMATM = 0x00000001,
119 SATA_DWC_INTMR_NEWFPM = 0x00000002,
120 SATA_DWC_INTMR_PMABRTM = 0x00000004,
121 SATA_DWC_INTMR_ERRM = 0x00000008,
122 SATA_DWC_INTMR_NEWBISTM = 0x00000010,
123 SATA_DWC_LLCR_SCRAMEN = 0x00000001,
124 SATA_DWC_LLCR_DESCRAMEN = 0x00000002,
125 SATA_DWC_LLCR_RPDEN = 0x00000004,
126/* This is all error bits, zero's are reserved fields. */
127 SATA_DWC_SERROR_ERR_BITS = 0x0FFF0F03
128};
129
130#define SATA_DWC_SCR0_SPD_GET(v) (((v) >> 4) & 0x0000000F)
131#define SATA_DWC_DMACR_TX_CLEAR(v) (((v) & ~SATA_DWC_DMACR_TXCHEN) |\
132 SATA_DWC_DMACR_TMOD_TXCHEN)
133#define SATA_DWC_DMACR_RX_CLEAR(v) (((v) & ~SATA_DWC_DMACR_RXCHEN) |\
134 SATA_DWC_DMACR_TMOD_TXCHEN)
135#define SATA_DWC_DBTSR_MWR(size) (((size)/4) & SATA_DWC_TXFIFO_DEPTH)
136#define SATA_DWC_DBTSR_MRD(size) ((((size)/4) & SATA_DWC_RXFIFO_DEPTH)\
137 << 16)
138struct sata_dwc_device {
139 struct device *dev; /* generic device struct */
140 struct ata_probe_ent *pe; /* ptr to probe-ent */
141 struct ata_host *host;
Mans Rullgardadc64ec2016-04-26 12:03:17 +0300142 struct sata_dwc_regs __iomem *sata_dwc_regs; /* DW SATA specific */
Mans Rullgard2d20da02016-04-26 12:03:12 +0300143 u32 sactive_issued;
144 u32 sactive_queued;
Mans Rullgard0f48deb2016-04-26 12:03:11 +0300145 struct phy *phy;
Mans Rullgard50b43372016-04-26 12:03:10 +0300146#ifdef CONFIG_SATA_DWC_OLD_DMA
Andy Shevchenko8b344482015-03-03 22:41:21 +0200147 struct dw_dma_chip *dma;
Mans Rullgard50b43372016-04-26 12:03:10 +0300148#endif
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530149};
150
151#define SATA_DWC_QCMD_MAX 32
152
153struct sata_dwc_device_port {
154 struct sata_dwc_device *hsdev;
155 int cmd_issued[SATA_DWC_QCMD_MAX];
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530156 int dma_pending[SATA_DWC_QCMD_MAX];
Andy Shevchenko8b344482015-03-03 22:41:21 +0200157
158 /* DMA info */
Andy Shevchenko8b344482015-03-03 22:41:21 +0200159 struct dma_chan *chan;
160 struct dma_async_tx_descriptor *desc[SATA_DWC_QCMD_MAX];
161 u32 dma_interrupt_count;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530162};
163
164/*
Andy Shevchenko4bb41be2016-04-26 12:03:13 +0300165 * Commonly used DWC SATA driver macros
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530166 */
Andy Shevchenko4bb41be2016-04-26 12:03:13 +0300167#define HSDEV_FROM_HOST(host) ((struct sata_dwc_device *)(host)->private_data)
168#define HSDEV_FROM_AP(ap) ((struct sata_dwc_device *)(ap)->host->private_data)
169#define HSDEVP_FROM_AP(ap) ((struct sata_dwc_device_port *)(ap)->private_data)
170#define HSDEV_FROM_QC(qc) ((struct sata_dwc_device *)(qc)->ap->host->private_data)
171#define HSDEV_FROM_HSDEVP(p) ((struct sata_dwc_device *)(p)->hsdev)
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530172
173enum {
174 SATA_DWC_CMD_ISSUED_NOT = 0,
175 SATA_DWC_CMD_ISSUED_PEND = 1,
176 SATA_DWC_CMD_ISSUED_EXEC = 2,
177 SATA_DWC_CMD_ISSUED_NODATA = 3,
178
179 SATA_DWC_DMA_PENDING_NONE = 0,
180 SATA_DWC_DMA_PENDING_TX = 1,
181 SATA_DWC_DMA_PENDING_RX = 2,
182};
183
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530184/*
185 * Prototypes
186 */
187static void sata_dwc_bmdma_start_by_tag(struct ata_queued_cmd *qc, u8 tag);
188static int sata_dwc_qc_complete(struct ata_port *ap, struct ata_queued_cmd *qc,
189 u32 check_status);
190static void sata_dwc_dma_xfer_complete(struct ata_port *ap, u32 check_status);
191static void sata_dwc_port_stop(struct ata_port *ap);
192static void sata_dwc_clear_dmacr(struct sata_dwc_device_port *hsdevp, u8 tag);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530193
Mans Rullgard50b43372016-04-26 12:03:10 +0300194#ifdef CONFIG_SATA_DWC_OLD_DMA
195
196#include <linux/platform_data/dma-dw.h>
197#include <linux/dma/dw.h>
198
199static struct dw_dma_slave sata_dwc_dma_dws = {
200 .src_id = 0,
201 .dst_id = 0,
202 .m_master = 1,
203 .p_master = 0,
204};
205
206static bool sata_dwc_dma_filter(struct dma_chan *chan, void *param)
207{
208 struct dw_dma_slave *dws = &sata_dwc_dma_dws;
209
210 if (dws->dma_dev != chan->device->dev)
211 return false;
212
213 chan->private = dws;
214 return true;
215}
216
217static int sata_dwc_dma_get_channel_old(struct sata_dwc_device_port *hsdevp)
218{
219 struct sata_dwc_device *hsdev = hsdevp->hsdev;
220 struct dw_dma_slave *dws = &sata_dwc_dma_dws;
221 dma_cap_mask_t mask;
222
223 dws->dma_dev = hsdev->dev;
224
225 dma_cap_zero(mask);
226 dma_cap_set(DMA_SLAVE, mask);
227
228 /* Acquire DMA channel */
229 hsdevp->chan = dma_request_channel(mask, sata_dwc_dma_filter, hsdevp);
230 if (!hsdevp->chan) {
231 dev_err(hsdev->dev, "%s: dma channel unavailable\n",
232 __func__);
233 return -EAGAIN;
234 }
235
236 return 0;
237}
238
239static int sata_dwc_dma_init_old(struct platform_device *pdev,
240 struct sata_dwc_device *hsdev)
241{
242 struct device_node *np = pdev->dev.of_node;
Andy Shevchenko73ec1b52016-04-26 12:03:22 +0300243 struct resource *res;
Mans Rullgard50b43372016-04-26 12:03:10 +0300244
245 hsdev->dma = devm_kzalloc(&pdev->dev, sizeof(*hsdev->dma), GFP_KERNEL);
246 if (!hsdev->dma)
247 return -ENOMEM;
248
249 hsdev->dma->dev = &pdev->dev;
250
251 /* Get SATA DMA interrupt number */
252 hsdev->dma->irq = irq_of_parse_and_map(np, 1);
253 if (hsdev->dma->irq == NO_IRQ) {
254 dev_err(&pdev->dev, "no SATA DMA irq\n");
255 return -ENODEV;
256 }
257
258 /* Get physical SATA DMA register base address */
Andy Shevchenko73ec1b52016-04-26 12:03:22 +0300259 res = platform_get_resource(pdev, IORESOURCE_MEM, 1);
260 hsdev->dma->regs = devm_ioremap_resource(&pdev->dev, res);
261 if (IS_ERR(hsdev->dma->regs)) {
Mans Rullgard50b43372016-04-26 12:03:10 +0300262 dev_err(&pdev->dev,
263 "ioremap failed for AHBDMA register address\n");
Andy Shevchenko73ec1b52016-04-26 12:03:22 +0300264 return PTR_ERR(hsdev->dma->regs);
Mans Rullgard50b43372016-04-26 12:03:10 +0300265 }
266
267 /* Initialize AHB DMAC */
Andy Shevchenko73ec1b52016-04-26 12:03:22 +0300268 return dw_dma_probe(hsdev->dma);
Mans Rullgard50b43372016-04-26 12:03:10 +0300269}
270
271static void sata_dwc_dma_exit_old(struct sata_dwc_device *hsdev)
272{
273 if (!hsdev->dma)
274 return;
275
276 dw_dma_remove(hsdev->dma);
Mans Rullgard50b43372016-04-26 12:03:10 +0300277}
278
279#endif
280
Sergei Shtylyov84b47e32011-01-28 22:01:01 +0300281static const char *get_prot_descript(u8 protocol)
282{
283 switch ((enum ata_tf_protocols)protocol) {
284 case ATA_PROT_NODATA:
285 return "ATA no data";
286 case ATA_PROT_PIO:
287 return "ATA PIO";
288 case ATA_PROT_DMA:
289 return "ATA DMA";
290 case ATA_PROT_NCQ:
291 return "ATA NCQ";
292 case ATAPI_PROT_NODATA:
293 return "ATAPI no data";
294 case ATAPI_PROT_PIO:
295 return "ATAPI PIO";
296 case ATAPI_PROT_DMA:
297 return "ATAPI DMA";
298 default:
299 return "unknown";
300 }
301}
302
303static const char *get_dma_dir_descript(int dma_dir)
304{
305 switch ((enum dma_data_direction)dma_dir) {
306 case DMA_BIDIRECTIONAL:
307 return "bidirectional";
308 case DMA_TO_DEVICE:
309 return "to device";
310 case DMA_FROM_DEVICE:
311 return "from device";
312 default:
313 return "none";
314 }
315}
316
Andy Shevchenkodb7a6572015-03-03 22:41:22 +0200317static void sata_dwc_tf_dump(struct ata_port *ap, struct ata_taskfile *tf)
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530318{
Andy Shevchenkodb7a6572015-03-03 22:41:22 +0200319 dev_vdbg(ap->dev,
Andy Shevchenkod5785142015-03-03 21:21:58 +0200320 "taskfile cmd: 0x%02x protocol: %s flags: 0x%lx device: %x\n",
321 tf->command, get_prot_descript(tf->protocol), tf->flags,
322 tf->device);
Andy Shevchenkodb7a6572015-03-03 22:41:22 +0200323 dev_vdbg(ap->dev,
Andy Shevchenkod5785142015-03-03 21:21:58 +0200324 "feature: 0x%02x nsect: 0x%x lbal: 0x%x lbam: 0x%x lbah: 0x%x\n",
325 tf->feature, tf->nsect, tf->lbal, tf->lbam, tf->lbah);
Andy Shevchenkodb7a6572015-03-03 22:41:22 +0200326 dev_vdbg(ap->dev,
Andy Shevchenkod5785142015-03-03 21:21:58 +0200327 "hob_feature: 0x%02x hob_nsect: 0x%x hob_lbal: 0x%x hob_lbam: 0x%x hob_lbah: 0x%x\n",
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530328 tf->hob_feature, tf->hob_nsect, tf->hob_lbal, tf->hob_lbam,
329 tf->hob_lbah);
330}
331
Andy Shevchenko8b344482015-03-03 22:41:21 +0200332static void dma_dwc_xfer_done(void *hsdev_instance)
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530333{
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530334 unsigned long flags;
Joe Perchesd5185d62014-03-26 09:34:49 -0700335 struct sata_dwc_device *hsdev = hsdev_instance;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530336 struct ata_host *host = (struct ata_host *)hsdev->host;
337 struct ata_port *ap;
338 struct sata_dwc_device_port *hsdevp;
339 u8 tag = 0;
340 unsigned int port = 0;
341
342 spin_lock_irqsave(&host->lock, flags);
343 ap = host->ports[port];
344 hsdevp = HSDEVP_FROM_AP(ap);
345 tag = ap->link.active_tag;
346
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530347 /*
Andy Shevchenko8b344482015-03-03 22:41:21 +0200348 * Each DMA command produces 2 interrupts. Only
349 * complete the command after both interrupts have been
350 * seen. (See sata_dwc_isr())
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530351 */
Andy Shevchenko8b344482015-03-03 22:41:21 +0200352 hsdevp->dma_interrupt_count++;
353 sata_dwc_clear_dmacr(hsdevp, tag);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530354
Andy Shevchenko8b344482015-03-03 22:41:21 +0200355 if (hsdevp->dma_pending[tag] == SATA_DWC_DMA_PENDING_NONE) {
356 dev_err(ap->dev, "DMA not pending tag=0x%02x pending=%d\n",
357 tag, hsdevp->dma_pending[tag]);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530358 }
359
Andy Shevchenko8b344482015-03-03 22:41:21 +0200360 if ((hsdevp->dma_interrupt_count % 2) == 0)
Dan Carpenter8d5fe8d2015-03-30 13:30:25 +0300361 sata_dwc_dma_xfer_complete(ap, 1);
Andy Shevchenko8b344482015-03-03 22:41:21 +0200362
363 spin_unlock_irqrestore(&host->lock, flags);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530364}
365
Andy Shevchenko8b344482015-03-03 22:41:21 +0200366static struct dma_async_tx_descriptor *dma_dwc_xfer_setup(struct ata_queued_cmd *qc)
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530367{
Andy Shevchenko8b344482015-03-03 22:41:21 +0200368 struct ata_port *ap = qc->ap;
369 struct sata_dwc_device_port *hsdevp = HSDEVP_FROM_AP(ap);
370 struct sata_dwc_device *hsdev = HSDEV_FROM_AP(ap);
371 dma_addr_t addr = (dma_addr_t)&hsdev->sata_dwc_regs->dmadr;
372 struct dma_slave_config sconf;
373 struct dma_async_tx_descriptor *desc;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530374
Andy Shevchenko8b344482015-03-03 22:41:21 +0200375 if (qc->dma_dir == DMA_DEV_TO_MEM) {
376 sconf.src_addr = addr;
Andy Shevchenko59a75ce2016-04-26 12:03:06 +0300377 sconf.device_fc = false;
Andy Shevchenko8b344482015-03-03 22:41:21 +0200378 } else { /* DMA_MEM_TO_DEV */
379 sconf.dst_addr = addr;
380 sconf.device_fc = false;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530381 }
382
Andy Shevchenko8b344482015-03-03 22:41:21 +0200383 sconf.direction = qc->dma_dir;
Andy Shevchenko4ea8c202016-04-26 12:03:05 +0300384 sconf.src_maxburst = AHB_DMA_BRST_DFLT / 4; /* in items */
385 sconf.dst_maxburst = AHB_DMA_BRST_DFLT / 4; /* in items */
Andy Shevchenko8b344482015-03-03 22:41:21 +0200386 sconf.src_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
387 sconf.dst_addr_width = DMA_SLAVE_BUSWIDTH_4_BYTES;
388
389 dmaengine_slave_config(hsdevp->chan, &sconf);
390
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530391 /* Convert SG list to linked list of items (LLIs) for AHB DMA */
Andy Shevchenko8b344482015-03-03 22:41:21 +0200392 desc = dmaengine_prep_slave_sg(hsdevp->chan, qc->sg, qc->n_elem,
393 qc->dma_dir,
394 DMA_PREP_INTERRUPT | DMA_CTRL_ACK);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530395
Andy Shevchenko8b344482015-03-03 22:41:21 +0200396 if (!desc)
397 return NULL;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530398
Andy Shevchenko8b344482015-03-03 22:41:21 +0200399 desc->callback = dma_dwc_xfer_done;
400 desc->callback_param = hsdev;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530401
Andy Shevchenkodb7a6572015-03-03 22:41:22 +0200402 dev_dbg(hsdev->dev, "%s sg: 0x%p, count: %d addr: %pad\n",
Andy Shevchenko8b344482015-03-03 22:41:21 +0200403 __func__, qc->sg, qc->n_elem, &addr);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530404
Andy Shevchenko8b344482015-03-03 22:41:21 +0200405 return desc;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530406}
407
408static int sata_dwc_scr_read(struct ata_link *link, unsigned int scr, u32 *val)
409{
410 if (scr > SCR_NOTIFICATION) {
411 dev_err(link->ap->dev, "%s: Incorrect SCR offset 0x%02x\n",
412 __func__, scr);
413 return -EINVAL;
414 }
415
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300416 *val = sata_dwc_readl(link->ap->ioaddr.scr_addr + (scr * 4));
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530417 dev_dbg(link->ap->dev, "%s: id=%d reg=%d val=val=0x%08x\n",
418 __func__, link->ap->print_id, scr, *val);
419
420 return 0;
421}
422
423static int sata_dwc_scr_write(struct ata_link *link, unsigned int scr, u32 val)
424{
425 dev_dbg(link->ap->dev, "%s: id=%d reg=%d val=val=0x%08x\n",
426 __func__, link->ap->print_id, scr, val);
427 if (scr > SCR_NOTIFICATION) {
428 dev_err(link->ap->dev, "%s: Incorrect SCR offset 0x%02x\n",
429 __func__, scr);
430 return -EINVAL;
431 }
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300432 sata_dwc_writel(link->ap->ioaddr.scr_addr + (scr * 4), val);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530433
434 return 0;
435}
436
Mans Rullgard2d20da02016-04-26 12:03:12 +0300437static void clear_serror(struct ata_port *ap)
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530438{
439 u32 val;
Mans Rullgard2d20da02016-04-26 12:03:12 +0300440 sata_dwc_scr_read(&ap->link, SCR_ERROR, &val);
441 sata_dwc_scr_write(&ap->link, SCR_ERROR, val);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530442}
443
444static void clear_interrupt_bit(struct sata_dwc_device *hsdev, u32 bit)
445{
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300446 sata_dwc_writel(&hsdev->sata_dwc_regs->intpr,
447 sata_dwc_readl(&hsdev->sata_dwc_regs->intpr));
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530448}
449
450static u32 qcmd_tag_to_mask(u8 tag)
451{
452 return 0x00000001 << (tag & 0x1f);
453}
454
455/* See ahci.c */
456static void sata_dwc_error_intr(struct ata_port *ap,
457 struct sata_dwc_device *hsdev, uint intpr)
458{
459 struct sata_dwc_device_port *hsdevp = HSDEVP_FROM_AP(ap);
460 struct ata_eh_info *ehi = &ap->link.eh_info;
461 unsigned int err_mask = 0, action = 0;
462 struct ata_queued_cmd *qc;
463 u32 serror;
464 u8 status, tag;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530465
466 ata_ehi_clear_desc(ehi);
467
Mans Rullgard2d20da02016-04-26 12:03:12 +0300468 sata_dwc_scr_read(&ap->link, SCR_ERROR, &serror);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530469 status = ap->ops->sff_check_status(ap);
470
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530471 tag = ap->link.active_tag;
472
Andy Shevchenko8b344482015-03-03 22:41:21 +0200473 dev_err(ap->dev,
474 "%s SCR_ERROR=0x%08x intpr=0x%08x status=0x%08x dma_intp=%d pending=%d issued=%d",
475 __func__, serror, intpr, status, hsdevp->dma_interrupt_count,
476 hsdevp->dma_pending[tag], hsdevp->cmd_issued[tag]);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530477
478 /* Clear error register and interrupt bit */
Mans Rullgard2d20da02016-04-26 12:03:12 +0300479 clear_serror(ap);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530480 clear_interrupt_bit(hsdev, SATA_DWC_INTPR_ERR);
481
482 /* This is the only error happening now. TODO check for exact error */
483
484 err_mask |= AC_ERR_HOST_BUS;
485 action |= ATA_EH_RESET;
486
487 /* Pass this on to EH */
488 ehi->serror |= serror;
489 ehi->action |= action;
490
491 qc = ata_qc_from_tag(ap, tag);
492 if (qc)
493 qc->err_mask |= err_mask;
494 else
495 ehi->err_mask |= err_mask;
496
497 ata_port_abort(ap);
498}
499
500/*
501 * Function : sata_dwc_isr
502 * arguments : irq, void *dev_instance, struct pt_regs *regs
503 * Return value : irqreturn_t - status of IRQ
504 * This Interrupt handler called via port ops registered function.
505 * .irq_handler = sata_dwc_isr
506 */
507static irqreturn_t sata_dwc_isr(int irq, void *dev_instance)
508{
509 struct ata_host *host = (struct ata_host *)dev_instance;
510 struct sata_dwc_device *hsdev = HSDEV_FROM_HOST(host);
511 struct ata_port *ap;
512 struct ata_queued_cmd *qc;
513 unsigned long flags;
514 u8 status, tag;
515 int handled, num_processed, port = 0;
516 uint intpr, sactive, sactive2, tag_mask;
517 struct sata_dwc_device_port *hsdevp;
Mans Rullgard2d20da02016-04-26 12:03:12 +0300518 hsdev->sactive_issued = 0;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530519
520 spin_lock_irqsave(&host->lock, flags);
521
522 /* Read the interrupt register */
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300523 intpr = sata_dwc_readl(&hsdev->sata_dwc_regs->intpr);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530524
525 ap = host->ports[port];
526 hsdevp = HSDEVP_FROM_AP(ap);
527
528 dev_dbg(ap->dev, "%s intpr=0x%08x active_tag=%d\n", __func__, intpr,
529 ap->link.active_tag);
530
531 /* Check for error interrupt */
532 if (intpr & SATA_DWC_INTPR_ERR) {
533 sata_dwc_error_intr(ap, hsdev, intpr);
534 handled = 1;
535 goto DONE;
536 }
537
538 /* Check for DMA SETUP FIS (FP DMA) interrupt */
539 if (intpr & SATA_DWC_INTPR_NEWFP) {
540 clear_interrupt_bit(hsdev, SATA_DWC_INTPR_NEWFP);
541
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300542 tag = (u8)(sata_dwc_readl(&hsdev->sata_dwc_regs->fptagr));
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530543 dev_dbg(ap->dev, "%s: NEWFP tag=%d\n", __func__, tag);
544 if (hsdevp->cmd_issued[tag] != SATA_DWC_CMD_ISSUED_PEND)
545 dev_warn(ap->dev, "CMD tag=%d not pending?\n", tag);
546
Mans Rullgard2d20da02016-04-26 12:03:12 +0300547 hsdev->sactive_issued |= qcmd_tag_to_mask(tag);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530548
549 qc = ata_qc_from_tag(ap, tag);
550 /*
551 * Start FP DMA for NCQ command. At this point the tag is the
552 * active tag. It is the tag that matches the command about to
553 * be completed.
554 */
555 qc->ap->link.active_tag = tag;
556 sata_dwc_bmdma_start_by_tag(qc, tag);
557
558 handled = 1;
559 goto DONE;
560 }
Mans Rullgard2d20da02016-04-26 12:03:12 +0300561 sata_dwc_scr_read(&ap->link, SCR_ACTIVE, &sactive);
562 tag_mask = (hsdev->sactive_issued | sactive) ^ sactive;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530563
564 /* If no sactive issued and tag_mask is zero then this is not NCQ */
Mans Rullgard2d20da02016-04-26 12:03:12 +0300565 if (hsdev->sactive_issued == 0 && tag_mask == 0) {
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530566 if (ap->link.active_tag == ATA_TAG_POISON)
567 tag = 0;
568 else
569 tag = ap->link.active_tag;
570 qc = ata_qc_from_tag(ap, tag);
571
572 /* DEV interrupt w/ no active qc? */
573 if (unlikely(!qc || (qc->tf.flags & ATA_TFLAG_POLLING))) {
Andy Shevchenkod5785142015-03-03 21:21:58 +0200574 dev_err(ap->dev,
575 "%s interrupt with no active qc qc=%p\n",
576 __func__, qc);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530577 ap->ops->sff_check_status(ap);
578 handled = 1;
579 goto DONE;
580 }
581 status = ap->ops->sff_check_status(ap);
582
583 qc->ap->link.active_tag = tag;
584 hsdevp->cmd_issued[tag] = SATA_DWC_CMD_ISSUED_NOT;
585
586 if (status & ATA_ERR) {
587 dev_dbg(ap->dev, "interrupt ATA_ERR (0x%x)\n", status);
588 sata_dwc_qc_complete(ap, qc, 1);
589 handled = 1;
590 goto DONE;
591 }
592
593 dev_dbg(ap->dev, "%s non-NCQ cmd interrupt, protocol: %s\n",
Sergei Shtylyov84b47e32011-01-28 22:01:01 +0300594 __func__, get_prot_descript(qc->tf.protocol));
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530595DRVSTILLBUSY:
596 if (ata_is_dma(qc->tf.protocol)) {
597 /*
598 * Each DMA transaction produces 2 interrupts. The DMAC
599 * transfer complete interrupt and the SATA controller
600 * operation done interrupt. The command should be
601 * completed only after both interrupts are seen.
602 */
Andy Shevchenko8b344482015-03-03 22:41:21 +0200603 hsdevp->dma_interrupt_count++;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530604 if (hsdevp->dma_pending[tag] == \
605 SATA_DWC_DMA_PENDING_NONE) {
Andy Shevchenkod5785142015-03-03 21:21:58 +0200606 dev_err(ap->dev,
607 "%s: DMA not pending intpr=0x%08x status=0x%08x pending=%d\n",
608 __func__, intpr, status,
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530609 hsdevp->dma_pending[tag]);
610 }
611
Andy Shevchenko8b344482015-03-03 22:41:21 +0200612 if ((hsdevp->dma_interrupt_count % 2) == 0)
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530613 sata_dwc_dma_xfer_complete(ap, 1);
614 } else if (ata_is_pio(qc->tf.protocol)) {
615 ata_sff_hsm_move(ap, qc, status, 0);
616 handled = 1;
617 goto DONE;
618 } else {
619 if (unlikely(sata_dwc_qc_complete(ap, qc, 1)))
620 goto DRVSTILLBUSY;
621 }
622
623 handled = 1;
624 goto DONE;
625 }
626
627 /*
628 * This is a NCQ command. At this point we need to figure out for which
629 * tags we have gotten a completion interrupt. One interrupt may serve
630 * as completion for more than one operation when commands are queued
631 * (NCQ). We need to process each completed command.
632 */
633
634 /* process completed commands */
Mans Rullgard2d20da02016-04-26 12:03:12 +0300635 sata_dwc_scr_read(&ap->link, SCR_ACTIVE, &sactive);
636 tag_mask = (hsdev->sactive_issued | sactive) ^ sactive;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530637
Mans Rullgard2d20da02016-04-26 12:03:12 +0300638 if (sactive != 0 || hsdev->sactive_issued > 1 || tag_mask > 1) {
Andy Shevchenkod5785142015-03-03 21:21:58 +0200639 dev_dbg(ap->dev,
640 "%s NCQ:sactive=0x%08x sactive_issued=0x%08x tag_mask=0x%08x\n",
Mans Rullgard2d20da02016-04-26 12:03:12 +0300641 __func__, sactive, hsdev->sactive_issued, tag_mask);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530642 }
643
Mans Rullgard2d20da02016-04-26 12:03:12 +0300644 if ((tag_mask | hsdev->sactive_issued) != hsdev->sactive_issued) {
Andy Shevchenkod5785142015-03-03 21:21:58 +0200645 dev_warn(ap->dev,
Mans Rullgard2d20da02016-04-26 12:03:12 +0300646 "Bad tag mask? sactive=0x%08x sactive_issued=0x%08x tag_mask=0x%08x\n",
647 sactive, hsdev->sactive_issued, tag_mask);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530648 }
649
650 /* read just to clear ... not bad if currently still busy */
651 status = ap->ops->sff_check_status(ap);
652 dev_dbg(ap->dev, "%s ATA status register=0x%x\n", __func__, status);
653
654 tag = 0;
655 num_processed = 0;
656 while (tag_mask) {
657 num_processed++;
658 while (!(tag_mask & 0x00000001)) {
659 tag++;
660 tag_mask <<= 1;
661 }
662
663 tag_mask &= (~0x00000001);
664 qc = ata_qc_from_tag(ap, tag);
665
666 /* To be picked up by completion functions */
667 qc->ap->link.active_tag = tag;
668 hsdevp->cmd_issued[tag] = SATA_DWC_CMD_ISSUED_NOT;
669
670 /* Let libata/scsi layers handle error */
671 if (status & ATA_ERR) {
672 dev_dbg(ap->dev, "%s ATA_ERR (0x%x)\n", __func__,
673 status);
674 sata_dwc_qc_complete(ap, qc, 1);
675 handled = 1;
676 goto DONE;
677 }
678
679 /* Process completed command */
680 dev_dbg(ap->dev, "%s NCQ command, protocol: %s\n", __func__,
Sergei Shtylyov84b47e32011-01-28 22:01:01 +0300681 get_prot_descript(qc->tf.protocol));
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530682 if (ata_is_dma(qc->tf.protocol)) {
Andy Shevchenko8b344482015-03-03 22:41:21 +0200683 hsdevp->dma_interrupt_count++;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530684 if (hsdevp->dma_pending[tag] == \
685 SATA_DWC_DMA_PENDING_NONE)
686 dev_warn(ap->dev, "%s: DMA not pending?\n",
687 __func__);
Andy Shevchenko8b344482015-03-03 22:41:21 +0200688 if ((hsdevp->dma_interrupt_count % 2) == 0)
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530689 sata_dwc_dma_xfer_complete(ap, 1);
690 } else {
691 if (unlikely(sata_dwc_qc_complete(ap, qc, 1)))
692 goto STILLBUSY;
693 }
694 continue;
695
696STILLBUSY:
697 ap->stats.idle_irq++;
698 dev_warn(ap->dev, "STILL BUSY IRQ ata%d: irq trap\n",
699 ap->print_id);
700 } /* while tag_mask */
701
702 /*
703 * Check to see if any commands completed while we were processing our
704 * initial set of completed commands (read status clears interrupts,
705 * so we might miss a completed command interrupt if one came in while
706 * we were processing --we read status as part of processing a completed
707 * command).
708 */
Mans Rullgard2d20da02016-04-26 12:03:12 +0300709 sata_dwc_scr_read(&ap->link, SCR_ACTIVE, &sactive2);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530710 if (sactive2 != sactive) {
Andy Shevchenkod5785142015-03-03 21:21:58 +0200711 dev_dbg(ap->dev,
712 "More completed - sactive=0x%x sactive2=0x%x\n",
713 sactive, sactive2);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530714 }
715 handled = 1;
716
717DONE:
718 spin_unlock_irqrestore(&host->lock, flags);
719 return IRQ_RETVAL(handled);
720}
721
722static void sata_dwc_clear_dmacr(struct sata_dwc_device_port *hsdevp, u8 tag)
723{
724 struct sata_dwc_device *hsdev = HSDEV_FROM_HSDEVP(hsdevp);
Mans Rullgardaf50f3a2016-04-26 12:03:21 +0300725 u32 dmacr = sata_dwc_readl(&hsdev->sata_dwc_regs->dmacr);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530726
727 if (hsdevp->dma_pending[tag] == SATA_DWC_DMA_PENDING_RX) {
Mans Rullgardaf50f3a2016-04-26 12:03:21 +0300728 dmacr = SATA_DWC_DMACR_RX_CLEAR(dmacr);
729 sata_dwc_writel(&hsdev->sata_dwc_regs->dmacr, dmacr);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530730 } else if (hsdevp->dma_pending[tag] == SATA_DWC_DMA_PENDING_TX) {
Mans Rullgardaf50f3a2016-04-26 12:03:21 +0300731 dmacr = SATA_DWC_DMACR_TX_CLEAR(dmacr);
732 sata_dwc_writel(&hsdev->sata_dwc_regs->dmacr, dmacr);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530733 } else {
734 /*
735 * This should not happen, it indicates the driver is out of
736 * sync. If it does happen, clear dmacr anyway.
737 */
Andy Shevchenkodb7a6572015-03-03 22:41:22 +0200738 dev_err(hsdev->dev,
Andy Shevchenkod5785142015-03-03 21:21:58 +0200739 "%s DMA protocol RX and TX DMA not pending tag=0x%02x pending=%d dmacr: 0x%08x\n",
Mans Rullgardaf50f3a2016-04-26 12:03:21 +0300740 __func__, tag, hsdevp->dma_pending[tag], dmacr);
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300741 sata_dwc_writel(&hsdev->sata_dwc_regs->dmacr,
742 SATA_DWC_DMACR_TXRXCH_CLEAR);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530743 }
744}
745
746static void sata_dwc_dma_xfer_complete(struct ata_port *ap, u32 check_status)
747{
748 struct ata_queued_cmd *qc;
749 struct sata_dwc_device_port *hsdevp = HSDEVP_FROM_AP(ap);
750 struct sata_dwc_device *hsdev = HSDEV_FROM_AP(ap);
751 u8 tag = 0;
752
753 tag = ap->link.active_tag;
754 qc = ata_qc_from_tag(ap, tag);
755 if (!qc) {
756 dev_err(ap->dev, "failed to get qc");
757 return;
758 }
759
760#ifdef DEBUG_NCQ
761 if (tag > 0) {
Andy Shevchenkod5785142015-03-03 21:21:58 +0200762 dev_info(ap->dev,
763 "%s tag=%u cmd=0x%02x dma dir=%s proto=%s dmacr=0x%08x\n",
764 __func__, qc->tag, qc->tf.command,
Sergei Shtylyov84b47e32011-01-28 22:01:01 +0300765 get_dma_dir_descript(qc->dma_dir),
766 get_prot_descript(qc->tf.protocol),
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300767 sata_dwc_readl(&hsdev->sata_dwc_regs->dmacr));
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530768 }
769#endif
770
771 if (ata_is_dma(qc->tf.protocol)) {
772 if (hsdevp->dma_pending[tag] == SATA_DWC_DMA_PENDING_NONE) {
Andy Shevchenkod5785142015-03-03 21:21:58 +0200773 dev_err(ap->dev,
774 "%s DMA protocol RX and TX DMA not pending dmacr: 0x%08x\n",
775 __func__,
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300776 sata_dwc_readl(&hsdev->sata_dwc_regs->dmacr));
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530777 }
778
779 hsdevp->dma_pending[tag] = SATA_DWC_DMA_PENDING_NONE;
780 sata_dwc_qc_complete(ap, qc, check_status);
781 ap->link.active_tag = ATA_TAG_POISON;
782 } else {
783 sata_dwc_qc_complete(ap, qc, check_status);
784 }
785}
786
787static int sata_dwc_qc_complete(struct ata_port *ap, struct ata_queued_cmd *qc,
788 u32 check_status)
789{
790 u8 status = 0;
791 u32 mask = 0x0;
792 u8 tag = qc->tag;
Mans Rullgard2d20da02016-04-26 12:03:12 +0300793 struct sata_dwc_device *hsdev = HSDEV_FROM_AP(ap);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530794 struct sata_dwc_device_port *hsdevp = HSDEVP_FROM_AP(ap);
Mans Rullgard2d20da02016-04-26 12:03:12 +0300795 hsdev->sactive_queued = 0;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530796 dev_dbg(ap->dev, "%s checkstatus? %x\n", __func__, check_status);
797
798 if (hsdevp->dma_pending[tag] == SATA_DWC_DMA_PENDING_TX)
799 dev_err(ap->dev, "TX DMA PENDING\n");
800 else if (hsdevp->dma_pending[tag] == SATA_DWC_DMA_PENDING_RX)
801 dev_err(ap->dev, "RX DMA PENDING\n");
Andy Shevchenkod5785142015-03-03 21:21:58 +0200802 dev_dbg(ap->dev,
803 "QC complete cmd=0x%02x status=0x%02x ata%u: protocol=%d\n",
804 qc->tf.command, status, ap->print_id, qc->tf.protocol);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530805
806 /* clear active bit */
807 mask = (~(qcmd_tag_to_mask(tag)));
Mans Rullgard2d20da02016-04-26 12:03:12 +0300808 hsdev->sactive_queued = hsdev->sactive_queued & mask;
809 hsdev->sactive_issued = hsdev->sactive_issued & mask;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530810 ata_qc_complete(qc);
811 return 0;
812}
813
814static void sata_dwc_enable_interrupts(struct sata_dwc_device *hsdev)
815{
816 /* Enable selective interrupts by setting the interrupt maskregister*/
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300817 sata_dwc_writel(&hsdev->sata_dwc_regs->intmr,
818 SATA_DWC_INTMR_ERRM |
819 SATA_DWC_INTMR_NEWFPM |
820 SATA_DWC_INTMR_PMABRTM |
821 SATA_DWC_INTMR_DMATM);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530822 /*
823 * Unmask the error bits that should trigger an error interrupt by
824 * setting the error mask register.
825 */
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300826 sata_dwc_writel(&hsdev->sata_dwc_regs->errmr, SATA_DWC_SERROR_ERR_BITS);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530827
Andy Shevchenkodb7a6572015-03-03 22:41:22 +0200828 dev_dbg(hsdev->dev, "%s: INTMR = 0x%08x, ERRMR = 0x%08x\n",
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300829 __func__, sata_dwc_readl(&hsdev->sata_dwc_regs->intmr),
830 sata_dwc_readl(&hsdev->sata_dwc_regs->errmr));
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530831}
832
Mans Rullgardae95d952016-04-26 12:03:15 +0300833static void sata_dwc_setup_port(struct ata_ioports *port, void __iomem *base)
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530834{
Mans Rullgardae95d952016-04-26 12:03:15 +0300835 port->cmd_addr = base + 0x00;
836 port->data_addr = base + 0x00;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530837
Mans Rullgardae95d952016-04-26 12:03:15 +0300838 port->error_addr = base + 0x04;
839 port->feature_addr = base + 0x04;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530840
Mans Rullgardae95d952016-04-26 12:03:15 +0300841 port->nsect_addr = base + 0x08;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530842
Mans Rullgardae95d952016-04-26 12:03:15 +0300843 port->lbal_addr = base + 0x0c;
844 port->lbam_addr = base + 0x10;
845 port->lbah_addr = base + 0x14;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530846
Mans Rullgardae95d952016-04-26 12:03:15 +0300847 port->device_addr = base + 0x18;
848 port->command_addr = base + 0x1c;
849 port->status_addr = base + 0x1c;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530850
Mans Rullgardae95d952016-04-26 12:03:15 +0300851 port->altstatus_addr = base + 0x20;
852 port->ctl_addr = base + 0x20;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530853}
854
Mans Rullgard50b43372016-04-26 12:03:10 +0300855static int sata_dwc_dma_get_channel(struct sata_dwc_device_port *hsdevp)
856{
857 struct sata_dwc_device *hsdev = hsdevp->hsdev;
858 struct device *dev = hsdev->dev;
859
860#ifdef CONFIG_SATA_DWC_OLD_DMA
861 if (!of_find_property(dev->of_node, "dmas", NULL))
862 return sata_dwc_dma_get_channel_old(hsdevp);
863#endif
864
865 hsdevp->chan = dma_request_chan(dev, "sata-dma");
866 if (IS_ERR(hsdevp->chan)) {
867 dev_err(dev, "failed to allocate dma channel: %ld\n",
868 PTR_ERR(hsdevp->chan));
869 return PTR_ERR(hsdevp->chan);
870 }
871
872 return 0;
873}
874
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530875/*
876 * Function : sata_dwc_port_start
877 * arguments : struct ata_ioports *port
878 * Return value : returns 0 if success, error code otherwise
879 * This function allocates the scatter gather LLI table for AHB DMA
880 */
881static int sata_dwc_port_start(struct ata_port *ap)
882{
883 int err = 0;
884 struct sata_dwc_device *hsdev;
885 struct sata_dwc_device_port *hsdevp = NULL;
886 struct device *pdev;
887 int i;
888
889 hsdev = HSDEV_FROM_AP(ap);
890
891 dev_dbg(ap->dev, "%s: port_no=%d\n", __func__, ap->port_no);
892
893 hsdev->host = ap->host;
894 pdev = ap->host->dev;
895 if (!pdev) {
896 dev_err(ap->dev, "%s: no ap->host->dev\n", __func__);
897 err = -ENODEV;
898 goto CLEANUP;
899 }
900
901 /* Allocate Port Struct */
902 hsdevp = kzalloc(sizeof(*hsdevp), GFP_KERNEL);
903 if (!hsdevp) {
904 dev_err(ap->dev, "%s: kmalloc failed for hsdevp\n", __func__);
905 err = -ENOMEM;
906 goto CLEANUP;
907 }
908 hsdevp->hsdev = hsdev;
909
Mans Rullgard50b43372016-04-26 12:03:10 +0300910 err = sata_dwc_dma_get_channel(hsdevp);
911 if (err)
Andy Shevchenko8b344482015-03-03 22:41:21 +0200912 goto CLEANUP_ALLOC;
Andy Shevchenko8b344482015-03-03 22:41:21 +0200913
Mans Rullgard0f48deb2016-04-26 12:03:11 +0300914 err = phy_power_on(hsdev->phy);
915 if (err)
916 goto CLEANUP_ALLOC;
917
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530918 for (i = 0; i < SATA_DWC_QCMD_MAX; i++)
919 hsdevp->cmd_issued[i] = SATA_DWC_CMD_ISSUED_NOT;
920
Andy Shevchenkod7c256e2015-01-07 15:24:22 +0200921 ap->bmdma_prd = NULL; /* set these so libata doesn't use them */
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530922 ap->bmdma_prd_dma = 0;
923
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530924 if (ap->port_no == 0) {
925 dev_dbg(ap->dev, "%s: clearing TXCHEN, RXCHEN in DMAC\n",
926 __func__);
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300927 sata_dwc_writel(&hsdev->sata_dwc_regs->dmacr,
928 SATA_DWC_DMACR_TXRXCH_CLEAR);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530929
930 dev_dbg(ap->dev, "%s: setting burst size in DBTSR\n",
931 __func__);
Mans Rullgardee81d6c2016-04-26 12:03:20 +0300932 sata_dwc_writel(&hsdev->sata_dwc_regs->dbtsr,
933 (SATA_DWC_DBTSR_MWR(AHB_DMA_BRST_DFLT) |
934 SATA_DWC_DBTSR_MRD(AHB_DMA_BRST_DFLT)));
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530935 }
936
937 /* Clear any error bits before libata starts issuing commands */
Mans Rullgard2d20da02016-04-26 12:03:12 +0300938 clear_serror(ap);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530939 ap->private_data = hsdevp;
Julia Lawalla081da62011-08-08 13:17:57 +0200940 dev_dbg(ap->dev, "%s: done\n", __func__);
941 return 0;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530942
Julia Lawalla081da62011-08-08 13:17:57 +0200943CLEANUP_ALLOC:
944 kfree(hsdevp);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530945CLEANUP:
Julia Lawalla081da62011-08-08 13:17:57 +0200946 dev_dbg(ap->dev, "%s: fail. ap->id = %d\n", __func__, ap->print_id);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530947 return err;
948}
949
950static void sata_dwc_port_stop(struct ata_port *ap)
951{
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530952 struct sata_dwc_device_port *hsdevp = HSDEVP_FROM_AP(ap);
Mans Rullgard0f48deb2016-04-26 12:03:11 +0300953 struct sata_dwc_device *hsdev = HSDEV_FROM_AP(ap);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530954
955 dev_dbg(ap->dev, "%s: ap->id = %d\n", __func__, ap->print_id);
956
Andy Shevchenko9e8b8552016-04-26 12:03:19 +0300957 dmaengine_terminate_sync(hsdevp->chan);
Andy Shevchenko8b344482015-03-03 22:41:21 +0200958 dma_release_channel(hsdevp->chan);
Mans Rullgard0f48deb2016-04-26 12:03:11 +0300959 phy_power_off(hsdev->phy);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530960
Andy Shevchenko8b344482015-03-03 22:41:21 +0200961 kfree(hsdevp);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530962 ap->private_data = NULL;
963}
964
965/*
966 * Function : sata_dwc_exec_command_by_tag
967 * arguments : ata_port *ap, ata_taskfile *tf, u8 tag, u32 cmd_issued
968 * Return value : None
969 * This function keeps track of individual command tag ids and calls
970 * ata_exec_command in libata
971 */
972static void sata_dwc_exec_command_by_tag(struct ata_port *ap,
973 struct ata_taskfile *tf,
974 u8 tag, u32 cmd_issued)
975{
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530976 struct sata_dwc_device_port *hsdevp = HSDEVP_FROM_AP(ap);
977
978 dev_dbg(ap->dev, "%s cmd(0x%02x): %s tag=%d\n", __func__, tf->command,
Sergei Shtylyovc2119622011-01-28 21:55:55 +0300979 ata_get_cmd_descript(tf->command), tag);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530980
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530981 hsdevp->cmd_issued[tag] = cmd_issued;
Mans Rullgard55e610c2016-04-26 12:03:02 +0300982
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530983 /*
984 * Clear SError before executing a new command.
985 * sata_dwc_scr_write and read can not be used here. Clearing the PM
986 * managed SError register for the disk needs to be done before the
987 * task file is loaded.
988 */
Mans Rullgard2d20da02016-04-26 12:03:12 +0300989 clear_serror(ap);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +0530990 ata_sff_exec_command(ap, tf);
991}
992
993static void sata_dwc_bmdma_setup_by_tag(struct ata_queued_cmd *qc, u8 tag)
994{
995 sata_dwc_exec_command_by_tag(qc->ap, &qc->tf, tag,
996 SATA_DWC_CMD_ISSUED_PEND);
997}
998
999static void sata_dwc_bmdma_setup(struct ata_queued_cmd *qc)
1000{
1001 u8 tag = qc->tag;
1002
1003 if (ata_is_ncq(qc->tf.protocol)) {
1004 dev_dbg(qc->ap->dev, "%s: ap->link.sactive=0x%08x tag=%d\n",
1005 __func__, qc->ap->link.sactive, tag);
1006 } else {
1007 tag = 0;
1008 }
1009 sata_dwc_bmdma_setup_by_tag(qc, tag);
1010}
1011
1012static void sata_dwc_bmdma_start_by_tag(struct ata_queued_cmd *qc, u8 tag)
1013{
1014 int start_dma;
Andy Shevchenko8b344482015-03-03 22:41:21 +02001015 u32 reg;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301016 struct sata_dwc_device *hsdev = HSDEV_FROM_QC(qc);
1017 struct ata_port *ap = qc->ap;
1018 struct sata_dwc_device_port *hsdevp = HSDEVP_FROM_AP(ap);
Andy Shevchenko8b344482015-03-03 22:41:21 +02001019 struct dma_async_tx_descriptor *desc = hsdevp->desc[tag];
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301020 int dir = qc->dma_dir;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301021
1022 if (hsdevp->cmd_issued[tag] != SATA_DWC_CMD_ISSUED_NOT) {
1023 start_dma = 1;
1024 if (dir == DMA_TO_DEVICE)
1025 hsdevp->dma_pending[tag] = SATA_DWC_DMA_PENDING_TX;
1026 else
1027 hsdevp->dma_pending[tag] = SATA_DWC_DMA_PENDING_RX;
1028 } else {
Andy Shevchenkod5785142015-03-03 21:21:58 +02001029 dev_err(ap->dev,
1030 "%s: Command not pending cmd_issued=%d (tag=%d) DMA NOT started\n",
1031 __func__, hsdevp->cmd_issued[tag], tag);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301032 start_dma = 0;
1033 }
1034
Andy Shevchenkod5785142015-03-03 21:21:58 +02001035 dev_dbg(ap->dev,
1036 "%s qc=%p tag: %x cmd: 0x%02x dma_dir: %s start_dma? %x\n",
1037 __func__, qc, tag, qc->tf.command,
Sergei Shtylyov84b47e32011-01-28 22:01:01 +03001038 get_dma_dir_descript(qc->dma_dir), start_dma);
Andy Shevchenkodb7a6572015-03-03 22:41:22 +02001039 sata_dwc_tf_dump(ap, &qc->tf);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301040
1041 if (start_dma) {
Mans Rullgard2d20da02016-04-26 12:03:12 +03001042 sata_dwc_scr_read(&ap->link, SCR_ERROR, &reg);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301043 if (reg & SATA_DWC_SERROR_ERR_BITS) {
1044 dev_err(ap->dev, "%s: ****** SError=0x%08x ******\n",
1045 __func__, reg);
1046 }
1047
1048 if (dir == DMA_TO_DEVICE)
Mans Rullgardee81d6c2016-04-26 12:03:20 +03001049 sata_dwc_writel(&hsdev->sata_dwc_regs->dmacr,
1050 SATA_DWC_DMACR_TXCHEN);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301051 else
Mans Rullgardee81d6c2016-04-26 12:03:20 +03001052 sata_dwc_writel(&hsdev->sata_dwc_regs->dmacr,
1053 SATA_DWC_DMACR_RXCHEN);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301054
1055 /* Enable AHB DMA transfer on the specified channel */
Andy Shevchenko8b344482015-03-03 22:41:21 +02001056 dmaengine_submit(desc);
1057 dma_async_issue_pending(hsdevp->chan);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301058 }
1059}
1060
1061static void sata_dwc_bmdma_start(struct ata_queued_cmd *qc)
1062{
1063 u8 tag = qc->tag;
1064
1065 if (ata_is_ncq(qc->tf.protocol)) {
1066 dev_dbg(qc->ap->dev, "%s: ap->link.sactive=0x%08x tag=%d\n",
1067 __func__, qc->ap->link.sactive, tag);
1068 } else {
1069 tag = 0;
1070 }
1071 dev_dbg(qc->ap->dev, "%s\n", __func__);
1072 sata_dwc_bmdma_start_by_tag(qc, tag);
1073}
1074
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301075static unsigned int sata_dwc_qc_issue(struct ata_queued_cmd *qc)
1076{
1077 u32 sactive;
1078 u8 tag = qc->tag;
1079 struct ata_port *ap = qc->ap;
Mans Rullgardae4c34852016-04-26 12:03:08 +03001080 struct sata_dwc_device_port *hsdevp = HSDEVP_FROM_AP(ap);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301081
1082#ifdef DEBUG_NCQ
1083 if (qc->tag > 0 || ap->link.sactive > 1)
Andy Shevchenkod5785142015-03-03 21:21:58 +02001084 dev_info(ap->dev,
1085 "%s ap id=%d cmd(0x%02x)=%s qc tag=%d prot=%s ap active_tag=0x%08x ap sactive=0x%08x\n",
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301086 __func__, ap->print_id, qc->tf.command,
Sergei Shtylyovc2119622011-01-28 21:55:55 +03001087 ata_get_cmd_descript(qc->tf.command),
Sergei Shtylyov84b47e32011-01-28 22:01:01 +03001088 qc->tag, get_prot_descript(qc->tf.protocol),
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301089 ap->link.active_tag, ap->link.sactive);
1090#endif
1091
1092 if (!ata_is_ncq(qc->tf.protocol))
1093 tag = 0;
Mans Rullgardae4c34852016-04-26 12:03:08 +03001094
1095 if (ata_is_dma(qc->tf.protocol)) {
1096 hsdevp->desc[tag] = dma_dwc_xfer_setup(qc);
1097 if (!hsdevp->desc[tag])
1098 return AC_ERR_SYSTEM;
1099 } else {
1100 hsdevp->desc[tag] = NULL;
1101 }
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301102
1103 if (ata_is_ncq(qc->tf.protocol)) {
Mans Rullgard2d20da02016-04-26 12:03:12 +03001104 sata_dwc_scr_read(&ap->link, SCR_ACTIVE, &sactive);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301105 sactive |= (0x00000001 << tag);
Mans Rullgard2d20da02016-04-26 12:03:12 +03001106 sata_dwc_scr_write(&ap->link, SCR_ACTIVE, sactive);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301107
Andy Shevchenkod5785142015-03-03 21:21:58 +02001108 dev_dbg(qc->ap->dev,
1109 "%s: tag=%d ap->link.sactive = 0x%08x sactive=0x%08x\n",
1110 __func__, tag, qc->ap->link.sactive, sactive);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301111
1112 ap->ops->sff_tf_load(ap, &qc->tf);
Andy Shevchenko077028e2016-04-26 12:03:09 +03001113 sata_dwc_exec_command_by_tag(ap, &qc->tf, tag,
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301114 SATA_DWC_CMD_ISSUED_PEND);
1115 } else {
Andy Shevchenko077028e2016-04-26 12:03:09 +03001116 return ata_bmdma_qc_issue(qc);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301117 }
1118 return 0;
1119}
1120
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301121static void sata_dwc_error_handler(struct ata_port *ap)
1122{
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301123 ata_sff_error_handler(ap);
1124}
1125
Andy Shevchenkod7c256e2015-01-07 15:24:22 +02001126static int sata_dwc_hardreset(struct ata_link *link, unsigned int *class,
1127 unsigned long deadline)
Thang Q. Nguyen3a8b7882012-04-17 15:43:13 +07001128{
1129 struct sata_dwc_device *hsdev = HSDEV_FROM_AP(link->ap);
1130 int ret;
1131
1132 ret = sata_sff_hardreset(link, class, deadline);
1133
1134 sata_dwc_enable_interrupts(hsdev);
1135
1136 /* Reconfigure the DMA control register */
Mans Rullgardee81d6c2016-04-26 12:03:20 +03001137 sata_dwc_writel(&hsdev->sata_dwc_regs->dmacr,
1138 SATA_DWC_DMACR_TXRXCH_CLEAR);
Thang Q. Nguyen3a8b7882012-04-17 15:43:13 +07001139
1140 /* Reconfigure the DMA Burst Transaction Size register */
Mans Rullgardee81d6c2016-04-26 12:03:20 +03001141 sata_dwc_writel(&hsdev->sata_dwc_regs->dbtsr,
1142 SATA_DWC_DBTSR_MWR(AHB_DMA_BRST_DFLT) |
1143 SATA_DWC_DBTSR_MRD(AHB_DMA_BRST_DFLT));
Thang Q. Nguyen3a8b7882012-04-17 15:43:13 +07001144
1145 return ret;
1146}
1147
Christian Lampartera7e6de52016-04-26 12:03:03 +03001148static void sata_dwc_dev_select(struct ata_port *ap, unsigned int device)
1149{
1150 /* SATA DWC is master only */
1151}
1152
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301153/*
1154 * scsi mid-layer and libata interface structures
1155 */
1156static struct scsi_host_template sata_dwc_sht = {
1157 ATA_NCQ_SHT(DRV_NAME),
1158 /*
1159 * test-only: Currently this driver doesn't handle NCQ
1160 * correctly. We enable NCQ but set the queue depth to a
1161 * max of 1. This will get fixed in in a future release.
1162 */
1163 .sg_tablesize = LIBATA_MAX_PRD,
Andy Shevchenkod7c256e2015-01-07 15:24:22 +02001164 /* .can_queue = ATA_MAX_QUEUE, */
Andy Shevchenko6689dfa2016-04-26 12:03:04 +03001165 /*
1166 * Make sure a LLI block is not created that will span 8K max FIS
1167 * boundary. If the block spans such a FIS boundary, there is a chance
1168 * that a DMA burst will cross that boundary -- this results in an
1169 * error in the host controller.
1170 */
1171 .dma_boundary = 0x1fff /* ATA_DMA_BOUNDARY */,
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301172};
1173
1174static struct ata_port_operations sata_dwc_ops = {
1175 .inherits = &ata_sff_port_ops,
1176
1177 .error_handler = sata_dwc_error_handler,
Thang Q. Nguyen3a8b7882012-04-17 15:43:13 +07001178 .hardreset = sata_dwc_hardreset,
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301179
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301180 .qc_issue = sata_dwc_qc_issue,
1181
1182 .scr_read = sata_dwc_scr_read,
1183 .scr_write = sata_dwc_scr_write,
1184
1185 .port_start = sata_dwc_port_start,
1186 .port_stop = sata_dwc_port_stop,
1187
Christian Lampartera7e6de52016-04-26 12:03:03 +03001188 .sff_dev_select = sata_dwc_dev_select,
1189
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301190 .bmdma_setup = sata_dwc_bmdma_setup,
1191 .bmdma_start = sata_dwc_bmdma_start,
1192};
1193
1194static const struct ata_port_info sata_dwc_port_info[] = {
1195 {
Sergei Shtylyov9cbe0562011-02-04 22:05:48 +03001196 .flags = ATA_FLAG_SATA | ATA_FLAG_NCQ,
Sergei Shtylyovb83a4c32011-01-25 19:27:35 +03001197 .pio_mask = ATA_PIO4,
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301198 .udma_mask = ATA_UDMA6,
1199 .port_ops = &sata_dwc_ops,
1200 },
1201};
1202
Grant Likely1c48a5c2011-02-17 02:43:24 -07001203static int sata_dwc_probe(struct platform_device *ofdev)
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301204{
1205 struct sata_dwc_device *hsdev;
1206 u32 idr, versionr;
1207 char *ver = (char *)&versionr;
Mans Rullgard175553e2016-04-26 12:03:16 +03001208 void __iomem *base;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301209 int err = 0;
Andy Shevchenko4aaa7182015-01-07 15:24:19 +02001210 int irq;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301211 struct ata_host *host;
1212 struct ata_port_info pi = sata_dwc_port_info[0];
1213 const struct ata_port_info *ppi[] = { &pi, NULL };
Thang Q. Nguyendc7f71f2012-05-10 11:17:10 +07001214 struct device_node *np = ofdev->dev.of_node;
Andy Shevchenko73ec1b52016-04-26 12:03:22 +03001215 struct resource *res;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301216
1217 /* Allocate DWC SATA device */
Andy Shevchenkod537fc02015-01-08 12:50:14 +02001218 host = ata_host_alloc_pinfo(&ofdev->dev, ppi, SATA_DWC_MAX_PORTS);
1219 hsdev = devm_kzalloc(&ofdev->dev, sizeof(*hsdev), GFP_KERNEL);
1220 if (!host || !hsdev)
Andy Shevchenkoc592b742015-01-08 12:50:13 +02001221 return -ENOMEM;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301222
Andy Shevchenkod537fc02015-01-08 12:50:14 +02001223 host->private_data = hsdev;
1224
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301225 /* Ioremap SATA registers */
Andy Shevchenko73ec1b52016-04-26 12:03:22 +03001226 res = platform_get_resource(ofdev, IORESOURCE_MEM, 0);
1227 base = devm_ioremap_resource(&ofdev->dev, res);
1228 if (IS_ERR(base)) {
Andy Shevchenkod5785142015-03-03 21:21:58 +02001229 dev_err(&ofdev->dev,
1230 "ioremap failed for SATA register address\n");
Andy Shevchenko73ec1b52016-04-26 12:03:22 +03001231 return PTR_ERR(base);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301232 }
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301233 dev_dbg(&ofdev->dev, "ioremap done for SATA register address\n");
1234
1235 /* Synopsys DWC SATA specific Registers */
Mans Rullgard175553e2016-04-26 12:03:16 +03001236 hsdev->sata_dwc_regs = base + SATA_DWC_REG_OFFSET;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301237
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301238 /* Setup port */
1239 host->ports[0]->ioaddr.cmd_addr = base;
1240 host->ports[0]->ioaddr.scr_addr = base + SATA_DWC_SCR_OFFSET;
Mans Rullgardae95d952016-04-26 12:03:15 +03001241 sata_dwc_setup_port(&host->ports[0]->ioaddr, base);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301242
1243 /* Read the ID and Version Registers */
Mans Rullgardee81d6c2016-04-26 12:03:20 +03001244 idr = sata_dwc_readl(&hsdev->sata_dwc_regs->idr);
1245 versionr = sata_dwc_readl(&hsdev->sata_dwc_regs->versionr);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301246 dev_notice(&ofdev->dev, "id %d, controller version %c.%c%c\n",
1247 idr, ver[0], ver[1], ver[2]);
1248
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301249 /* Save dev for later use in dev_xxx() routines */
Andy Shevchenkodb7a6572015-03-03 22:41:22 +02001250 hsdev->dev = &ofdev->dev;
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301251
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301252 /* Enable SATA Interrupts */
1253 sata_dwc_enable_interrupts(hsdev);
1254
1255 /* Get SATA interrupt number */
Andy Shevchenko90379082015-01-08 12:50:12 +02001256 irq = irq_of_parse_and_map(np, 0);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301257 if (irq == NO_IRQ) {
1258 dev_err(&ofdev->dev, "no SATA DMA irq\n");
1259 err = -ENODEV;
1260 goto error_out;
1261 }
1262
Mans Rullgard50b43372016-04-26 12:03:10 +03001263#ifdef CONFIG_SATA_DWC_OLD_DMA
1264 if (!of_find_property(np, "dmas", NULL)) {
1265 err = sata_dwc_dma_init_old(ofdev, hsdev);
1266 if (err)
1267 goto error_out;
1268 }
1269#endif
1270
Mans Rullgard0f48deb2016-04-26 12:03:11 +03001271 hsdev->phy = devm_phy_optional_get(hsdev->dev, "sata-phy");
1272 if (IS_ERR(hsdev->phy)) {
1273 err = PTR_ERR(hsdev->phy);
1274 hsdev->phy = NULL;
1275 goto error_out;
1276 }
1277
1278 err = phy_init(hsdev->phy);
1279 if (err)
1280 goto error_out;
1281
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301282 /*
1283 * Now, register with libATA core, this will also initiate the
1284 * device discovery process, invoking our port_start() handler &
1285 * error_handler() to execute a dummy Softreset EH session
1286 */
Andy Shevchenko4aaa7182015-01-07 15:24:19 +02001287 err = ata_host_activate(host, irq, sata_dwc_isr, 0, &sata_dwc_sht);
1288 if (err)
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301289 dev_err(&ofdev->dev, "failed to activate host");
1290
1291 dev_set_drvdata(&ofdev->dev, host);
1292 return 0;
1293
1294error_out:
Mans Rullgard0f48deb2016-04-26 12:03:11 +03001295 phy_exit(hsdev->phy);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301296 return err;
1297}
1298
Stephen Rothwell60652d02010-08-16 12:20:59 +10001299static int sata_dwc_remove(struct platform_device *ofdev)
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301300{
1301 struct device *dev = &ofdev->dev;
1302 struct ata_host *host = dev_get_drvdata(dev);
1303 struct sata_dwc_device *hsdev = host->private_data;
1304
1305 ata_host_detach(host);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301306
Mans Rullgard0f48deb2016-04-26 12:03:11 +03001307 phy_exit(hsdev->phy);
1308
Mans Rullgard50b43372016-04-26 12:03:10 +03001309#ifdef CONFIG_SATA_DWC_OLD_DMA
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301310 /* Free SATA DMA resources */
Mans Rullgard50b43372016-04-26 12:03:10 +03001311 sata_dwc_dma_exit_old(hsdev);
1312#endif
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301313
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301314 dev_dbg(&ofdev->dev, "done\n");
1315 return 0;
1316}
1317
1318static const struct of_device_id sata_dwc_match[] = {
1319 { .compatible = "amcc,sata-460ex", },
1320 {}
1321};
1322MODULE_DEVICE_TABLE(of, sata_dwc_match);
1323
Grant Likely1c48a5c2011-02-17 02:43:24 -07001324static struct platform_driver sata_dwc_driver = {
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301325 .driver = {
1326 .name = DRV_NAME,
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301327 .of_match_table = sata_dwc_match,
1328 },
1329 .probe = sata_dwc_probe,
1330 .remove = sata_dwc_remove,
1331};
1332
Axel Lin99c8ea32011-11-27 14:44:26 +08001333module_platform_driver(sata_dwc_driver);
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301334
1335MODULE_LICENSE("GPL");
1336MODULE_AUTHOR("Mark Miesfeld <mmiesfeld@amcc.com>");
Andy Shevchenkod5785142015-03-03 21:21:58 +02001337MODULE_DESCRIPTION("DesignWare Cores SATA controller low level driver");
Rupjyoti Sarmah62936002010-07-06 16:36:03 +05301338MODULE_VERSION(DRV_VERSION);