summaryrefslogtreecommitdiffstats
path: root/firmware/target/coldfire/iaudio
diff options
context:
space:
mode:
authorJens Arnold <amiconn@rockbox.org>2008-05-24 08:53:12 +0000
committerJens Arnold <amiconn@rockbox.org>2008-05-24 08:53:12 +0000
commit4a6190dd132884ce27df599b320da1a74587b4c5 (patch)
treeb13f460d792815847771195e15c65b42b7926bcc /firmware/target/coldfire/iaudio
parent5e9732367d43d806b3552c88603b8564346fe39f (diff)
downloadrockbox-4a6190dd132884ce27df599b320da1a74587b4c5.tar.gz
rockbox-4a6190dd132884ce27df599b320da1a74587b4c5.zip
Hopefully fix FS #8840 for iAudio M3, M5 and X5. Reduce greyscale update frequency on M3 in order to reduce CPU load (was >50% before, but this fix would have made it even worse).
git-svn-id: svn://svn.rockbox.org/rockbox/trunk@17621 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/coldfire/iaudio')
-rw-r--r--firmware/target/coldfire/iaudio/lcd-remote-as-iaudio.S54
-rw-r--r--firmware/target/coldfire/iaudio/m3/lcd-as-m3.S85
2 files changed, 94 insertions, 45 deletions
diff --git a/firmware/target/coldfire/iaudio/lcd-remote-as-iaudio.S b/firmware/target/coldfire/iaudio/lcd-remote-as-iaudio.S
index d92d7e6857..8ac49c4eaa 100644
--- a/firmware/target/coldfire/iaudio/lcd-remote-as-iaudio.S
+++ b/firmware/target/coldfire/iaudio/lcd-remote-as-iaudio.S
@@ -58,15 +58,15 @@
swap %d3 /* Shift data to upper byte */
lsl.l #8, %d3
- eor.l %d7, %d0 /* precalculate opposite state of clock line */
+ move.l %d0, %d1 /* precalculate opposite state of clock line */
+ eor.l %d7, %d1
- lsl.l #1,%d3 /* Shift out MSB */
+ lsl.l #1, %d3 /* Shift out MSB */
bcc.s 1f
eor.l %d6, %d0 /* 1: Flip data bit */
+ eor.l %d6, %d1
1:
- move.l %d0, (%a0) /* Output new state and set CLK = 0*/
- move.l %d0, %d1
- eor.l %d7, %d1
+ move.l %d1, (%a0) /* Output new state and set CLK = 0*/
bra.w .wr_bit7
@@ -98,62 +98,77 @@
eor.l %d1, %d3 /* previous state, and 0's where it doesn't */
swap %d3 /* Shift data to upper word */
- eor.l %d7, %d0 /* precalculate opposite state of clock line */
+ move.l %d0, %d1 /* precalculate opposite state of clock line */
+ eor.l %d7, %d1
- lsl.l #1,%d3 /* Shift out MSB */
+ lsl.l #1, %d3 /* Shift out MSB */
bcc.s 1f
eor.l %d6, %d0 /* 1: Flip data bit */
+ eor.l %d6, %d1
1:
- move.l %d0, (%a0) /* Output new state and set CLK = 0*/
- move.l %d0, %d1
- eor.l %d7, %d1
- nop
+ move.l %d1, (%a0) /* Output new state and set CLK = 0*/
.macro bit_out
- lsl.l #1,%d3
+ move.l %d0, (%a0) /* Set CLK = 1 */
+ lsl.l #1, %d3
bcc.s 1f
eor.l %d6, %d0
+ eor.l %d6, %d1
1:
- move.l %d1, (%a0) /* Set CLK = 1 (delayed) */
- move.l %d0, (%a0)
- move.l %d0, %d1
- eor.l %d7, %d1
+ move.l %d1, (%a0)
.endm
- bit_out
+
+ nop
nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
+ bit_out
+ nop
.wr_bit7:
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
-
nop
- move.l %d1, (%a0) /* Set CLK = 1 (delayed) */
+
+ move.l %d0, (%a0) /* Set CLK = 1 */
move.w %d2, %sr
rts
@@ -195,6 +210,7 @@
move.l %d1, (%a0) /* Output new state and set CLK = 0*/
move.l %d0, (%a0) /* set CLK = 1 */
.endm
+
bit_out_fast
bit_out_fast
bit_out_fast
diff --git a/firmware/target/coldfire/iaudio/m3/lcd-as-m3.S b/firmware/target/coldfire/iaudio/m3/lcd-as-m3.S
index a135ce5eb6..74fcd692b7 100644
--- a/firmware/target/coldfire/iaudio/m3/lcd-as-m3.S
+++ b/firmware/target/coldfire/iaudio/m3/lcd-as-m3.S
@@ -58,15 +58,15 @@
swap %d3 /* Shift data to upper byte */
lsl.l #8, %d3
- eor.l %d7, %d0 /* precalculate opposite state of clock line */
+ move.l %d0, %d1 /* precalculate opposite state of clock line */
+ eor.l %d7, %d1
- lsl.l #1,%d3 /* Shift out MSB */
+ lsl.l #1, %d3 /* Shift out MSB */
bcc.s 1f
eor.l %d6, %d0 /* 1: Flip data bit */
+ eor.l %d6, %d1
1:
- move.l %d0, (%a0) /* Output new state and set CLK = 0*/
- move.l %d0, %d1
- eor.l %d7, %d1
+ move.l %d1, (%a0) /* Output new state and set CLK = 0*/
bra.w .wr_bit7
@@ -98,62 +98,77 @@
eor.l %d1, %d3 /* previous state, and 0's where it doesn't */
swap %d3 /* Shift data to upper word */
- eor.l %d7, %d0 /* precalculate opposite state of clock line */
+ move.l %d0, %d1 /* precalculate opposite state of clock line */
+ eor.l %d7, %d1
- lsl.l #1,%d3 /* Shift out MSB */
+ lsl.l #1, %d3 /* Shift out MSB */
bcc.s 1f
eor.l %d6, %d0 /* 1: Flip data bit */
+ eor.l %d6, %d1
1:
- move.l %d0, (%a0) /* Output new state and set CLK = 0*/
- move.l %d0, %d1
- eor.l %d7, %d1
- nop
+ move.l %d1, (%a0) /* Output new state and set CLK = 0*/
.macro bit_out
- lsl.l #1,%d3
+ move.l %d0, (%a0) /* Set CLK = 1 */
+ lsl.l #1, %d3
bcc.s 1f
eor.l %d6, %d0
+ eor.l %d6, %d1
1:
- move.l %d1, (%a0) /* Set CLK = 1 (delayed) */
- move.l %d0, (%a0)
- move.l %d0, %d1
- eor.l %d7, %d1
+ move.l %d1, (%a0)
.endm
- bit_out
+
+ nop
nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
+ bit_out
+ nop
.wr_bit7:
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
+ nop
bit_out
nop
-
nop
- move.l %d1, (%a0) /* Set CLK = 1 (delayed) */
+
+ move.l %d0, (%a0) /* Set CLK = 1 */
move.w %d2, %sr
rts
@@ -195,6 +210,7 @@
move.l %d1, (%a0) /* Output new state and set CLK = 0*/
move.l %d0, (%a0) /* set CLK = 1 */
.endm
+
bit_out_fast
bit_out_fast
bit_out_fast
@@ -438,33 +454,41 @@ lcd_grey_data:
eor.l %d1, %d3 /* previous state, and 0's where it doesn't */
swap %d3 /* Shift data to upper word */
- eor.l %d7, %d0 /* precalculate opposite state of clock line */
+ move.l %d0, %d1 /* precalculate opposite state of clock line */
+ eor.l %d7, %d1
- lsl.l #1,%d3 /* Shift out MSB */
+ lsl.l #1, %d3 /* Shift out MSB */
bcc.s 1f
eor.l %d6, %d0 /* 1: Flip data bit */
+ eor.l %d6, %d1
1:
- move.l %d0, %d1
- move.l %d0, (%a0) /* Output new state and set CLK = 0*/
- eor.l %d7, %d1
+ move.l %d1, (%a0) /* Output new state and set CLK = 0*/
move.l (%a3), %d4 /* fetch 4 pixel phases */
bit_out
bclr.l #31, %d4 /* Z = !(p0 & 0x80); p0 &= ~0x80; */
seq.b %d5 /* %d5 = ........................00000000 */
lsl.l #1, %d5 /* %d5 = .......................00000000. */
+ trapf
+ trapf
bit_out
bclr.l #23, %d4 /* Z = !(p1 & 0x80); p1 &= ~0x80; */
seq.b %d5 /* %d5 = .......................011111111 */
lsl.l #1, %d5 /* %d5 = ......................011111111. */
+ trapf
+ trapf
bit_out
bclr.l #15, %d4 /* Z = !(p2 & 0x80); p2 &= ~0x80; */
seq.b %d5 /* %d5 = ......................0122222222 */
lsl.l #1, %d5 /* %d5 = .....................0122222222. */
+ trapf
+ trapf
bit_out
bclr.l #7, %d4 /* Z = !(p3 & 0x80); p3 &= ~0x80; */
seq.b %d5 /* %d5 = .....................01233333333 */
lsl.l #1, %d5 /* %d5 = ....................01233333333. */
+ trapf
+ trapf
bit_out
add.l (%a2)+, %d4 /* add 4 pixel values to the phases */
bit_out
@@ -476,18 +500,26 @@ lcd_grey_data:
bclr.l #31, %d4 /* Z = !(p0 & 0x80); p0 &= ~0x80; */
seq.b %d5 /* %d5 = ....................012344444444 */
lsl.l #1, %d5 /* %d5 = ...................012344444444. */
+ trapf
+ trapf
bit_out
bclr.l #23, %d4 /* Z = !(p1 & 0x80); p1 &= ~0x80; */
seq.b %d5 /* %d5 = ...................0123455555555 */
lsl.l #1, %d5 /* %d5 = ..................0123455555555. */
+ trapf
+ trapf
bit_out
bclr.l #15, %d4 /* Z = !(p2 & 0x80); p2 &= ~0x80; */
seq.b %d5 /* %d5 = ..................01234566666666 */
lsl.l #1, %d5 /* %d5 = .................01234566666666. */
+ trapf
+ trapf
bit_out
bclr.l #7, %d4 /* Z = !(p3 & 0x80); p3 &= ~0x80; */
seq.b %d5 /* %d5 = .................012345677777777 */
lsr.l #7, %d5 /* %d5 = ........................01234567 */
+ trapf
+ trapf
bit_out
add.l (%a2)+, %d4 /* add 4 pixel values to the phases */
bit_out
@@ -495,13 +527,14 @@ lcd_grey_data:
bit_out
nop
+ nop
bit_out
move.l %d5, %d3
lsl.l #8, %d3
or.l %d5, %d3
-
nop
- move.l %d1, (%a0) /* Set CLK = 1 (delayed) */
+
+ move.l %d0, (%a0) /* Set CLK = 1 */
move.w %d2, %sr
cmp.l %a3, %a4