2 * Copyright (c) 2010 Sascha Hauer <s.hauer@pengutronix.de>
3 * Copyright (C) 2005-2009 Freescale Semiconductor, Inc.
5 * This program is free software; you can redistribute it and/or modify it
6 * under the terms of the GNU General Public License as published by the
7 * Free Software Foundation; either version 2 of the License, or (at your
8 * option) any later version.
10 * This program is distributed in the hope that it will be useful, but
11 * WITHOUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY
12 * or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License
15 #include <linux/export.h>
16 #include <linux/types.h>
17 #include <linux/errno.h>
20 #include <video/imx-ipu-v3.h>
23 #define DMFC_RD_CHAN 0x0000
24 #define DMFC_WR_CHAN 0x0004
25 #define DMFC_WR_CHAN_DEF 0x0008
26 #define DMFC_DP_CHAN 0x000c
27 #define DMFC_DP_CHAN_DEF 0x0010
28 #define DMFC_GENERAL1 0x0014
29 #define DMFC_GENERAL2 0x0018
30 #define DMFC_IC_CTRL 0x001c
31 #define DMFC_WR_CHAN_ALT 0x0020
32 #define DMFC_WR_CHAN_DEF_ALT 0x0024
33 #define DMFC_DP_CHAN_ALT 0x0028
34 #define DMFC_DP_CHAN_DEF_ALT 0x002c
35 #define DMFC_GENERAL1_ALT 0x0030
36 #define DMFC_STAT 0x0034
38 #define DMFC_WR_CHAN_1_28 0
39 #define DMFC_WR_CHAN_2_41 8
40 #define DMFC_WR_CHAN_1C_42 16
41 #define DMFC_WR_CHAN_2C_43 24
43 #define DMFC_DP_CHAN_5B_23 0
44 #define DMFC_DP_CHAN_5F_27 8
45 #define DMFC_DP_CHAN_6B_24 16
46 #define DMFC_DP_CHAN_6F_29 24
48 #define DMFC_FIFO_SIZE_64 (3 << 3)
49 #define DMFC_FIFO_SIZE_128 (2 << 3)
50 #define DMFC_FIFO_SIZE_256 (1 << 3)
51 #define DMFC_FIFO_SIZE_512 (0 << 3)
53 #define DMFC_SEGMENT(x) ((x & 0x7) << 0)
54 #define DMFC_BURSTSIZE_128 (0 << 6)
55 #define DMFC_BURSTSIZE_64 (1 << 6)
56 #define DMFC_BURSTSIZE_32 (2 << 6)
57 #define DMFC_BURSTSIZE_16 (3 << 6)
59 struct dmfc_channel_data {
61 unsigned long channel_reg;
64 unsigned max_fifo_lines;
67 static const struct dmfc_channel_data dmfcdata[] = {
69 .ipu_channel = IPUV3_CHANNEL_MEM_BG_SYNC,
70 .channel_reg = DMFC_DP_CHAN,
71 .shift = DMFC_DP_CHAN_5B_23,
76 .channel_reg = DMFC_DP_CHAN,
77 .shift = DMFC_DP_CHAN_6B_24,
81 .ipu_channel = IPUV3_CHANNEL_MEM_FG_SYNC,
82 .channel_reg = DMFC_DP_CHAN,
83 .shift = DMFC_DP_CHAN_5F_27,
87 .ipu_channel = IPUV3_CHANNEL_MEM_DC_SYNC,
88 .channel_reg = DMFC_WR_CHAN,
89 .shift = DMFC_WR_CHAN_1_28,
94 .channel_reg = DMFC_DP_CHAN,
95 .shift = DMFC_DP_CHAN_6F_29,
101 #define DMFC_NUM_CHANNELS ARRAY_SIZE(dmfcdata)
103 struct ipu_dmfc_priv;
105 struct dmfc_channel {
111 struct ipu_dmfc_priv *priv;
112 const struct dmfc_channel_data *data;
115 struct ipu_dmfc_priv {
118 struct dmfc_channel channels[DMFC_NUM_CHANNELS];
120 unsigned long bandwidth_per_slot;
125 int ipu_dmfc_enable_channel(struct dmfc_channel *dmfc)
127 struct ipu_dmfc_priv *priv = dmfc->priv;
128 mutex_lock(&priv->mutex);
130 if (!priv->use_count)
131 ipu_module_enable(priv->ipu, IPU_CONF_DMFC_EN);
135 mutex_unlock(&priv->mutex);
139 EXPORT_SYMBOL_GPL(ipu_dmfc_enable_channel);
141 static void ipu_dmfc_wait_fifos(struct ipu_dmfc_priv *priv)
143 unsigned long timeout = jiffies + msecs_to_jiffies(1000);
145 while ((readl(priv->base + DMFC_STAT) & 0x02fff000) != 0x02fff000) {
146 if (time_after(jiffies, timeout)) {
148 "Timeout waiting for DMFC FIFOs to clear\n");
155 void ipu_dmfc_disable_channel(struct dmfc_channel *dmfc)
157 struct ipu_dmfc_priv *priv = dmfc->priv;
159 mutex_lock(&priv->mutex);
163 if (!priv->use_count) {
164 ipu_dmfc_wait_fifos(priv);
165 ipu_module_disable(priv->ipu, IPU_CONF_DMFC_EN);
168 if (priv->use_count < 0)
171 mutex_unlock(&priv->mutex);
173 EXPORT_SYMBOL_GPL(ipu_dmfc_disable_channel);
175 static int ipu_dmfc_setup_channel(struct dmfc_channel *dmfc, int slots,
176 int segment, int burstsize)
178 struct ipu_dmfc_priv *priv = dmfc->priv;
182 "dmfc: using %d slots starting from segment %d for IPU channel %d\n",
183 slots, segment, dmfc->data->ipu_channel);
187 field = DMFC_FIFO_SIZE_64;
190 field = DMFC_FIFO_SIZE_128;
193 field = DMFC_FIFO_SIZE_256;
196 field = DMFC_FIFO_SIZE_512;
204 field |= DMFC_BURSTSIZE_16;
207 field |= DMFC_BURSTSIZE_32;
210 field |= DMFC_BURSTSIZE_64;
213 field |= DMFC_BURSTSIZE_128;
217 field |= DMFC_SEGMENT(segment);
219 val = readl(priv->base + dmfc->data->channel_reg);
221 val &= ~(0xff << dmfc->data->shift);
222 val |= field << dmfc->data->shift;
224 writel(val, priv->base + dmfc->data->channel_reg);
227 dmfc->segment = segment;
228 dmfc->burstsize = burstsize;
229 dmfc->slotmask = ((1 << slots) - 1) << segment;
234 static int dmfc_bandwidth_to_slots(struct ipu_dmfc_priv *priv,
235 unsigned long bandwidth)
239 while (slots * priv->bandwidth_per_slot < bandwidth)
245 static int dmfc_find_slots(struct ipu_dmfc_priv *priv, int slots)
247 unsigned slotmask_need, slotmask_used = 0;
250 slotmask_need = (1 << slots) - 1;
252 for (i = 0; i < DMFC_NUM_CHANNELS; i++)
253 slotmask_used |= priv->channels[i].slotmask;
255 while (slotmask_need <= 0xff) {
256 if (!(slotmask_used & slotmask_need))
266 void ipu_dmfc_free_bandwidth(struct dmfc_channel *dmfc)
268 struct ipu_dmfc_priv *priv = dmfc->priv;
271 dev_dbg(priv->dev, "dmfc: freeing %d slots starting from segment %d\n",
272 dmfc->slots, dmfc->segment);
274 mutex_lock(&priv->mutex);
283 for (i = 0; i < DMFC_NUM_CHANNELS; i++)
284 priv->channels[i].slotmask = 0;
286 for (i = 0; i < DMFC_NUM_CHANNELS; i++) {
287 if (priv->channels[i].slots > 0) {
288 priv->channels[i].segment =
289 dmfc_find_slots(priv, priv->channels[i].slots);
290 priv->channels[i].slotmask =
291 ((1 << priv->channels[i].slots) - 1) <<
292 priv->channels[i].segment;
296 for (i = 0; i < DMFC_NUM_CHANNELS; i++) {
297 if (priv->channels[i].slots > 0)
298 ipu_dmfc_setup_channel(&priv->channels[i],
299 priv->channels[i].slots,
300 priv->channels[i].segment,
301 priv->channels[i].burstsize);
304 mutex_unlock(&priv->mutex);
306 EXPORT_SYMBOL_GPL(ipu_dmfc_free_bandwidth);
308 int ipu_dmfc_alloc_bandwidth(struct dmfc_channel *dmfc,
309 unsigned long bandwidth_pixel_per_second, int burstsize)
311 struct ipu_dmfc_priv *priv = dmfc->priv;
312 int slots = dmfc_bandwidth_to_slots(priv, bandwidth_pixel_per_second);
313 int segment = -1, ret = 0;
315 dev_dbg(priv->dev, "dmfc: trying to allocate %ldMpixel/s for IPU channel %d\n",
316 bandwidth_pixel_per_second / 1000000,
317 dmfc->data->ipu_channel);
319 ipu_dmfc_free_bandwidth(dmfc);
321 mutex_lock(&priv->mutex);
328 /* For the MEM_BG channel, first try to allocate twice the slots */
329 if (dmfc->data->ipu_channel == IPUV3_CHANNEL_MEM_BG_SYNC)
330 segment = dmfc_find_slots(priv, slots * 2);
332 /* Always allocate at least 128*4 bytes (2 slots) */
338 segment = dmfc_find_slots(priv, slots);
344 ipu_dmfc_setup_channel(dmfc, slots, segment, burstsize);
347 mutex_unlock(&priv->mutex);
351 EXPORT_SYMBOL_GPL(ipu_dmfc_alloc_bandwidth);
353 int ipu_dmfc_init_channel(struct dmfc_channel *dmfc, int width)
355 struct ipu_dmfc_priv *priv = dmfc->priv;
358 dmfc_gen1 = readl(priv->base + DMFC_GENERAL1);
360 if ((dmfc->slots * 64 * 4) / width > dmfc->data->max_fifo_lines)
361 dmfc_gen1 |= 1 << dmfc->data->eot_shift;
363 dmfc_gen1 &= ~(1 << dmfc->data->eot_shift);
365 writel(dmfc_gen1, priv->base + DMFC_GENERAL1);
369 EXPORT_SYMBOL_GPL(ipu_dmfc_init_channel);
371 struct dmfc_channel *ipu_dmfc_get(struct ipu_soc *ipu, int ipu_channel)
373 struct ipu_dmfc_priv *priv = ipu->dmfc_priv;
376 for (i = 0; i < DMFC_NUM_CHANNELS; i++)
377 if (dmfcdata[i].ipu_channel == ipu_channel)
378 return &priv->channels[i];
379 return ERR_PTR(-ENODEV);
381 EXPORT_SYMBOL_GPL(ipu_dmfc_get);
383 void ipu_dmfc_put(struct dmfc_channel *dmfc)
385 ipu_dmfc_free_bandwidth(dmfc);
387 EXPORT_SYMBOL_GPL(ipu_dmfc_put);
389 int ipu_dmfc_init(struct ipu_soc *ipu, struct device *dev, unsigned long base,
392 struct ipu_dmfc_priv *priv;
395 priv = devm_kzalloc(dev, sizeof(*priv), GFP_KERNEL);
399 priv->base = devm_ioremap(dev, base, PAGE_SIZE);
405 mutex_init(&priv->mutex);
407 ipu->dmfc_priv = priv;
409 for (i = 0; i < DMFC_NUM_CHANNELS; i++) {
410 priv->channels[i].priv = priv;
411 priv->channels[i].ipu = ipu;
412 priv->channels[i].data = &dmfcdata[i];
415 writel(0x0, priv->base + DMFC_WR_CHAN);
416 writel(0x0, priv->base + DMFC_DP_CHAN);
419 * We have a total bandwidth of clkrate * 4pixel divided
422 priv->bandwidth_per_slot = clk_get_rate(ipu_clk) * 4 / 8;
424 dev_dbg(dev, "dmfc: 8 slots with %ldMpixel/s bandwidth each\n",
425 priv->bandwidth_per_slot / 1000000);
427 writel(0x202020f6, priv->base + DMFC_WR_CHAN_DEF);
428 writel(0x2020f6f6, priv->base + DMFC_DP_CHAN_DEF);
429 writel(0x00000003, priv->base + DMFC_GENERAL1);
434 void ipu_dmfc_exit(struct ipu_soc *ipu)