drc: tune invalidation
[picodrive.git] / pico / 32x / pwm.c
CommitLineData
cff531af 1/*
2 * PicoDrive
3 * (C) notaz, 2009,2010
4 *
5 * This work is licensed under the terms of MAME license.
6 * See COPYING file in the top-level directory.
7 */
db1d3564 8#include "../pico_int.h"
9
a8fd6e37 10static int pwm_cycle_counter;
db1d3564 11static int pwm_cycles;
12static int pwm_mult;
13static int pwm_ptr;
db1d3564 14
a8fd6e37 15static int pwm_smp_cnt;
16static int pwm_smp_expect;
17
18static int timer_cycles[2];
19static int timer_tick_cycles[2];
db1d3564 20
1d7a28a7 21// timers. This includes PWM timer in 32x and internal SH2 timers
22void p32x_timers_recalc(void)
db1d3564 23{
24 int cycles = Pico32x.regs[0x32 / 2];
1d7a28a7 25 int tmp, i;
db1d3564 26
27 cycles = (cycles - 1) & 0x0fff;
28 if (cycles < 500) {
1b3f5844 29 elprintf(EL_32X|EL_PWM|EL_ANOMALY, "pwm: low cycle value: %d", cycles + 1);
db1d3564 30 cycles = 500;
31 }
32 pwm_cycles = cycles;
33 pwm_mult = 0x10000 / cycles;
1d7a28a7 34
35 // SH2 timer step
36 for (i = 0; i < 2; i++) {
37 tmp = PREG8(Pico32xMem->sh2_peri_regs[i], 0x80) & 7;
38 // Sclk cycles per timer tick
39 if (tmp)
40 cycles = 0x20 << tmp;
41 else
42 cycles = 2;
a8fd6e37 43 timer_tick_cycles[i] = cycles;
44 elprintf(EL_32X, "WDT cycles[%d] = %d", i, cycles);
1d7a28a7 45 }
db1d3564 46}
47
1d7a28a7 48// PWM irq for every tm samples
a8fd6e37 49void p32x_timers_do(unsigned int cycles)
db1d3564 50{
a8fd6e37 51 int cnt, i;
07e5dbab 52
a8fd6e37 53 cycles *= 3;
1d7a28a7 54
bc3aea8e 55 // since we run things in async fashion, allow pwm to lag behind
56 // but don't allow our "queue" to be infinite
57 cnt = pwm_smp_expect - pwm_smp_cnt;
58 if (cnt <= 0 || cnt * pwm_cycles < OSC_NTSC/7*3 / 60 / 2) {
59 pwm_cycle_counter += cycles;
60 while (pwm_cycle_counter > pwm_cycles) {
61 pwm_cycle_counter -= pwm_cycles;
62 pwm_smp_expect++;
63 }
a8fd6e37 64 }
db1d3564 65
a8fd6e37 66 // WDT timers
1d7a28a7 67 for (i = 0; i < 2; i++) {
68 void *pregs = Pico32xMem->sh2_peri_regs[i];
69 if (PREG8(pregs, 0x80) & 0x20) { // TME
a8fd6e37 70 timer_cycles[i] += cycles;
1d7a28a7 71 cnt = PREG8(pregs, 0x81);
a8fd6e37 72 while (timer_cycles[i] >= timer_tick_cycles[i]) {
73 timer_cycles[i] -= timer_tick_cycles[i];
74 cnt++;
75 }
1d7a28a7 76 if (cnt >= 0x100) {
77 int level = PREG8(pregs, 0xe3) >> 4;
78 int vector = PREG8(pregs, 0xe4) & 0x7f;
a8fd6e37 79 elprintf(EL_32X, "%csh2 WDT irq (%d, %d)",
80 i ? 's' : 'm', level, vector);
1d7a28a7 81 sh2_internal_irq(&sh2s[i], level, vector);
a8fd6e37 82 cnt &= 0xff;
1d7a28a7 83 }
1d7a28a7 84 PREG8(pregs, 0x81) = cnt;
85 }
db1d3564 86 }
87}
88
a8fd6e37 89void p32x_pwm_schedule(unsigned int now)
90{
91 int tm;
92
93 if (Pico32x.emu_flags & P32XF_PWM_PEND)
94 return; // already scheduled
95 if (Pico32x.sh2irqs & P32XI_PWM)
96 return; // previous not acked
97 if (!((Pico32x.sh2irq_mask[0] | Pico32x.sh2irq_mask[1]) & 1))
98 return; // masked by everyone
99
100 tm = (Pico32x.regs[0x30 / 2] & 0x0f00) >> 8;
101 tm = ((tm - 1) & 0x0f) + 1;
102 p32x_event_schedule(P32X_EVENT_PWM, now, pwm_cycles * tm / 3);
103 Pico32x.emu_flags |= P32XF_PWM_PEND;
104}
105
db1d3564 106unsigned int p32x_pwm_read16(unsigned int a)
107{
108 unsigned int d = 0;
a8fd6e37 109 int diff;
db1d3564 110
111 a &= 0x0e;
112 switch (a) {
113 case 0: // control
114 case 2: // cycle
115 return Pico32x.regs[(0x30 + a) / 2];
116
117 case 4: // L ch
118 case 6: // R ch
119 case 8: // MONO
a8fd6e37 120 diff = pwm_smp_cnt - pwm_smp_expect;
121 elprintf(EL_PWM, "pwm: read status: ptr %d/%d %d",
122 pwm_smp_cnt, pwm_smp_expect, diff);
123 if (diff > 3)
db1d3564 124 d |= P32XP_FULL;
a8fd6e37 125 else if (diff < 0)
db1d3564 126 d |= P32XP_EMPTY;
127 break;
128 }
129
130 return d;
131}
132
133void p32x_pwm_write16(unsigned int a, unsigned int d)
134{
135 a &= 0x0e;
136 if (a == 0) // control
137 Pico32x.regs[0x30 / 2] = d;
138 else if (a == 2) { // cycle
139 Pico32x.regs[0x32 / 2] = d & 0x0fff;
1d7a28a7 140 p32x_timers_recalc();
db1d3564 141 Pico32x.pwm_irq_sample_cnt = 0; // resets?
142 }
143 else if (a <= 8) {
144 d &= 0x0fff;
145 if (d > pwm_cycles)
146 d = pwm_cycles;
147 d = (d - pwm_cycles / 2) * pwm_mult;
148
149 if (a < 6) // L ch
150 Pico32xMem->pwm[pwm_ptr * 2] = d;
151 else if (a == 6) // R ch
152 Pico32xMem->pwm[pwm_ptr * 2 + 1] = d;
153 else // MONO
154 Pico32xMem->pwm[pwm_ptr * 2] = Pico32xMem->pwm[pwm_ptr * 2 + 1] = d;
155
156 if (a >= 6) { // R or MONO
a8fd6e37 157 pwm_smp_cnt++;
db1d3564 158 pwm_ptr = (pwm_ptr + 1) & (PWM_BUFF_LEN - 1);
a8fd6e37 159 elprintf(EL_PWM, "pwm: smp_cnt %d, ptr %d, smp %x",
160 pwm_smp_cnt, pwm_ptr, d);
db1d3564 161 }
162 }
163}
164
165void p32x_pwm_update(int *buf32, int length, int stereo)
166{
db1d3564 167 short *pwmb;
168 int step;
169 int p = 0;
170
171 if (pwm_ptr <= 16) // at least some samples..
172 return;
173
174 step = (pwm_ptr << 16) / length; // FIXME: division..
175 pwmb = Pico32xMem->pwm;
176
177 if (stereo)
178 {
179 while (length-- > 0) {
180 *buf32++ += pwmb[0];
181 *buf32++ += pwmb[1];
182
183 p += step;
184 pwmb += (p >> 16) * 2;
185 p &= 0xffff;
186 }
187 }
188 else
189 {
190 while (length-- > 0) {
191 *buf32++ += pwmb[0];
192
193 p += step;
194 pwmb += (p >> 16) * 2;
195 p &= 0xffff;
196 }
197 }
198
1b3f5844 199 elprintf(EL_PWM, "pwm_update: pwm_ptr %d, len %d, step %04x, done %d",
db1d3564 200 pwm_ptr, length, step, (pwmb - Pico32xMem->pwm) / 2);
201
202 pwm_ptr = 0;
203}
204
a8fd6e37 205// vim:shiftwidth=2:ts=2:expandtab