summaryrefslogtreecommitdiff
path: root/firmware/target/arm/as3525/sansa-fuze
diff options
context:
space:
mode:
authorThomas Martitz <kugel@rockbox.org>2009-09-01 00:42:22 +0000
committerThomas Martitz <kugel@rockbox.org>2009-09-01 00:42:22 +0000
commitb9093b2b35310af1ea28a5a96d036818146783ab (patch)
tree3d01ab19875e7aa78356c4c1ad940abfa4b50cba /firmware/target/arm/as3525/sansa-fuze
parentfb65077a18bd2f35b24b049aaa9cfb724a946c27 (diff)
downloadrockbox-b9093b2b35310af1ea28a5a96d036818146783ab.tar.gz
rockbox-b9093b2b35310af1ea28a5a96d036818146783ab.zip
Fuze/e200v2: Speed up the LCD further by letting the FIFO fill until it's full instead of keeping it almost empty.
The blue bars I previously had with this way are fixed by blocking DBOP output while reading buttons from GPIO. We reached the maximum fps even at unboosted now (100.0 fps at lcd_update(), DBOP can't do more). Optimisation to YUV stuff is still possible though. The e200v2 scrollwheel is very improved due to the this and the previous speedup since the chance of getting the wheel read blocked is greatly decreased with faster updates. git-svn-id: svn://svn.rockbox.org/rockbox/trunk@22578 a1c6a512-1295-4272-9138-f99709370657
Diffstat (limited to 'firmware/target/arm/as3525/sansa-fuze')
-rw-r--r--firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c b/firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c
index fc0fdaae10..2b7ce4888d 100644
--- a/firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c
+++ b/firmware/target/arm/as3525/sansa-fuze/lcd-fuze.c
@@ -116,16 +116,16 @@ void lcd_write_data(const fb_data* p_bytes, int count)
116 DBOP_DOUT32 = *data++; 116 DBOP_DOUT32 = *data++;
117 count -= 2; 117 count -= 2;
118 118
119 /* Wait for fifo to empty */ 119 /* Wait if push fifo is full */
120 /* TODO: We should normally fill the fifo until it's full 120 while ((DBOP_STAT & (1<<6)) != 0);
121 * instead of waiting after each word,
122 * but that causes blue lines on the display */
123 while ((DBOP_STAT & (1<<10)) == 0);
124 } 121 }
125 /* due to the 32bit alignment requirement, we possibly need to do a 122 /* due to the 32bit alignment requirement, we possibly need to do a
126 * 16bit transfer at the end also */ 123 * 16bit transfer at the end also */
127 if (count > 0) 124 if (count > 0)
128 lcd_write_single_data16(*(fb_data*)data); 125 lcd_write_single_data16(*(fb_data*)data);
126
127 /* While push fifo is not empty */
128 while ((DBOP_STAT & (1<<10)) == 0);
129} 129}
130 130
131static void lcd_write_reg(int reg, int value) 131static void lcd_write_reg(int reg, int value)