6cadc2da |
1 | // Buffering handling |
2 | // (c) Copyright 2007, Grazvydas "notaz" Ignotas |
3 | |
efcba75f |
4 | #include "../pico_int.h" |
8b71d0eb |
5 | |
8b71d0eb |
6 | int PicoCDBuffers = 0; |
7 | static unsigned char *cd_buffer = NULL; |
8 | static int prev_lba = 0x80000000; |
9 | |
10 | static int hits, reads; |
11 | |
12 | |
13 | void PicoCDBufferInit(void) |
14 | { |
ca482e5d |
15 | void *tmp = NULL; |
8b71d0eb |
16 | |
17 | prev_lba = 0x80000000; |
18 | hits = reads = 0; |
19 | |
20 | if (PicoCDBuffers <= 1) { |
21 | PicoCDBuffers = 0; |
a5f80ce4 |
22 | return; /* buffering off */ |
8b71d0eb |
23 | } |
24 | |
25 | /* try alloc'ing until we succeed */ |
26 | while (PicoCDBuffers > 0) |
27 | { |
8022f53d |
28 | tmp = realloc(cd_buffer, PicoCDBuffers * 2048 + 304); |
8b71d0eb |
29 | if (tmp != NULL) break; |
30 | PicoCDBuffers >>= 1; |
31 | } |
32 | |
a5f80ce4 |
33 | if (PicoCDBuffers <= 0) return; /* buffering became off */ |
8b71d0eb |
34 | |
a5f80ce4 |
35 | cd_buffer = tmp; |
8b71d0eb |
36 | } |
37 | |
38 | |
39 | void PicoCDBufferFree(void) |
40 | { |
41 | if (cd_buffer) { |
42 | free(cd_buffer); |
43 | cd_buffer = NULL; |
44 | } |
45 | if (reads) |
c6196c0f |
46 | elprintf(EL_STATUS, "CD buffer hits: %i/%i (%i%%)\n", hits, reads, hits * 100 / reads); |
8b71d0eb |
47 | } |
48 | |
49 | |
c9e1affc |
50 | void PicoCDBufferFlush(void) |
51 | { |
52 | prev_lba = 0x80000000; |
53 | } |
54 | |
55 | |
56 | /* this is was a try to fight slow SD access of GP2X */ |
eff55556 |
57 | PICO_INTERNAL void PicoCDBufferRead(void *dest, int lba) |
8b71d0eb |
58 | { |
66fdc0f0 |
59 | int is_bin, offs, read_len, moved = 0; |
8b71d0eb |
60 | reads++; |
61 | |
62 | is_bin = Pico_mcd->TOC.Tracks[0].ftype == TYPE_BIN; |
63 | |
64 | if (PicoCDBuffers <= 0) |
65 | { |
66 | /* no buffering */ |
67 | int where_seek = is_bin ? (lba * 2352 + 16) : (lba << 11); |
68 | pm_seek(Pico_mcd->TOC.Tracks[0].F, where_seek, SEEK_SET); |
69 | pm_read(dest, 2048, Pico_mcd->TOC.Tracks[0].F); |
70 | return; |
71 | } |
72 | |
73 | /* hit? */ |
74 | offs = lba - prev_lba; |
75 | if (offs >= 0 && offs < PicoCDBuffers) |
76 | { |
77 | hits++; |
78 | if (offs == 0) dprintf("CD buffer seek to old %i -> %i\n", prev_lba, lba); |
79 | memcpy32(dest, (int *)(cd_buffer + offs*2048), 2048/4); |
80 | return; |
81 | } |
82 | |
83 | if (prev_lba + PicoCDBuffers != lba) |
84 | { |
85 | int where_seek = is_bin ? (lba * 2352 + 16) : (lba << 11); |
86 | dprintf("CD buffer seek %i -> %i\n", prev_lba, lba); |
87 | pm_seek(Pico_mcd->TOC.Tracks[0].F, where_seek, SEEK_SET); |
88 | } |
89 | |
90 | dprintf("CD buffer miss %i -> %i\n", prev_lba, lba); |
91 | |
92 | if (lba < prev_lba && prev_lba - lba < PicoCDBuffers) |
93 | { |
8b71d0eb |
94 | read_len = prev_lba - lba; |
66fdc0f0 |
95 | dprintf("CD buffer move=%i, read_len=%i", PicoCDBuffers - read_len, read_len); |
8b71d0eb |
96 | memmove(cd_buffer + read_len*2048, cd_buffer, (PicoCDBuffers - read_len)*2048); |
66fdc0f0 |
97 | moved = 1; |
8b71d0eb |
98 | } |
99 | else |
100 | { |
101 | read_len = PicoCDBuffers; |
102 | } |
103 | |
66fdc0f0 |
104 | if (PicoMessage != NULL && read_len >= 512) |
105 | { |
106 | PicoMessage("Buffering data..."); |
107 | } |
108 | |
8b71d0eb |
109 | if (is_bin) |
110 | { |
8022f53d |
111 | int i = 0; |
112 | #if REDUCE_IO_CALLS |
b542be46 |
113 | int bufs = (read_len*2048) / (2048+304); |
8022f53d |
114 | pm_read(cd_buffer, bufs*(2048+304), Pico_mcd->TOC.Tracks[0].F); |
115 | for (i = 1; i < bufs; i++) |
116 | // should really use memmove here, but my memcpy32 implementation is also suitable here |
117 | memcpy32((int *)(cd_buffer + i*2048), (int *)(cd_buffer + i*(2048+304)), 2048/4); |
118 | #endif |
b542be46 |
119 | for (; i < read_len - 1; i++) |
8b71d0eb |
120 | { |
8022f53d |
121 | pm_read(cd_buffer + i*2048, 2048 + 304, Pico_mcd->TOC.Tracks[0].F); |
122 | // pm_seek(Pico_mcd->TOC.Tracks[0].F, 304, SEEK_CUR); // seeking is slower, in PSP case even more |
8b71d0eb |
123 | } |
b542be46 |
124 | // further data might be moved, do not overwrite |
125 | pm_read(cd_buffer + i*2048, 2048, Pico_mcd->TOC.Tracks[0].F); |
126 | pm_seek(Pico_mcd->TOC.Tracks[0].F, 304, SEEK_CUR); |
8b71d0eb |
127 | } |
128 | else |
129 | { |
130 | pm_read(cd_buffer, read_len*2048, Pico_mcd->TOC.Tracks[0].F); |
131 | } |
132 | memcpy32(dest, (int *) cd_buffer, 2048/4); |
133 | prev_lba = lba; |
66fdc0f0 |
134 | |
135 | if (moved) |
136 | { |
137 | /* file pointer must point to the same data in file, as would-be data after our buffer */ |
138 | int where_seek; |
139 | lba += PicoCDBuffers; |
140 | where_seek = is_bin ? (lba * 2352 + 16) : (lba << 11); |
141 | pm_seek(Pico_mcd->TOC.Tracks[0].F, where_seek, SEEK_SET); |
142 | } |
8b71d0eb |
143 | } |
144 | |