2 * TI OMAP DMA gigacell.
4 * Copyright (C) 2006-2008 Andrzej Zaborowski <balrog@zabor.org>
5 * Copyright (C) 2007-2008 Lauro Ramos Venancio <lauro.venancio@indt.org.br>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License as
9 * published by the Free Software Foundation; either version 2 of
10 * the License, or (at your option) any later version.
12 * This program is distributed in the hope that it will be useful,
13 * but WITHOUT ANY WARRANTY; without even the implied warranty of
14 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
15 * GNU General Public License for more details.
17 * You should have received a copy of the GNU General Public License along
18 * with this program; if not, see <http://www.gnu.org/licenses/>.
20 #include "qemu-common.h"
21 #include "qemu-timer.h"
26 struct omap_dma_channel_s
{
33 enum omap_dma_port port
[2];
34 target_phys_addr_t addr
[2];
35 omap_dma_addressing_t mode
[2];
38 int32_t frame_index
[2];
39 int16_t element_index
[2];
48 /* auto init and linked channel data */
55 /* interruption data */
75 int omap_3_1_compatible_disable
;
78 struct omap_dma_channel_s
*sibling
;
80 struct omap_dma_reg_set_s
{
81 target_phys_addr_t src
, dest
;
92 struct soc_dma_ch_s
*dma
;
94 /* unused parameters */
97 int interleave_disabled
;
104 struct soc_dma_s
*dma
;
106 struct omap_mpu_state_s
*mpu
;
109 void (*intr_update
)(struct omap_dma_s
*s
);
110 enum omap_dma_model model
;
111 int omap_3_1_mapping_disabled
;
120 struct omap_dma_channel_s ch
[32];
121 struct omap_dma_lcd_channel_s lcd_ch
;
125 #define TIMEOUT_INTR (1 << 0)
126 #define EVENT_DROP_INTR (1 << 1)
127 #define HALF_FRAME_INTR (1 << 2)
128 #define END_FRAME_INTR (1 << 3)
129 #define LAST_FRAME_INTR (1 << 4)
130 #define END_BLOCK_INTR (1 << 5)
131 #define SYNC (1 << 6)
132 #define END_PKT_INTR (1 << 7)
133 #define TRANS_ERR_INTR (1 << 8)
134 #define MISALIGN_INTR (1 << 11)
136 static inline void omap_dma_interrupts_update(struct omap_dma_s
*s
)
138 return s
->intr_update(s
);
141 static void omap_dma_channel_load(struct omap_dma_channel_s
*ch
)
143 struct omap_dma_reg_set_s
*a
= &ch
->active_set
;
145 int omap_3_1
= !ch
->omap_3_1_compatible_disable
;
148 * TODO: verify address ranges and alignment
149 * TODO: port endianness
152 a
->src
= ch
->addr
[0];
153 a
->dest
= ch
->addr
[1];
154 a
->frames
= ch
->frames
;
155 a
->elements
= ch
->elements
;
156 a
->pck_elements
= ch
->frame_index
[!ch
->src_sync
];
161 if (unlikely(!ch
->elements
|| !ch
->frames
)) {
162 printf("%s: bad DMA request\n", __FUNCTION__
);
166 for (i
= 0; i
< 2; i
++)
167 switch (ch
->mode
[i
]) {
169 a
->elem_delta
[i
] = 0;
170 a
->frame_delta
[i
] = 0;
172 case post_incremented
:
173 a
->elem_delta
[i
] = ch
->data_type
;
174 a
->frame_delta
[i
] = 0;
177 a
->elem_delta
[i
] = ch
->data_type
+
178 ch
->element_index
[omap_3_1
? 0 : i
] - 1;
179 a
->frame_delta
[i
] = 0;
182 a
->elem_delta
[i
] = ch
->data_type
+
183 ch
->element_index
[omap_3_1
? 0 : i
] - 1;
184 a
->frame_delta
[i
] = ch
->frame_index
[omap_3_1
? 0 : i
] -
185 ch
->element_index
[omap_3_1
? 0 : i
];
191 normal
= !ch
->transparent_copy
&& !ch
->constant_fill
&&
192 /* FIFO is big-endian so either (ch->endian[n] == 1) OR
193 * (ch->endian_lock[n] == 1) mean no endianism conversion. */
194 (ch
->endian
[0] | ch
->endian_lock
[0]) ==
195 (ch
->endian
[1] | ch
->endian_lock
[1]);
196 for (i
= 0; i
< 2; i
++) {
197 /* TODO: for a->frame_delta[i] > 0 still use the fast path, just
198 * limit min_elems in omap_dma_transfer_setup to the nearest frame
200 if (!a
->elem_delta
[i
] && normal
&&
201 (a
->frames
== 1 || !a
->frame_delta
[i
]))
202 ch
->dma
->type
[i
] = soc_dma_access_const
;
203 else if (a
->elem_delta
[i
] == ch
->data_type
&& normal
&&
204 (a
->frames
== 1 || !a
->frame_delta
[i
]))
205 ch
->dma
->type
[i
] = soc_dma_access_linear
;
207 ch
->dma
->type
[i
] = soc_dma_access_other
;
209 ch
->dma
->vaddr
[i
] = ch
->addr
[i
];
211 soc_dma_ch_update(ch
->dma
);
214 static void omap_dma_activate_channel(struct omap_dma_s
*s
,
215 struct omap_dma_channel_s
*ch
)
218 if (ch
->set_update
) {
219 /* It's not clear when the active set is supposed to be
220 * loaded from registers. We're already loading it when the
221 * channel is enabled, and for some guests this is not enough
222 * but that may be also because of a race condition (no
223 * delays in qemu) in the guest code, which we're just
224 * working around here. */
225 omap_dma_channel_load(ch
);
230 soc_dma_set_request(ch
->dma
, 1);
236 static void omap_dma_deactivate_channel(struct omap_dma_s
*s
,
237 struct omap_dma_channel_s
*ch
)
240 ch
->cpc
= ch
->active_set
.dest
& 0xffff;
242 if (ch
->pending_request
&& !ch
->waiting_end_prog
&& ch
->enable
) {
243 /* Don't deactivate the channel */
244 ch
->pending_request
= 0;
248 /* Don't deactive the channel if it is synchronized and the DMA request is
250 if (ch
->sync
&& ch
->enable
&& (s
->dma
->drqbmp
& (1 << ch
->sync
)))
256 soc_dma_set_request(ch
->dma
, 0);
260 static void omap_dma_enable_channel(struct omap_dma_s
*s
,
261 struct omap_dma_channel_s
*ch
)
265 ch
->waiting_end_prog
= 0;
266 omap_dma_channel_load(ch
);
267 /* TODO: theoretically if ch->sync && ch->prefetch &&
268 * !s->dma->drqbmp[ch->sync], we should also activate and fetch
269 * from source and then stall until signalled. */
270 if ((!ch
->sync
) || (s
->dma
->drqbmp
& (1 << ch
->sync
)))
271 omap_dma_activate_channel(s
, ch
);
275 static void omap_dma_disable_channel(struct omap_dma_s
*s
,
276 struct omap_dma_channel_s
*ch
)
280 /* Discard any pending request */
281 ch
->pending_request
= 0;
282 omap_dma_deactivate_channel(s
, ch
);
286 static void omap_dma_channel_end_prog(struct omap_dma_s
*s
,
287 struct omap_dma_channel_s
*ch
)
289 if (ch
->waiting_end_prog
) {
290 ch
->waiting_end_prog
= 0;
291 if (!ch
->sync
|| ch
->pending_request
) {
292 ch
->pending_request
= 0;
293 omap_dma_activate_channel(s
, ch
);
298 static void omap_dma_interrupts_3_1_update(struct omap_dma_s
*s
)
300 struct omap_dma_channel_s
*ch
= s
->ch
;
302 /* First three interrupts are shared between two channels each. */
303 if (ch
[0].status
| ch
[6].status
)
304 qemu_irq_raise(ch
[0].irq
);
305 if (ch
[1].status
| ch
[7].status
)
306 qemu_irq_raise(ch
[1].irq
);
307 if (ch
[2].status
| ch
[8].status
)
308 qemu_irq_raise(ch
[2].irq
);
310 qemu_irq_raise(ch
[3].irq
);
312 qemu_irq_raise(ch
[4].irq
);
314 qemu_irq_raise(ch
[5].irq
);
317 static void omap_dma_interrupts_3_2_update(struct omap_dma_s
*s
)
319 struct omap_dma_channel_s
*ch
= s
->ch
;
322 for (i
= s
->chans
; i
; ch
++, i
--)
324 qemu_irq_raise(ch
->irq
);
327 static void omap_dma_enable_3_1_mapping(struct omap_dma_s
*s
)
329 s
->omap_3_1_mapping_disabled
= 0;
331 s
->intr_update
= omap_dma_interrupts_3_1_update
;
334 static void omap_dma_disable_3_1_mapping(struct omap_dma_s
*s
)
336 s
->omap_3_1_mapping_disabled
= 1;
338 s
->intr_update
= omap_dma_interrupts_3_2_update
;
341 static void omap_dma_process_request(struct omap_dma_s
*s
, int request
)
345 struct omap_dma_channel_s
*ch
= s
->ch
;
347 for (channel
= 0; channel
< s
->chans
; channel
++, ch
++) {
348 if (ch
->enable
&& ch
->sync
== request
) {
350 omap_dma_activate_channel(s
, ch
);
351 else if (!ch
->pending_request
)
352 ch
->pending_request
= 1;
354 /* Request collision */
355 /* Second request received while processing other request */
356 ch
->status
|= EVENT_DROP_INTR
;
363 omap_dma_interrupts_update(s
);
366 static void omap_dma_transfer_generic(struct soc_dma_ch_s
*dma
)
369 struct omap_dma_channel_s
*ch
= dma
->opaque
;
370 struct omap_dma_reg_set_s
*a
= &ch
->active_set
;
371 int bytes
= dma
->bytes
;
373 uint16_t status
= ch
->status
;
377 /* Transfer a single element */
378 /* FIXME: check the endianness */
379 if (!ch
->constant_fill
)
380 cpu_physical_memory_read(a
->src
, value
, ch
->data_type
);
382 *(uint32_t *) value
= ch
->color
;
384 if (!ch
->transparent_copy
|| *(uint32_t *) value
!= ch
->color
)
385 cpu_physical_memory_write(a
->dest
, value
, ch
->data_type
);
387 a
->src
+= a
->elem_delta
[0];
388 a
->dest
+= a
->elem_delta
[1];
392 if (a
->element
== a
->elements
) {
395 a
->src
+= a
->frame_delta
[0];
396 a
->dest
+= a
->frame_delta
[1];
399 /* If the channel is async, update cpc */
401 ch
->cpc
= a
->dest
& 0xffff;
403 } while ((bytes
-= ch
->data_type
));
405 /* If the channel is element synchronized, deactivate it */
406 if (ch
->sync
&& !ch
->fs
&& !ch
->bs
)
407 omap_dma_deactivate_channel(s
, ch
);
409 /* If it is the last frame, set the LAST_FRAME interrupt */
410 if (a
->element
== 1 && a
->frame
== a
->frames
- 1)
411 if (ch
->interrupts
& LAST_FRAME_INTR
)
412 ch
->status
|= LAST_FRAME_INTR
;
414 /* If the half of the frame was reached, set the HALF_FRAME
416 if (a
->element
== (a
->elements
>> 1))
417 if (ch
->interrupts
& HALF_FRAME_INTR
)
418 ch
->status
|= HALF_FRAME_INTR
;
420 if (ch
->fs
&& ch
->bs
) {
422 /* Check if a full packet has beed transferred. */
423 if (a
->pck_element
== a
->pck_elements
) {
426 /* Set the END_PKT interrupt */
427 if ((ch
->interrupts
& END_PKT_INTR
) && !ch
->src_sync
)
428 ch
->status
|= END_PKT_INTR
;
430 /* If the channel is packet-synchronized, deactivate it */
432 omap_dma_deactivate_channel(s
, ch
);
436 if (a
->element
== a
->elements
) {
439 a
->src
+= a
->frame_delta
[0];
440 a
->dest
+= a
->frame_delta
[1];
443 /* If the channel is frame synchronized, deactivate it */
444 if (ch
->sync
&& ch
->fs
&& !ch
->bs
)
445 omap_dma_deactivate_channel(s
, ch
);
447 /* If the channel is async, update cpc */
449 ch
->cpc
= a
->dest
& 0xffff;
451 /* Set the END_FRAME interrupt */
452 if (ch
->interrupts
& END_FRAME_INTR
)
453 ch
->status
|= END_FRAME_INTR
;
455 if (a
->frame
== a
->frames
) {
457 /* Disable the channel */
459 if (ch
->omap_3_1_compatible_disable
) {
460 omap_dma_disable_channel(s
, ch
);
461 if (ch
->link_enabled
)
462 omap_dma_enable_channel(s
,
463 &s
->ch
[ch
->link_next_ch
]);
466 omap_dma_disable_channel(s
, ch
);
467 else if (ch
->repeat
|| ch
->end_prog
)
468 omap_dma_channel_load(ch
);
470 ch
->waiting_end_prog
= 1;
471 omap_dma_deactivate_channel(s
, ch
);
475 if (ch
->interrupts
& END_BLOCK_INTR
)
476 ch
->status
|= END_BLOCK_INTR
;
479 } while (status
== ch
->status
&& ch
->active
);
481 omap_dma_interrupts_update(s
);
486 omap_dma_intr_element_sync
,
487 omap_dma_intr_last_frame
,
488 omap_dma_intr_half_frame
,
490 omap_dma_intr_frame_sync
,
491 omap_dma_intr_packet
,
492 omap_dma_intr_packet_sync
,
494 __omap_dma_intr_last
,
497 static void omap_dma_transfer_setup(struct soc_dma_ch_s
*dma
)
499 struct omap_dma_port_if_s
*src_p
, *dest_p
;
500 struct omap_dma_reg_set_s
*a
;
501 struct omap_dma_channel_s
*ch
= dma
->opaque
;
502 struct omap_dma_s
*s
= dma
->dma
->opaque
;
503 int frames
, min_elems
, elements
[__omap_dma_intr_last
];
507 src_p
= &s
->mpu
->port
[ch
->port
[0]];
508 dest_p
= &s
->mpu
->port
[ch
->port
[1]];
509 if ((!ch
->constant_fill
&& !src_p
->addr_valid(s
->mpu
, a
->src
)) ||
510 (!dest_p
->addr_valid(s
->mpu
, a
->dest
))) {
513 if (ch
->interrupts
& TIMEOUT_INTR
)
514 ch
->status
|= TIMEOUT_INTR
;
515 omap_dma_deactivate_channel(s
, ch
);
518 printf("%s: Bus time-out in DMA%i operation\n",
519 __FUNCTION__
, dma
->num
);
524 /* Check all the conditions that terminate the transfer starting
525 * with those that can occur the soonest. */
526 #define INTR_CHECK(cond, id, nelements) \
528 elements[id] = nelements; \
529 if (elements[id] < min_elems) \
530 min_elems = elements[id]; \
532 elements[id] = INT_MAX;
536 ch
->sync
&& !ch
->fs
&& !ch
->bs
,
537 omap_dma_intr_element_sync
,
541 /* TODO: for transfers where entire frames can be read and written
542 * using memcpy() but a->frame_delta is non-zero, try to still do
543 * transfers using soc_dma but limit min_elems to a->elements - ...
544 * See also the TODO in omap_dma_channel_load. */
546 (ch
->interrupts
& LAST_FRAME_INTR
) &&
547 ((a
->frame
< a
->frames
- 1) || !a
->element
),
548 omap_dma_intr_last_frame
,
549 (a
->frames
- a
->frame
- 2) * a
->elements
+
550 (a
->elements
- a
->element
+ 1))
552 ch
->interrupts
& HALF_FRAME_INTR
,
553 omap_dma_intr_half_frame
,
555 (a
->element
>= (a
->elements
>> 1) ? a
->elements
: 0) -
558 ch
->sync
&& ch
->fs
&& (ch
->interrupts
& END_FRAME_INTR
),
560 a
->elements
- a
->element
)
562 ch
->sync
&& ch
->fs
&& !ch
->bs
,
563 omap_dma_intr_frame_sync
,
564 a
->elements
- a
->element
)
569 (ch
->interrupts
& END_PKT_INTR
) && !ch
->src_sync
,
570 omap_dma_intr_packet
,
571 a
->pck_elements
- a
->pck_element
)
573 ch
->fs
&& ch
->bs
&& ch
->sync
,
574 omap_dma_intr_packet_sync
,
575 a
->pck_elements
- a
->pck_element
)
581 (a
->frames
- a
->frame
- 1) * a
->elements
+
582 (a
->elements
- a
->element
))
584 dma
->bytes
= min_elems
* ch
->data_type
;
586 /* Set appropriate interrupts and/or deactivate channels */
589 /* TODO: should all of this only be done if dma->update, and otherwise
590 * inside omap_dma_transfer_generic below - check what's faster. */
594 /* If the channel is element synchronized, deactivate it */
595 if (min_elems
== elements
[omap_dma_intr_element_sync
])
596 omap_dma_deactivate_channel(s
, ch
);
598 /* If it is the last frame, set the LAST_FRAME interrupt */
599 if (min_elems
== elements
[omap_dma_intr_last_frame
])
600 ch
->status
|= LAST_FRAME_INTR
;
602 /* If exactly half of the frame was reached, set the HALF_FRAME
604 if (min_elems
== elements
[omap_dma_intr_half_frame
])
605 ch
->status
|= HALF_FRAME_INTR
;
607 /* If a full packet has been transferred, set the END_PKT interrupt */
608 if (min_elems
== elements
[omap_dma_intr_packet
])
609 ch
->status
|= END_PKT_INTR
;
611 /* If the channel is packet-synchronized, deactivate it */
612 if (min_elems
== elements
[omap_dma_intr_packet_sync
])
613 omap_dma_deactivate_channel(s
, ch
);
615 /* If the channel is frame synchronized, deactivate it */
616 if (min_elems
== elements
[omap_dma_intr_frame_sync
])
617 omap_dma_deactivate_channel(s
, ch
);
619 /* Set the END_FRAME interrupt */
620 if (min_elems
== elements
[omap_dma_intr_frame
])
621 ch
->status
|= END_FRAME_INTR
;
623 if (min_elems
== elements
[omap_dma_intr_block
]) {
625 /* Disable the channel */
627 if (ch
->omap_3_1_compatible_disable
) {
628 omap_dma_disable_channel(s
, ch
);
629 if (ch
->link_enabled
)
630 omap_dma_enable_channel(s
, &s
->ch
[ch
->link_next_ch
]);
633 omap_dma_disable_channel(s
, ch
);
634 else if (ch
->repeat
|| ch
->end_prog
)
635 omap_dma_channel_load(ch
);
637 ch
->waiting_end_prog
= 1;
638 omap_dma_deactivate_channel(s
, ch
);
642 if (ch
->interrupts
& END_BLOCK_INTR
)
643 ch
->status
|= END_BLOCK_INTR
;
646 /* Update packet number */
647 if (ch
->fs
&& ch
->bs
) {
648 a
->pck_element
+= min_elems
;
649 a
->pck_element
%= a
->pck_elements
;
652 /* TODO: check if we really need to update anything here or perhaps we
653 * can skip part of this. */
657 a
->element
+= min_elems
;
659 frames
= a
->element
/ a
->elements
;
660 a
->element
= a
->element
% a
->elements
;
662 a
->src
+= min_elems
* a
->elem_delta
[0] + frames
* a
->frame_delta
[0];
663 a
->dest
+= min_elems
* a
->elem_delta
[1] + frames
* a
->frame_delta
[1];
665 /* If the channel is async, update cpc */
666 if (!ch
->sync
&& frames
)
667 ch
->cpc
= a
->dest
& 0xffff;
669 /* TODO: if the destination port is IMIF or EMIFF, set the dirty
677 omap_dma_interrupts_update(s
);
680 void omap_dma_reset(struct soc_dma_s
*dma
)
683 struct omap_dma_s
*s
= dma
->opaque
;
685 soc_dma_reset(s
->dma
);
686 if (s
->model
< omap_dma_4
)
691 memset(&s
->irqstat
, 0, sizeof(s
->irqstat
));
692 memset(&s
->irqen
, 0, sizeof(s
->irqen
));
693 s
->lcd_ch
.src
= emiff
;
694 s
->lcd_ch
.condition
= 0;
695 s
->lcd_ch
.interrupts
= 0;
697 if (s
->model
< omap_dma_4
)
698 omap_dma_enable_3_1_mapping(s
);
699 for (i
= 0; i
< s
->chans
; i
++) {
700 s
->ch
[i
].suspend
= 0;
701 s
->ch
[i
].prefetch
= 0;
702 s
->ch
[i
].buf_disable
= 0;
703 s
->ch
[i
].src_sync
= 0;
704 memset(&s
->ch
[i
].burst
, 0, sizeof(s
->ch
[i
].burst
));
705 memset(&s
->ch
[i
].port
, 0, sizeof(s
->ch
[i
].port
));
706 memset(&s
->ch
[i
].mode
, 0, sizeof(s
->ch
[i
].mode
));
707 memset(&s
->ch
[i
].frame_index
, 0, sizeof(s
->ch
[i
].frame_index
));
708 memset(&s
->ch
[i
].element_index
, 0, sizeof(s
->ch
[i
].element_index
));
709 memset(&s
->ch
[i
].endian
, 0, sizeof(s
->ch
[i
].endian
));
710 memset(&s
->ch
[i
].endian_lock
, 0, sizeof(s
->ch
[i
].endian_lock
));
711 memset(&s
->ch
[i
].translate
, 0, sizeof(s
->ch
[i
].translate
));
712 s
->ch
[i
].write_mode
= 0;
713 s
->ch
[i
].data_type
= 0;
714 s
->ch
[i
].transparent_copy
= 0;
715 s
->ch
[i
].constant_fill
= 0;
716 s
->ch
[i
].color
= 0x00000000;
717 s
->ch
[i
].end_prog
= 0;
719 s
->ch
[i
].auto_init
= 0;
720 s
->ch
[i
].link_enabled
= 0;
721 if (s
->model
< omap_dma_4
)
722 s
->ch
[i
].interrupts
= 0x0003;
724 s
->ch
[i
].interrupts
= 0x0000;
726 s
->ch
[i
].cstatus
= 0;
730 s
->ch
[i
].pending_request
= 0;
731 s
->ch
[i
].waiting_end_prog
= 0;
732 s
->ch
[i
].cpc
= 0x0000;
735 s
->ch
[i
].omap_3_1_compatible_disable
= 0;
736 memset(&s
->ch
[i
].active_set
, 0, sizeof(s
->ch
[i
].active_set
));
737 s
->ch
[i
].priority
= 0;
738 s
->ch
[i
].interleave_disabled
= 0;
743 static int omap_dma_ch_reg_read(struct omap_dma_s
*s
,
744 struct omap_dma_channel_s
*ch
, int reg
, uint16_t *value
)
747 case 0x00: /* SYS_DMA_CSDP_CH0 */
748 *value
= (ch
->burst
[1] << 14) |
749 (ch
->pack
[1] << 13) |
751 (ch
->burst
[0] << 7) |
754 (ch
->data_type
>> 1);
757 case 0x02: /* SYS_DMA_CCR_CH0 */
758 if (s
->model
<= omap_dma_3_1
)
759 *value
= 0 << 10; /* FIFO_FLUSH reads as 0 */
761 *value
= ch
->omap_3_1_compatible_disable
<< 10;
762 *value
|= (ch
->mode
[1] << 14) |
763 (ch
->mode
[0] << 12) |
764 (ch
->end_prog
<< 11) |
766 (ch
->auto_init
<< 8) |
768 (ch
->priority
<< 6) |
769 (ch
->fs
<< 5) | ch
->sync
;
772 case 0x04: /* SYS_DMA_CICR_CH0 */
773 *value
= ch
->interrupts
;
776 case 0x06: /* SYS_DMA_CSR_CH0 */
779 if (!ch
->omap_3_1_compatible_disable
&& ch
->sibling
) {
780 *value
|= (ch
->sibling
->status
& 0x3f) << 6;
781 ch
->sibling
->status
&= SYNC
;
783 qemu_irq_lower(ch
->irq
);
786 case 0x08: /* SYS_DMA_CSSA_L_CH0 */
787 *value
= ch
->addr
[0] & 0x0000ffff;
790 case 0x0a: /* SYS_DMA_CSSA_U_CH0 */
791 *value
= ch
->addr
[0] >> 16;
794 case 0x0c: /* SYS_DMA_CDSA_L_CH0 */
795 *value
= ch
->addr
[1] & 0x0000ffff;
798 case 0x0e: /* SYS_DMA_CDSA_U_CH0 */
799 *value
= ch
->addr
[1] >> 16;
802 case 0x10: /* SYS_DMA_CEN_CH0 */
803 *value
= ch
->elements
;
806 case 0x12: /* SYS_DMA_CFN_CH0 */
810 case 0x14: /* SYS_DMA_CFI_CH0 */
811 *value
= ch
->frame_index
[0];
814 case 0x16: /* SYS_DMA_CEI_CH0 */
815 *value
= ch
->element_index
[0];
818 case 0x18: /* SYS_DMA_CPC_CH0 or DMA_CSAC */
819 if (ch
->omap_3_1_compatible_disable
)
820 *value
= ch
->active_set
.src
& 0xffff; /* CSAC */
825 case 0x1a: /* DMA_CDAC */
826 *value
= ch
->active_set
.dest
& 0xffff; /* CDAC */
829 case 0x1c: /* DMA_CDEI */
830 *value
= ch
->element_index
[1];
833 case 0x1e: /* DMA_CDFI */
834 *value
= ch
->frame_index
[1];
837 case 0x20: /* DMA_COLOR_L */
838 *value
= ch
->color
& 0xffff;
841 case 0x22: /* DMA_COLOR_U */
842 *value
= ch
->color
>> 16;
845 case 0x24: /* DMA_CCR2 */
846 *value
= (ch
->bs
<< 2) |
847 (ch
->transparent_copy
<< 1) |
851 case 0x28: /* DMA_CLNK_CTRL */
852 *value
= (ch
->link_enabled
<< 15) |
853 (ch
->link_next_ch
& 0xf);
856 case 0x2a: /* DMA_LCH_CTRL */
857 *value
= (ch
->interleave_disabled
<< 15) |
867 static int omap_dma_ch_reg_write(struct omap_dma_s
*s
,
868 struct omap_dma_channel_s
*ch
, int reg
, uint16_t value
)
871 case 0x00: /* SYS_DMA_CSDP_CH0 */
872 ch
->burst
[1] = (value
& 0xc000) >> 14;
873 ch
->pack
[1] = (value
& 0x2000) >> 13;
874 ch
->port
[1] = (enum omap_dma_port
) ((value
& 0x1e00) >> 9);
875 ch
->burst
[0] = (value
& 0x0180) >> 7;
876 ch
->pack
[0] = (value
& 0x0040) >> 6;
877 ch
->port
[0] = (enum omap_dma_port
) ((value
& 0x003c) >> 2);
878 ch
->data_type
= 1 << (value
& 3);
879 if (ch
->port
[0] >= __omap_dma_port_last
)
880 printf("%s: invalid DMA port %i\n", __FUNCTION__
,
882 if (ch
->port
[1] >= __omap_dma_port_last
)
883 printf("%s: invalid DMA port %i\n", __FUNCTION__
,
885 if ((value
& 3) == 3)
886 printf("%s: bad data_type for DMA channel\n", __FUNCTION__
);
889 case 0x02: /* SYS_DMA_CCR_CH0 */
890 ch
->mode
[1] = (omap_dma_addressing_t
) ((value
& 0xc000) >> 14);
891 ch
->mode
[0] = (omap_dma_addressing_t
) ((value
& 0x3000) >> 12);
892 ch
->end_prog
= (value
& 0x0800) >> 11;
893 if (s
->model
>= omap_dma_3_2
)
894 ch
->omap_3_1_compatible_disable
= (value
>> 10) & 0x1;
895 ch
->repeat
= (value
& 0x0200) >> 9;
896 ch
->auto_init
= (value
& 0x0100) >> 8;
897 ch
->priority
= (value
& 0x0040) >> 6;
898 ch
->fs
= (value
& 0x0020) >> 5;
899 ch
->sync
= value
& 0x001f;
902 omap_dma_enable_channel(s
, ch
);
904 omap_dma_disable_channel(s
, ch
);
907 omap_dma_channel_end_prog(s
, ch
);
911 case 0x04: /* SYS_DMA_CICR_CH0 */
912 ch
->interrupts
= value
& 0x3f;
915 case 0x06: /* SYS_DMA_CSR_CH0 */
916 OMAP_RO_REG((target_phys_addr_t
) reg
);
919 case 0x08: /* SYS_DMA_CSSA_L_CH0 */
920 ch
->addr
[0] &= 0xffff0000;
921 ch
->addr
[0] |= value
;
924 case 0x0a: /* SYS_DMA_CSSA_U_CH0 */
925 ch
->addr
[0] &= 0x0000ffff;
926 ch
->addr
[0] |= (uint32_t) value
<< 16;
929 case 0x0c: /* SYS_DMA_CDSA_L_CH0 */
930 ch
->addr
[1] &= 0xffff0000;
931 ch
->addr
[1] |= value
;
934 case 0x0e: /* SYS_DMA_CDSA_U_CH0 */
935 ch
->addr
[1] &= 0x0000ffff;
936 ch
->addr
[1] |= (uint32_t) value
<< 16;
939 case 0x10: /* SYS_DMA_CEN_CH0 */
940 ch
->elements
= value
;
943 case 0x12: /* SYS_DMA_CFN_CH0 */
947 case 0x14: /* SYS_DMA_CFI_CH0 */
948 ch
->frame_index
[0] = (int16_t) value
;
951 case 0x16: /* SYS_DMA_CEI_CH0 */
952 ch
->element_index
[0] = (int16_t) value
;
955 case 0x18: /* SYS_DMA_CPC_CH0 or DMA_CSAC */
956 OMAP_RO_REG((target_phys_addr_t
) reg
);
959 case 0x1c: /* DMA_CDEI */
960 ch
->element_index
[1] = (int16_t) value
;
963 case 0x1e: /* DMA_CDFI */
964 ch
->frame_index
[1] = (int16_t) value
;
967 case 0x20: /* DMA_COLOR_L */
968 ch
->color
&= 0xffff0000;
972 case 0x22: /* DMA_COLOR_U */
974 ch
->color
|= value
<< 16;
977 case 0x24: /* DMA_CCR2 */
978 ch
->bs
= (value
>> 2) & 0x1;
979 ch
->transparent_copy
= (value
>> 1) & 0x1;
980 ch
->constant_fill
= value
& 0x1;
983 case 0x28: /* DMA_CLNK_CTRL */
984 ch
->link_enabled
= (value
>> 15) & 0x1;
985 if (value
& (1 << 14)) { /* Stop_Lnk */
986 ch
->link_enabled
= 0;
987 omap_dma_disable_channel(s
, ch
);
989 ch
->link_next_ch
= value
& 0x1f;
992 case 0x2a: /* DMA_LCH_CTRL */
993 ch
->interleave_disabled
= (value
>> 15) & 0x1;
994 ch
->type
= value
& 0xf;
1003 static int omap_dma_3_2_lcd_write(struct omap_dma_lcd_channel_s
*s
, int offset
,
1007 case 0xbc0: /* DMA_LCD_CSDP */
1008 s
->brust_f2
= (value
>> 14) & 0x3;
1009 s
->pack_f2
= (value
>> 13) & 0x1;
1010 s
->data_type_f2
= (1 << ((value
>> 11) & 0x3));
1011 s
->brust_f1
= (value
>> 7) & 0x3;
1012 s
->pack_f1
= (value
>> 6) & 0x1;
1013 s
->data_type_f1
= (1 << ((value
>> 0) & 0x3));
1016 case 0xbc2: /* DMA_LCD_CCR */
1017 s
->mode_f2
= (value
>> 14) & 0x3;
1018 s
->mode_f1
= (value
>> 12) & 0x3;
1019 s
->end_prog
= (value
>> 11) & 0x1;
1020 s
->omap_3_1_compatible_disable
= (value
>> 10) & 0x1;
1021 s
->repeat
= (value
>> 9) & 0x1;
1022 s
->auto_init
= (value
>> 8) & 0x1;
1023 s
->running
= (value
>> 7) & 0x1;
1024 s
->priority
= (value
>> 6) & 0x1;
1025 s
->bs
= (value
>> 4) & 0x1;
1028 case 0xbc4: /* DMA_LCD_CTRL */
1029 s
->dst
= (value
>> 8) & 0x1;
1030 s
->src
= ((value
>> 6) & 0x3) << 1;
1032 /* Assume no bus errors and thus no BUS_ERROR irq bits. */
1033 s
->interrupts
= (value
>> 1) & 1;
1034 s
->dual
= value
& 1;
1037 case 0xbc8: /* TOP_B1_L */
1038 s
->src_f1_top
&= 0xffff0000;
1039 s
->src_f1_top
|= 0x0000ffff & value
;
1042 case 0xbca: /* TOP_B1_U */
1043 s
->src_f1_top
&= 0x0000ffff;
1044 s
->src_f1_top
|= value
<< 16;
1047 case 0xbcc: /* BOT_B1_L */
1048 s
->src_f1_bottom
&= 0xffff0000;
1049 s
->src_f1_bottom
|= 0x0000ffff & value
;
1052 case 0xbce: /* BOT_B1_U */
1053 s
->src_f1_bottom
&= 0x0000ffff;
1054 s
->src_f1_bottom
|= (uint32_t) value
<< 16;
1057 case 0xbd0: /* TOP_B2_L */
1058 s
->src_f2_top
&= 0xffff0000;
1059 s
->src_f2_top
|= 0x0000ffff & value
;
1062 case 0xbd2: /* TOP_B2_U */
1063 s
->src_f2_top
&= 0x0000ffff;
1064 s
->src_f2_top
|= (uint32_t) value
<< 16;
1067 case 0xbd4: /* BOT_B2_L */
1068 s
->src_f2_bottom
&= 0xffff0000;
1069 s
->src_f2_bottom
|= 0x0000ffff & value
;
1072 case 0xbd6: /* BOT_B2_U */
1073 s
->src_f2_bottom
&= 0x0000ffff;
1074 s
->src_f2_bottom
|= (uint32_t) value
<< 16;
1077 case 0xbd8: /* DMA_LCD_SRC_EI_B1 */
1078 s
->element_index_f1
= value
;
1081 case 0xbda: /* DMA_LCD_SRC_FI_B1_L */
1082 s
->frame_index_f1
&= 0xffff0000;
1083 s
->frame_index_f1
|= 0x0000ffff & value
;
1086 case 0xbf4: /* DMA_LCD_SRC_FI_B1_U */
1087 s
->frame_index_f1
&= 0x0000ffff;
1088 s
->frame_index_f1
|= (uint32_t) value
<< 16;
1091 case 0xbdc: /* DMA_LCD_SRC_EI_B2 */
1092 s
->element_index_f2
= value
;
1095 case 0xbde: /* DMA_LCD_SRC_FI_B2_L */
1096 s
->frame_index_f2
&= 0xffff0000;
1097 s
->frame_index_f2
|= 0x0000ffff & value
;
1100 case 0xbf6: /* DMA_LCD_SRC_FI_B2_U */
1101 s
->frame_index_f2
&= 0x0000ffff;
1102 s
->frame_index_f2
|= (uint32_t) value
<< 16;
1105 case 0xbe0: /* DMA_LCD_SRC_EN_B1 */
1106 s
->elements_f1
= value
;
1109 case 0xbe4: /* DMA_LCD_SRC_FN_B1 */
1110 s
->frames_f1
= value
;
1113 case 0xbe2: /* DMA_LCD_SRC_EN_B2 */
1114 s
->elements_f2
= value
;
1117 case 0xbe6: /* DMA_LCD_SRC_FN_B2 */
1118 s
->frames_f2
= value
;
1121 case 0xbea: /* DMA_LCD_LCH_CTRL */
1122 s
->lch_type
= value
& 0xf;
1131 static int omap_dma_3_2_lcd_read(struct omap_dma_lcd_channel_s
*s
, int offset
,
1135 case 0xbc0: /* DMA_LCD_CSDP */
1136 *ret
= (s
->brust_f2
<< 14) |
1137 (s
->pack_f2
<< 13) |
1138 ((s
->data_type_f2
>> 1) << 11) |
1139 (s
->brust_f1
<< 7) |
1141 ((s
->data_type_f1
>> 1) << 0);
1144 case 0xbc2: /* DMA_LCD_CCR */
1145 *ret
= (s
->mode_f2
<< 14) |
1146 (s
->mode_f1
<< 12) |
1147 (s
->end_prog
<< 11) |
1148 (s
->omap_3_1_compatible_disable
<< 10) |
1150 (s
->auto_init
<< 8) |
1152 (s
->priority
<< 6) |
1156 case 0xbc4: /* DMA_LCD_CTRL */
1157 qemu_irq_lower(s
->irq
);
1158 *ret
= (s
->dst
<< 8) |
1159 ((s
->src
& 0x6) << 5) |
1160 (s
->condition
<< 3) |
1161 (s
->interrupts
<< 1) |
1165 case 0xbc8: /* TOP_B1_L */
1166 *ret
= s
->src_f1_top
& 0xffff;
1169 case 0xbca: /* TOP_B1_U */
1170 *ret
= s
->src_f1_top
>> 16;
1173 case 0xbcc: /* BOT_B1_L */
1174 *ret
= s
->src_f1_bottom
& 0xffff;
1177 case 0xbce: /* BOT_B1_U */
1178 *ret
= s
->src_f1_bottom
>> 16;
1181 case 0xbd0: /* TOP_B2_L */
1182 *ret
= s
->src_f2_top
& 0xffff;
1185 case 0xbd2: /* TOP_B2_U */
1186 *ret
= s
->src_f2_top
>> 16;
1189 case 0xbd4: /* BOT_B2_L */
1190 *ret
= s
->src_f2_bottom
& 0xffff;
1193 case 0xbd6: /* BOT_B2_U */
1194 *ret
= s
->src_f2_bottom
>> 16;
1197 case 0xbd8: /* DMA_LCD_SRC_EI_B1 */
1198 *ret
= s
->element_index_f1
;
1201 case 0xbda: /* DMA_LCD_SRC_FI_B1_L */
1202 *ret
= s
->frame_index_f1
& 0xffff;
1205 case 0xbf4: /* DMA_LCD_SRC_FI_B1_U */
1206 *ret
= s
->frame_index_f1
>> 16;
1209 case 0xbdc: /* DMA_LCD_SRC_EI_B2 */
1210 *ret
= s
->element_index_f2
;
1213 case 0xbde: /* DMA_LCD_SRC_FI_B2_L */
1214 *ret
= s
->frame_index_f2
& 0xffff;
1217 case 0xbf6: /* DMA_LCD_SRC_FI_B2_U */
1218 *ret
= s
->frame_index_f2
>> 16;
1221 case 0xbe0: /* DMA_LCD_SRC_EN_B1 */
1222 *ret
= s
->elements_f1
;
1225 case 0xbe4: /* DMA_LCD_SRC_FN_B1 */
1226 *ret
= s
->frames_f1
;
1229 case 0xbe2: /* DMA_LCD_SRC_EN_B2 */
1230 *ret
= s
->elements_f2
;
1233 case 0xbe6: /* DMA_LCD_SRC_FN_B2 */
1234 *ret
= s
->frames_f2
;
1237 case 0xbea: /* DMA_LCD_LCH_CTRL */
1247 static int omap_dma_3_1_lcd_write(struct omap_dma_lcd_channel_s
*s
, int offset
,
1251 case 0x300: /* SYS_DMA_LCD_CTRL */
1252 s
->src
= (value
& 0x40) ? imif
: emiff
;
1254 /* Assume no bus errors and thus no BUS_ERROR irq bits. */
1255 s
->interrupts
= (value
>> 1) & 1;
1256 s
->dual
= value
& 1;
1259 case 0x302: /* SYS_DMA_LCD_TOP_F1_L */
1260 s
->src_f1_top
&= 0xffff0000;
1261 s
->src_f1_top
|= 0x0000ffff & value
;
1264 case 0x304: /* SYS_DMA_LCD_TOP_F1_U */
1265 s
->src_f1_top
&= 0x0000ffff;
1266 s
->src_f1_top
|= value
<< 16;
1269 case 0x306: /* SYS_DMA_LCD_BOT_F1_L */
1270 s
->src_f1_bottom
&= 0xffff0000;
1271 s
->src_f1_bottom
|= 0x0000ffff & value
;
1274 case 0x308: /* SYS_DMA_LCD_BOT_F1_U */
1275 s
->src_f1_bottom
&= 0x0000ffff;
1276 s
->src_f1_bottom
|= value
<< 16;
1279 case 0x30a: /* SYS_DMA_LCD_TOP_F2_L */
1280 s
->src_f2_top
&= 0xffff0000;
1281 s
->src_f2_top
|= 0x0000ffff & value
;
1284 case 0x30c: /* SYS_DMA_LCD_TOP_F2_U */
1285 s
->src_f2_top
&= 0x0000ffff;
1286 s
->src_f2_top
|= value
<< 16;
1289 case 0x30e: /* SYS_DMA_LCD_BOT_F2_L */
1290 s
->src_f2_bottom
&= 0xffff0000;
1291 s
->src_f2_bottom
|= 0x0000ffff & value
;
1294 case 0x310: /* SYS_DMA_LCD_BOT_F2_U */
1295 s
->src_f2_bottom
&= 0x0000ffff;
1296 s
->src_f2_bottom
|= value
<< 16;
1305 static int omap_dma_3_1_lcd_read(struct omap_dma_lcd_channel_s
*s
, int offset
,
1311 case 0x300: /* SYS_DMA_LCD_CTRL */
1314 qemu_irq_lower(s
->irq
);
1315 *ret
= ((s
->src
== imif
) << 6) | (i
<< 3) |
1316 (s
->interrupts
<< 1) | s
->dual
;
1319 case 0x302: /* SYS_DMA_LCD_TOP_F1_L */
1320 *ret
= s
->src_f1_top
& 0xffff;
1323 case 0x304: /* SYS_DMA_LCD_TOP_F1_U */
1324 *ret
= s
->src_f1_top
>> 16;
1327 case 0x306: /* SYS_DMA_LCD_BOT_F1_L */
1328 *ret
= s
->src_f1_bottom
& 0xffff;
1331 case 0x308: /* SYS_DMA_LCD_BOT_F1_U */
1332 *ret
= s
->src_f1_bottom
>> 16;
1335 case 0x30a: /* SYS_DMA_LCD_TOP_F2_L */
1336 *ret
= s
->src_f2_top
& 0xffff;
1339 case 0x30c: /* SYS_DMA_LCD_TOP_F2_U */
1340 *ret
= s
->src_f2_top
>> 16;
1343 case 0x30e: /* SYS_DMA_LCD_BOT_F2_L */
1344 *ret
= s
->src_f2_bottom
& 0xffff;
1347 case 0x310: /* SYS_DMA_LCD_BOT_F2_U */
1348 *ret
= s
->src_f2_bottom
>> 16;
1357 static int omap_dma_sys_write(struct omap_dma_s
*s
, int offset
, uint16_t value
)
1360 case 0x400: /* SYS_DMA_GCR */
1364 case 0x404: /* DMA_GSCR */
1366 omap_dma_disable_3_1_mapping(s
);
1368 omap_dma_enable_3_1_mapping(s
);
1371 case 0x408: /* DMA_GRST */
1373 omap_dma_reset(s
->dma
);
1382 static int omap_dma_sys_read(struct omap_dma_s
*s
, int offset
,
1386 case 0x400: /* SYS_DMA_GCR */
1390 case 0x404: /* DMA_GSCR */
1391 *ret
= s
->omap_3_1_mapping_disabled
<< 3;
1394 case 0x408: /* DMA_GRST */
1398 case 0x442: /* DMA_HW_ID */
1399 case 0x444: /* DMA_PCh2_ID */
1400 case 0x446: /* DMA_PCh0_ID */
1401 case 0x448: /* DMA_PCh1_ID */
1402 case 0x44a: /* DMA_PChG_ID */
1403 case 0x44c: /* DMA_PChD_ID */
1407 case 0x44e: /* DMA_CAPS_0_U */
1408 *ret
= (s
->caps
[0] >> 16) & 0xffff;
1410 case 0x450: /* DMA_CAPS_0_L */
1411 *ret
= (s
->caps
[0] >> 0) & 0xffff;
1414 case 0x452: /* DMA_CAPS_1_U */
1415 *ret
= (s
->caps
[1] >> 16) & 0xffff;
1417 case 0x454: /* DMA_CAPS_1_L */
1418 *ret
= (s
->caps
[1] >> 0) & 0xffff;
1421 case 0x456: /* DMA_CAPS_2 */
1425 case 0x458: /* DMA_CAPS_3 */
1429 case 0x45a: /* DMA_CAPS_4 */
1433 case 0x460: /* DMA_PCh2_SR */
1434 case 0x480: /* DMA_PCh0_SR */
1435 case 0x482: /* DMA_PCh1_SR */
1436 case 0x4c0: /* DMA_PChD_SR_0 */
1437 printf("%s: Physical Channel Status Registers not implemented.\n",
1448 static uint32_t omap_dma_read(void *opaque
, target_phys_addr_t addr
)
1450 struct omap_dma_s
*s
= (struct omap_dma_s
*) opaque
;
1455 case 0x300 ... 0x3fe:
1456 if (s
->model
<= omap_dma_3_1
|| !s
->omap_3_1_mapping_disabled
) {
1457 if (omap_dma_3_1_lcd_read(&s
->lcd_ch
, addr
, &ret
))
1462 case 0x000 ... 0x2fe:
1464 ch
= (addr
>> 6) & 0x0f;
1465 if (omap_dma_ch_reg_read(s
, &s
->ch
[ch
], reg
, &ret
))
1469 case 0x404 ... 0x4fe:
1470 if (s
->model
<= omap_dma_3_1
)
1474 if (omap_dma_sys_read(s
, addr
, &ret
))
1478 case 0xb00 ... 0xbfe:
1479 if (s
->model
== omap_dma_3_2
&& s
->omap_3_1_mapping_disabled
) {
1480 if (omap_dma_3_2_lcd_read(&s
->lcd_ch
, addr
, &ret
))
1491 static void omap_dma_write(void *opaque
, target_phys_addr_t addr
,
1494 struct omap_dma_s
*s
= (struct omap_dma_s
*) opaque
;
1498 case 0x300 ... 0x3fe:
1499 if (s
->model
<= omap_dma_3_1
|| !s
->omap_3_1_mapping_disabled
) {
1500 if (omap_dma_3_1_lcd_write(&s
->lcd_ch
, addr
, value
))
1505 case 0x000 ... 0x2fe:
1507 ch
= (addr
>> 6) & 0x0f;
1508 if (omap_dma_ch_reg_write(s
, &s
->ch
[ch
], reg
, value
))
1512 case 0x404 ... 0x4fe:
1513 if (s
->model
<= omap_dma_3_1
)
1517 if (omap_dma_sys_write(s
, addr
, value
))
1521 case 0xb00 ... 0xbfe:
1522 if (s
->model
== omap_dma_3_2
&& s
->omap_3_1_mapping_disabled
) {
1523 if (omap_dma_3_2_lcd_write(&s
->lcd_ch
, addr
, value
))
1533 static CPUReadMemoryFunc
* const omap_dma_readfn
[] = {
1534 omap_badwidth_read16
,
1536 omap_badwidth_read16
,
1539 static CPUWriteMemoryFunc
* const omap_dma_writefn
[] = {
1540 omap_badwidth_write16
,
1542 omap_badwidth_write16
,
1545 static void omap_dma_request(void *opaque
, int drq
, int req
)
1547 struct omap_dma_s
*s
= (struct omap_dma_s
*) opaque
;
1548 /* The request pins are level triggered in QEMU. */
1550 if (~s
->dma
->drqbmp
& (1 << drq
)) {
1551 s
->dma
->drqbmp
|= 1 << drq
;
1552 omap_dma_process_request(s
, drq
);
1555 s
->dma
->drqbmp
&= ~(1 << drq
);
1558 /* XXX: this won't be needed once soc_dma knows about clocks. */
1559 static void omap_dma_clk_update(void *opaque
, int line
, int on
)
1561 struct omap_dma_s
*s
= (struct omap_dma_s
*) opaque
;
1564 s
->dma
->freq
= omap_clk_getrate(s
->clk
);
1566 for (i
= 0; i
< s
->chans
; i
++)
1567 if (s
->ch
[i
].active
)
1568 soc_dma_set_request(s
->ch
[i
].dma
, on
);
1571 static void omap_dma_setcaps(struct omap_dma_s
*s
)
1579 /* XXX Only available for sDMA */
1581 (1 << 19) | /* Constant Fill Capability */
1582 (1 << 18); /* Transparent BLT Capability */
1584 (1 << 1); /* 1-bit palettized capability (DMA 3.2 only) */
1586 (1 << 8) | /* SEPARATE_SRC_AND_DST_INDEX_CPBLTY */
1587 (1 << 7) | /* DST_DOUBLE_INDEX_ADRS_CPBLTY */
1588 (1 << 6) | /* DST_SINGLE_INDEX_ADRS_CPBLTY */
1589 (1 << 5) | /* DST_POST_INCRMNT_ADRS_CPBLTY */
1590 (1 << 4) | /* DST_CONST_ADRS_CPBLTY */
1591 (1 << 3) | /* SRC_DOUBLE_INDEX_ADRS_CPBLTY */
1592 (1 << 2) | /* SRC_SINGLE_INDEX_ADRS_CPBLTY */
1593 (1 << 1) | /* SRC_POST_INCRMNT_ADRS_CPBLTY */
1594 (1 << 0); /* SRC_CONST_ADRS_CPBLTY */
1596 (1 << 6) | /* BLOCK_SYNCHR_CPBLTY (DMA 4 only) */
1597 (1 << 7) | /* PKT_SYNCHR_CPBLTY (DMA 4 only) */
1598 (1 << 5) | /* CHANNEL_CHAINING_CPBLTY */
1599 (1 << 4) | /* LCh_INTERLEAVE_CPBLTY */
1600 (1 << 3) | /* AUTOINIT_REPEAT_CPBLTY (DMA 3.2 only) */
1601 (1 << 2) | /* AUTOINIT_ENDPROG_CPBLTY (DMA 3.2 only) */
1602 (1 << 1) | /* FRAME_SYNCHR_CPBLTY */
1603 (1 << 0); /* ELMNT_SYNCHR_CPBLTY */
1605 (1 << 7) | /* PKT_INTERRUPT_CPBLTY (DMA 4 only) */
1606 (1 << 6) | /* SYNC_STATUS_CPBLTY */
1607 (1 << 5) | /* BLOCK_INTERRUPT_CPBLTY */
1608 (1 << 4) | /* LAST_FRAME_INTERRUPT_CPBLTY */
1609 (1 << 3) | /* FRAME_INTERRUPT_CPBLTY */
1610 (1 << 2) | /* HALF_FRAME_INTERRUPT_CPBLTY */
1611 (1 << 1) | /* EVENT_DROP_INTERRUPT_CPBLTY */
1612 (1 << 0); /* TIMEOUT_INTERRUPT_CPBLTY (DMA 3.2 only) */
1617 struct soc_dma_s
*omap_dma_init(target_phys_addr_t base
, qemu_irq
*irqs
,
1618 qemu_irq lcd_irq
, struct omap_mpu_state_s
*mpu
, omap_clk clk
,
1619 enum omap_dma_model model
)
1621 int iomemtype
, num_irqs
, memsize
, i
;
1622 struct omap_dma_s
*s
= (struct omap_dma_s
*)
1623 qemu_mallocz(sizeof(struct omap_dma_s
));
1625 if (model
<= omap_dma_3_1
) {
1635 s
->lcd_ch
.irq
= lcd_irq
;
1636 s
->lcd_ch
.mpu
= mpu
;
1638 s
->dma
= soc_dma_init((model
<= omap_dma_3_1
) ? 9 : 16);
1639 s
->dma
->freq
= omap_clk_getrate(clk
);
1640 s
->dma
->transfer_fn
= omap_dma_transfer_generic
;
1641 s
->dma
->setup_fn
= omap_dma_transfer_setup
;
1642 s
->dma
->drq
= qemu_allocate_irqs(omap_dma_request
, s
, 32);
1646 s
->ch
[num_irqs
].irq
= irqs
[num_irqs
];
1647 for (i
= 0; i
< 3; i
++) {
1648 s
->ch
[i
].sibling
= &s
->ch
[i
+ 6];
1649 s
->ch
[i
+ 6].sibling
= &s
->ch
[i
];
1651 for (i
= (model
<= omap_dma_3_1
) ? 8 : 15; i
>= 0; i
--) {
1652 s
->ch
[i
].dma
= &s
->dma
->ch
[i
];
1653 s
->dma
->ch
[i
].opaque
= &s
->ch
[i
];
1656 omap_dma_setcaps(s
);
1657 omap_clk_adduser(s
->clk
, qemu_allocate_irqs(omap_dma_clk_update
, s
, 1)[0]);
1658 omap_dma_reset(s
->dma
);
1659 omap_dma_clk_update(s
, 0, 1);
1661 iomemtype
= cpu_register_io_memory(omap_dma_readfn
,
1662 omap_dma_writefn
, s
, DEVICE_NATIVE_ENDIAN
);
1663 cpu_register_physical_memory(base
, memsize
, iomemtype
);
1665 mpu
->drq
= s
->dma
->drq
;
1670 static void omap_dma_interrupts_4_update(struct omap_dma_s
*s
)
1672 struct omap_dma_channel_s
*ch
= s
->ch
;
1675 for (bmp
= 0, bit
= 1; bit
; ch
++, bit
<<= 1)
1678 ch
->cstatus
|= ch
->status
;
1681 if ((s
->irqstat
[0] |= s
->irqen
[0] & bmp
))
1682 qemu_irq_raise(s
->irq
[0]);
1683 if ((s
->irqstat
[1] |= s
->irqen
[1] & bmp
))
1684 qemu_irq_raise(s
->irq
[1]);
1685 if ((s
->irqstat
[2] |= s
->irqen
[2] & bmp
))
1686 qemu_irq_raise(s
->irq
[2]);
1687 if ((s
->irqstat
[3] |= s
->irqen
[3] & bmp
))
1688 qemu_irq_raise(s
->irq
[3]);
1691 static uint32_t omap_dma4_read(void *opaque
, target_phys_addr_t addr
)
1693 struct omap_dma_s
*s
= (struct omap_dma_s
*) opaque
;
1694 int irqn
= 0, chnum
;
1695 struct omap_dma_channel_s
*ch
;
1698 case 0x00: /* DMA4_REVISION */
1701 case 0x14: /* DMA4_IRQSTATUS_L3 */
1703 case 0x10: /* DMA4_IRQSTATUS_L2 */
1705 case 0x0c: /* DMA4_IRQSTATUS_L1 */
1707 case 0x08: /* DMA4_IRQSTATUS_L0 */
1708 return s
->irqstat
[irqn
];
1710 case 0x24: /* DMA4_IRQENABLE_L3 */
1712 case 0x20: /* DMA4_IRQENABLE_L2 */
1714 case 0x1c: /* DMA4_IRQENABLE_L1 */
1716 case 0x18: /* DMA4_IRQENABLE_L0 */
1717 return s
->irqen
[irqn
];
1719 case 0x28: /* DMA4_SYSSTATUS */
1720 return 1; /* RESETDONE */
1722 case 0x2c: /* DMA4_OCP_SYSCONFIG */
1725 case 0x64: /* DMA4_CAPS_0 */
1727 case 0x6c: /* DMA4_CAPS_2 */
1729 case 0x70: /* DMA4_CAPS_3 */
1731 case 0x74: /* DMA4_CAPS_4 */
1734 case 0x78: /* DMA4_GCR */
1737 case 0x80 ... 0xfff:
1739 chnum
= addr
/ 0x60;
1741 addr
-= chnum
* 0x60;
1749 /* Per-channel registers */
1751 case 0x00: /* DMA4_CCR */
1752 return (ch
->buf_disable
<< 25) |
1753 (ch
->src_sync
<< 24) |
1754 (ch
->prefetch
<< 23) |
1755 ((ch
->sync
& 0x60) << 14) |
1757 (ch
->transparent_copy
<< 17) |
1758 (ch
->constant_fill
<< 16) |
1759 (ch
->mode
[1] << 14) |
1760 (ch
->mode
[0] << 12) |
1761 (0 << 10) | (0 << 9) |
1762 (ch
->suspend
<< 8) |
1764 (ch
->priority
<< 6) |
1765 (ch
->fs
<< 5) | (ch
->sync
& 0x1f);
1767 case 0x04: /* DMA4_CLNK_CTRL */
1768 return (ch
->link_enabled
<< 15) | ch
->link_next_ch
;
1770 case 0x08: /* DMA4_CICR */
1771 return ch
->interrupts
;
1773 case 0x0c: /* DMA4_CSR */
1776 case 0x10: /* DMA4_CSDP */
1777 return (ch
->endian
[0] << 21) |
1778 (ch
->endian_lock
[0] << 20) |
1779 (ch
->endian
[1] << 19) |
1780 (ch
->endian_lock
[1] << 18) |
1781 (ch
->write_mode
<< 16) |
1782 (ch
->burst
[1] << 14) |
1783 (ch
->pack
[1] << 13) |
1784 (ch
->translate
[1] << 9) |
1785 (ch
->burst
[0] << 7) |
1786 (ch
->pack
[0] << 6) |
1787 (ch
->translate
[0] << 2) |
1788 (ch
->data_type
>> 1);
1790 case 0x14: /* DMA4_CEN */
1791 return ch
->elements
;
1793 case 0x18: /* DMA4_CFN */
1796 case 0x1c: /* DMA4_CSSA */
1799 case 0x20: /* DMA4_CDSA */
1802 case 0x24: /* DMA4_CSEI */
1803 return ch
->element_index
[0];
1805 case 0x28: /* DMA4_CSFI */
1806 return ch
->frame_index
[0];
1808 case 0x2c: /* DMA4_CDEI */
1809 return ch
->element_index
[1];
1811 case 0x30: /* DMA4_CDFI */
1812 return ch
->frame_index
[1];
1814 case 0x34: /* DMA4_CSAC */
1815 return ch
->active_set
.src
& 0xffff;
1817 case 0x38: /* DMA4_CDAC */
1818 return ch
->active_set
.dest
& 0xffff;
1820 case 0x3c: /* DMA4_CCEN */
1821 return ch
->active_set
.element
;
1823 case 0x40: /* DMA4_CCFN */
1824 return ch
->active_set
.frame
;
1826 case 0x44: /* DMA4_COLOR */
1827 /* XXX only in sDMA */
1836 static void omap_dma4_write(void *opaque
, target_phys_addr_t addr
,
1839 struct omap_dma_s
*s
= (struct omap_dma_s
*) opaque
;
1840 int chnum
, irqn
= 0;
1841 struct omap_dma_channel_s
*ch
;
1844 case 0x14: /* DMA4_IRQSTATUS_L3 */
1846 case 0x10: /* DMA4_IRQSTATUS_L2 */
1848 case 0x0c: /* DMA4_IRQSTATUS_L1 */
1850 case 0x08: /* DMA4_IRQSTATUS_L0 */
1851 s
->irqstat
[irqn
] &= ~value
;
1852 if (!s
->irqstat
[irqn
])
1853 qemu_irq_lower(s
->irq
[irqn
]);
1856 case 0x24: /* DMA4_IRQENABLE_L3 */
1858 case 0x20: /* DMA4_IRQENABLE_L2 */
1860 case 0x1c: /* DMA4_IRQENABLE_L1 */
1862 case 0x18: /* DMA4_IRQENABLE_L0 */
1863 s
->irqen
[irqn
] = value
;
1866 case 0x2c: /* DMA4_OCP_SYSCONFIG */
1867 if (value
& 2) /* SOFTRESET */
1868 omap_dma_reset(s
->dma
);
1869 s
->ocp
= value
& 0x3321;
1870 if (((s
->ocp
>> 12) & 3) == 3) /* MIDLEMODE */
1871 fprintf(stderr
, "%s: invalid DMA power mode\n", __FUNCTION__
);
1874 case 0x78: /* DMA4_GCR */
1875 s
->gcr
= value
& 0x00ff00ff;
1876 if ((value
& 0xff) == 0x00) /* MAX_CHANNEL_FIFO_DEPTH */
1877 fprintf(stderr
, "%s: wrong FIFO depth in GCR\n", __FUNCTION__
);
1880 case 0x80 ... 0xfff:
1882 chnum
= addr
/ 0x60;
1884 addr
-= chnum
* 0x60;
1887 case 0x00: /* DMA4_REVISION */
1888 case 0x28: /* DMA4_SYSSTATUS */
1889 case 0x64: /* DMA4_CAPS_0 */
1890 case 0x6c: /* DMA4_CAPS_2 */
1891 case 0x70: /* DMA4_CAPS_3 */
1892 case 0x74: /* DMA4_CAPS_4 */
1901 /* Per-channel registers */
1903 case 0x00: /* DMA4_CCR */
1904 ch
->buf_disable
= (value
>> 25) & 1;
1905 ch
->src_sync
= (value
>> 24) & 1; /* XXX For CamDMA must be 1 */
1906 if (ch
->buf_disable
&& !ch
->src_sync
)
1907 fprintf(stderr
, "%s: Buffering disable is not allowed in "
1908 "destination synchronised mode\n", __FUNCTION__
);
1909 ch
->prefetch
= (value
>> 23) & 1;
1910 ch
->bs
= (value
>> 18) & 1;
1911 ch
->transparent_copy
= (value
>> 17) & 1;
1912 ch
->constant_fill
= (value
>> 16) & 1;
1913 ch
->mode
[1] = (omap_dma_addressing_t
) ((value
& 0xc000) >> 14);
1914 ch
->mode
[0] = (omap_dma_addressing_t
) ((value
& 0x3000) >> 12);
1915 ch
->suspend
= (value
& 0x0100) >> 8;
1916 ch
->priority
= (value
& 0x0040) >> 6;
1917 ch
->fs
= (value
& 0x0020) >> 5;
1918 if (ch
->fs
&& ch
->bs
&& ch
->mode
[0] && ch
->mode
[1])
1919 fprintf(stderr
, "%s: For a packet transfer at least one port "
1920 "must be constant-addressed\n", __FUNCTION__
);
1921 ch
->sync
= (value
& 0x001f) | ((value
>> 14) & 0x0060);
1922 /* XXX must be 0x01 for CamDMA */
1925 omap_dma_enable_channel(s
, ch
);
1927 omap_dma_disable_channel(s
, ch
);
1931 case 0x04: /* DMA4_CLNK_CTRL */
1932 ch
->link_enabled
= (value
>> 15) & 0x1;
1933 ch
->link_next_ch
= value
& 0x1f;
1936 case 0x08: /* DMA4_CICR */
1937 ch
->interrupts
= value
& 0x09be;
1940 case 0x0c: /* DMA4_CSR */
1941 ch
->cstatus
&= ~value
;
1944 case 0x10: /* DMA4_CSDP */
1945 ch
->endian
[0] =(value
>> 21) & 1;
1946 ch
->endian_lock
[0] =(value
>> 20) & 1;
1947 ch
->endian
[1] =(value
>> 19) & 1;
1948 ch
->endian_lock
[1] =(value
>> 18) & 1;
1949 if (ch
->endian
[0] != ch
->endian
[1])
1950 fprintf(stderr
, "%s: DMA endiannes conversion enable attempt\n",
1952 ch
->write_mode
= (value
>> 16) & 3;
1953 ch
->burst
[1] = (value
& 0xc000) >> 14;
1954 ch
->pack
[1] = (value
& 0x2000) >> 13;
1955 ch
->translate
[1] = (value
& 0x1e00) >> 9;
1956 ch
->burst
[0] = (value
& 0x0180) >> 7;
1957 ch
->pack
[0] = (value
& 0x0040) >> 6;
1958 ch
->translate
[0] = (value
& 0x003c) >> 2;
1959 if (ch
->translate
[0] | ch
->translate
[1])
1960 fprintf(stderr
, "%s: bad MReqAddressTranslate sideband signal\n",
1962 ch
->data_type
= 1 << (value
& 3);
1963 if ((value
& 3) == 3)
1964 printf("%s: bad data_type for DMA channel\n", __FUNCTION__
);
1967 case 0x14: /* DMA4_CEN */
1969 ch
->elements
= value
& 0xffffff;
1972 case 0x18: /* DMA4_CFN */
1973 ch
->frames
= value
& 0xffff;
1977 case 0x1c: /* DMA4_CSSA */
1978 ch
->addr
[0] = (target_phys_addr_t
) (uint32_t) value
;
1982 case 0x20: /* DMA4_CDSA */
1983 ch
->addr
[1] = (target_phys_addr_t
) (uint32_t) value
;
1987 case 0x24: /* DMA4_CSEI */
1988 ch
->element_index
[0] = (int16_t) value
;
1992 case 0x28: /* DMA4_CSFI */
1993 ch
->frame_index
[0] = (int32_t) value
;
1997 case 0x2c: /* DMA4_CDEI */
1998 ch
->element_index
[1] = (int16_t) value
;
2002 case 0x30: /* DMA4_CDFI */
2003 ch
->frame_index
[1] = (int32_t) value
;
2007 case 0x44: /* DMA4_COLOR */
2008 /* XXX only in sDMA */
2012 case 0x34: /* DMA4_CSAC */
2013 case 0x38: /* DMA4_CDAC */
2014 case 0x3c: /* DMA4_CCEN */
2015 case 0x40: /* DMA4_CCFN */
2024 static CPUReadMemoryFunc
* const omap_dma4_readfn
[] = {
2025 omap_badwidth_read16
,
2030 static CPUWriteMemoryFunc
* const omap_dma4_writefn
[] = {
2031 omap_badwidth_write16
,
2036 struct soc_dma_s
*omap_dma4_init(target_phys_addr_t base
, qemu_irq
*irqs
,
2037 struct omap_mpu_state_s
*mpu
, int fifo
,
2038 int chans
, omap_clk iclk
, omap_clk fclk
)
2041 struct omap_dma_s
*s
= (struct omap_dma_s
*)
2042 qemu_mallocz(sizeof(struct omap_dma_s
));
2044 s
->model
= omap_dma_4
;
2049 s
->dma
= soc_dma_init(s
->chans
);
2050 s
->dma
->freq
= omap_clk_getrate(fclk
);
2051 s
->dma
->transfer_fn
= omap_dma_transfer_generic
;
2052 s
->dma
->setup_fn
= omap_dma_transfer_setup
;
2053 s
->dma
->drq
= qemu_allocate_irqs(omap_dma_request
, s
, 64);
2055 for (i
= 0; i
< s
->chans
; i
++) {
2056 s
->ch
[i
].dma
= &s
->dma
->ch
[i
];
2057 s
->dma
->ch
[i
].opaque
= &s
->ch
[i
];
2060 memcpy(&s
->irq
, irqs
, sizeof(s
->irq
));
2061 s
->intr_update
= omap_dma_interrupts_4_update
;
2063 omap_dma_setcaps(s
);
2064 omap_clk_adduser(s
->clk
, qemu_allocate_irqs(omap_dma_clk_update
, s
, 1)[0]);
2065 omap_dma_reset(s
->dma
);
2066 omap_dma_clk_update(s
, 0, !!s
->dma
->freq
);
2068 iomemtype
= cpu_register_io_memory(omap_dma4_readfn
,
2069 omap_dma4_writefn
, s
, DEVICE_NATIVE_ENDIAN
);
2070 cpu_register_physical_memory(base
, 0x1000, iomemtype
);
2072 mpu
->drq
= s
->dma
->drq
;
2077 struct omap_dma_lcd_channel_s
*omap_dma_get_lcdch(struct soc_dma_s
*dma
)
2079 struct omap_dma_s
*s
= dma
->opaque
;