]> asedeno.scripts.mit.edu Git - linux.git/blob - drivers/dma/dw/dw.c
977aa28bf81df0e43405c83b9c006f2f4518a89a
[linux.git] / drivers / dma / dw / dw.c
1 // SPDX-License-Identifier: GPL-2.0
2 // Copyright (C) 2007-2008 Atmel Corporation
3 // Copyright (C) 2010-2011 ST Microelectronics
4 // Copyright (C) 2013,2018 Intel Corporation
5
6 #include <linux/bitops.h>
7 #include <linux/errno.h>
8 #include <linux/slab.h>
9 #include <linux/types.h>
10
11 #include "internal.h"
12
13 static void dw_dma_initialize_chan(struct dw_dma_chan *dwc)
14 {
15         struct dw_dma *dw = to_dw_dma(dwc->chan.device);
16         u32 cfghi = DWC_CFGH_FIFO_MODE;
17         u32 cfglo = DWC_CFGL_CH_PRIOR(dwc->priority);
18         bool hs_polarity = dwc->dws.hs_polarity;
19
20         cfghi |= DWC_CFGH_DST_PER(dwc->dws.dst_id);
21         cfghi |= DWC_CFGH_SRC_PER(dwc->dws.src_id);
22         cfghi |= DWC_CFGH_PROTCTL(dw->pdata->protctl);
23
24         /* Set polarity of handshake interface */
25         cfglo |= hs_polarity ? DWC_CFGL_HS_DST_POL | DWC_CFGL_HS_SRC_POL : 0;
26
27         channel_writel(dwc, CFG_LO, cfglo);
28         channel_writel(dwc, CFG_HI, cfghi);
29 }
30
31 static void dw_dma_suspend_chan(struct dw_dma_chan *dwc, bool drain)
32 {
33         u32 cfglo = channel_readl(dwc, CFG_LO);
34
35         channel_writel(dwc, CFG_LO, cfglo | DWC_CFGL_CH_SUSP);
36 }
37
38 static u32 dw_dma_bytes2block(struct dw_dma_chan *dwc,
39                               size_t bytes, unsigned int width, size_t *len)
40 {
41         u32 block;
42
43         if ((bytes >> width) > dwc->block_size) {
44                 block = dwc->block_size;
45                 *len = dwc->block_size << width;
46         } else {
47                 block = bytes >> width;
48                 *len = bytes;
49         }
50
51         return block;
52 }
53
54 static size_t dw_dma_block2bytes(struct dw_dma_chan *dwc, u32 block, u32 width)
55 {
56         return DWC_CTLH_BLOCK_TS(block) << width;
57 }
58
59 static void dw_dma_encode_maxburst(struct dw_dma_chan *dwc, u32 *maxburst)
60 {
61         /*
62          * Fix burst size according to dw_dmac. We need to convert them as:
63          * 1 -> 0, 4 -> 1, 8 -> 2, 16 -> 3.
64          */
65         *maxburst = *maxburst > 1 ? fls(*maxburst) - 2 : 0;
66 }
67
68 static void dw_dma_set_device_name(struct dw_dma *dw, int id)
69 {
70         snprintf(dw->name, sizeof(dw->name), "dw:dmac%d", id);
71 }
72
73 static void dw_dma_disable(struct dw_dma *dw)
74 {
75         do_dw_dma_off(dw);
76 }
77
78 static void dw_dma_enable(struct dw_dma *dw)
79 {
80         do_dw_dma_on(dw);
81 }
82
83 int dw_dma_probe(struct dw_dma_chip *chip)
84 {
85         struct dw_dma *dw;
86
87         dw = devm_kzalloc(chip->dev, sizeof(*dw), GFP_KERNEL);
88         if (!dw)
89                 return -ENOMEM;
90
91         /* Channel operations */
92         dw->initialize_chan = dw_dma_initialize_chan;
93         dw->suspend_chan = dw_dma_suspend_chan;
94         dw->encode_maxburst = dw_dma_encode_maxburst;
95         dw->bytes2block = dw_dma_bytes2block;
96         dw->block2bytes = dw_dma_block2bytes;
97
98         /* Device operations */
99         dw->set_device_name = dw_dma_set_device_name;
100         dw->disable = dw_dma_disable;
101         dw->enable = dw_dma_enable;
102
103         chip->dw = dw;
104         return do_dma_probe(chip);
105 }
106 EXPORT_SYMBOL_GPL(dw_dma_probe);
107
108 int dw_dma_remove(struct dw_dma_chip *chip)
109 {
110         return do_dma_remove(chip);
111 }
112 EXPORT_SYMBOL_GPL(dw_dma_remove);