Perform the length adjustment whereby a value of 0 in the STC represents
a transfer length of 0x10000 at the point where the TC is loaded at the
start of a DMA command rather than just when a TI (Transfer Information)
command is executed. This better matches the description as given in the
datasheet.
Signed-off-by: Mark Cave-Ayland <mark.cave-ayland@ilande.co.uk>
Reviewed-by: Laurent Vivier <laurent@vivier.eu>
Message-Id: <
20210304221103.6369-12-mark.cave-ayland@ilande.co.uk>
}
dmalen = esp_get_tc(s);
- if (dmalen == 0) {
- dmalen = 0x10000;
- }
s->dma_counter = dmalen;
if (s->do_cmd) {
if (val & CMD_DMA) {
s->dma = 1;
/* Reload DMA counter. */
- esp_set_tc(s, esp_get_stc(s));
+ if (esp_get_stc(s) == 0) {
+ esp_set_tc(s, 0x10000);
+ } else {
+ esp_set_tc(s, esp_get_stc(s));
+ }
} else {
s->dma = 0;
}