| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | /*
 | 
					
						
							|  |  |  |  * QEMU 8253/8254 interval timer emulation | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |  * Copyright (c) 2003-2004 Fabrice Bellard | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |  * | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |  * Permission is hereby granted, free of charge, to any person obtaining a copy | 
					
						
							|  |  |  |  * of this software and associated documentation files (the "Software"), to deal | 
					
						
							|  |  |  |  * in the Software without restriction, including without limitation the rights | 
					
						
							|  |  |  |  * to use, copy, modify, merge, publish, distribute, sublicense, and/or sell | 
					
						
							|  |  |  |  * copies of the Software, and to permit persons to whom the Software is | 
					
						
							|  |  |  |  * furnished to do so, subject to the following conditions: | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * The above copyright notice and this permission notice shall be included in | 
					
						
							|  |  |  |  * all copies or substantial portions of the Software. | 
					
						
							|  |  |  |  * | 
					
						
							|  |  |  |  * THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR | 
					
						
							|  |  |  |  * IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, | 
					
						
							|  |  |  |  * FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL | 
					
						
							|  |  |  |  * THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER | 
					
						
							|  |  |  |  * LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, | 
					
						
							|  |  |  |  * OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN | 
					
						
							|  |  |  |  * THE SOFTWARE. | 
					
						
							|  |  |  |  */ | 
					
						
							| 
									
										
										
										
											2007-11-17 17:14:51 +00:00
										 |  |  | #include "hw.h"
 | 
					
						
							|  |  |  | #include "pc.h"
 | 
					
						
							|  |  |  | #include "isa.h"
 | 
					
						
							|  |  |  | #include "qemu-timer.h"
 | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  | //#define DEBUG_PIT
 | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  | #define RW_STATE_LSB 1
 | 
					
						
							|  |  |  | #define RW_STATE_MSB 2
 | 
					
						
							|  |  |  | #define RW_STATE_WORD0 3
 | 
					
						
							|  |  |  | #define RW_STATE_WORD1 4
 | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  | typedef struct PITChannelState { | 
					
						
							|  |  |  |     int count; /* can be 65536 */ | 
					
						
							|  |  |  |     uint16_t latched_count; | 
					
						
							|  |  |  |     uint8_t count_latched; | 
					
						
							|  |  |  |     uint8_t status_latched; | 
					
						
							|  |  |  |     uint8_t status; | 
					
						
							|  |  |  |     uint8_t read_state; | 
					
						
							|  |  |  |     uint8_t write_state; | 
					
						
							|  |  |  |     uint8_t write_latch; | 
					
						
							|  |  |  |     uint8_t rw_mode; | 
					
						
							|  |  |  |     uint8_t mode; | 
					
						
							|  |  |  |     uint8_t bcd; /* not supported */ | 
					
						
							|  |  |  |     uint8_t gate; /* timer start */ | 
					
						
							|  |  |  |     int64_t count_load_time; | 
					
						
							|  |  |  |     /* irq handling */ | 
					
						
							|  |  |  |     int64_t next_transition_time; | 
					
						
							|  |  |  |     QEMUTimer *irq_timer; | 
					
						
							| 
									
										
										
										
											2007-04-07 18:14:41 +00:00
										 |  |  |     qemu_irq irq; | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  | } PITChannelState; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | struct PITState { | 
					
						
							|  |  |  |     PITChannelState channels[3]; | 
					
						
							|  |  |  | }; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static PITState pit_state; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  | static void pit_irq_timer_update(PITChannelState *s, int64_t current_time); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | static int pit_get_count(PITChannelState *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     uint64_t d; | 
					
						
							|  |  |  |     int counter; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |     d = muldiv64(qemu_get_clock(vm_clock) - s->count_load_time, PIT_FREQ, ticks_per_sec); | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |     switch(s->mode) { | 
					
						
							|  |  |  |     case 0: | 
					
						
							|  |  |  |     case 1: | 
					
						
							|  |  |  |     case 4: | 
					
						
							|  |  |  |     case 5: | 
					
						
							|  |  |  |         counter = (s->count - d) & 0xffff; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 3: | 
					
						
							|  |  |  |         /* XXX: may be incorrect for odd counts */ | 
					
						
							|  |  |  |         counter = s->count - ((2 * d) % s->count); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |         counter = s->count - (d % s->count); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return counter; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* get pit output bit */ | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  | static int pit_get_out1(PITChannelState *s, int64_t current_time) | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     uint64_t d; | 
					
						
							|  |  |  |     int out; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |     d = muldiv64(current_time - s->count_load_time, PIT_FREQ, ticks_per_sec); | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |     switch(s->mode) { | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |     case 0: | 
					
						
							|  |  |  |         out = (d >= s->count); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 1: | 
					
						
							|  |  |  |         out = (d < s->count); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 2: | 
					
						
							|  |  |  |         if ((d % s->count) == 0 && d != 0) | 
					
						
							|  |  |  |             out = 1; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             out = 0; | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 3: | 
					
						
							|  |  |  |         out = (d % s->count) < ((s->count + 1) >> 1); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 4: | 
					
						
							|  |  |  |     case 5: | 
					
						
							|  |  |  |         out = (d == s->count); | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return out; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  | int pit_get_out(PITState *pit, int channel, int64_t current_time) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PITChannelState *s = &pit->channels[channel]; | 
					
						
							|  |  |  |     return pit_get_out1(s, current_time); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  | /* return -1 if no transition will occur.  */ | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  | static int64_t pit_get_next_transition_time(PITChannelState *s, | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |                                             int64_t current_time) | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |     uint64_t d, next_time, base; | 
					
						
							|  |  |  |     int period2; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |     d = muldiv64(current_time - s->count_load_time, PIT_FREQ, ticks_per_sec); | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |     switch(s->mode) { | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |     case 0: | 
					
						
							|  |  |  |     case 1: | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |         if (d < s->count) | 
					
						
							|  |  |  |             next_time = s->count; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 2: | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |         base = (d / s->count) * s->count; | 
					
						
							|  |  |  |         if ((d - base) == 0 && d != 0) | 
					
						
							|  |  |  |             next_time = base + s->count; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             next_time = base + s->count + 1; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 3: | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |         base = (d / s->count) * s->count; | 
					
						
							|  |  |  |         period2 = ((s->count + 1) >> 1); | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |         if ((d - base) < period2) | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |             next_time = base + period2; | 
					
						
							|  |  |  |         else | 
					
						
							|  |  |  |             next_time = base + s->count; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     case 4: | 
					
						
							|  |  |  |     case 5: | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |         if (d < s->count) | 
					
						
							|  |  |  |             next_time = s->count; | 
					
						
							|  |  |  |         else if (d == s->count) | 
					
						
							|  |  |  |             next_time = s->count + 1; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |         else | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |             return -1; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |     /* convert to timer units */ | 
					
						
							|  |  |  |     next_time = s->count_load_time + muldiv64(next_time, ticks_per_sec, PIT_FREQ); | 
					
						
							| 
									
										
										
										
											2004-04-02 20:58:56 +00:00
										 |  |  |     /* fix potential rounding problems */ | 
					
						
							|  |  |  |     /* XXX: better solution: use a clock at PIT_FREQ Hz */ | 
					
						
							|  |  |  |     if (next_time <= current_time) | 
					
						
							|  |  |  |         next_time = current_time + 1; | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |     return next_time; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | /* val must be 0 or 1 */ | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  | void pit_set_gate(PITState *pit, int channel, int val) | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |     PITChannelState *s = &pit->channels[channel]; | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |     switch(s->mode) { | 
					
						
							|  |  |  |     default: | 
					
						
							|  |  |  |     case 0: | 
					
						
							|  |  |  |     case 4: | 
					
						
							|  |  |  |         /* XXX: just disable/enable counting */ | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 1: | 
					
						
							|  |  |  |     case 5: | 
					
						
							|  |  |  |         if (s->gate < val) { | 
					
						
							|  |  |  |             /* restart counting on rising edge */ | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |             s->count_load_time = qemu_get_clock(vm_clock); | 
					
						
							|  |  |  |             pit_irq_timer_update(s, s->count_load_time); | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     case 2: | 
					
						
							|  |  |  |     case 3: | 
					
						
							|  |  |  |         if (s->gate < val) { | 
					
						
							|  |  |  |             /* restart counting on rising edge */ | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |             s->count_load_time = qemu_get_clock(vm_clock); | 
					
						
							|  |  |  |             pit_irq_timer_update(s, s->count_load_time); | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |         /* XXX: disable/enable counting */ | 
					
						
							|  |  |  |         break; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     s->gate = val; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  | int pit_get_gate(PITState *pit, int channel) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PITChannelState *s = &pit->channels[channel]; | 
					
						
							|  |  |  |     return s->gate; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2006-04-24 21:58:30 +00:00
										 |  |  | int pit_get_initial_count(PITState *pit, int channel) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PITChannelState *s = &pit->channels[channel]; | 
					
						
							|  |  |  |     return s->count; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | int pit_get_mode(PITState *pit, int channel) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PITChannelState *s = &pit->channels[channel]; | 
					
						
							|  |  |  |     return s->mode; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | static inline void pit_load_count(PITChannelState *s, int val) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (val == 0) | 
					
						
							|  |  |  |         val = 0x10000; | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |     s->count_load_time = qemu_get_clock(vm_clock); | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |     s->count = val; | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |     pit_irq_timer_update(s, s->count_load_time); | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  | /* if already latched, do not latch again */ | 
					
						
							|  |  |  | static void pit_latch_count(PITChannelState *s) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     if (!s->count_latched) { | 
					
						
							|  |  |  |         s->latched_count = pit_get_count(s); | 
					
						
							|  |  |  |         s->count_latched = s->rw_mode; | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-14 21:46:48 +00:00
										 |  |  | static void pit_ioport_write(void *opaque, uint32_t addr, uint32_t val) | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |     PITState *pit = opaque; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |     int channel, access; | 
					
						
							|  |  |  |     PITChannelState *s; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     addr &= 3; | 
					
						
							|  |  |  |     if (addr == 3) { | 
					
						
							|  |  |  |         channel = val >> 6; | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |         if (channel == 3) { | 
					
						
							|  |  |  |             /* read back command */ | 
					
						
							|  |  |  |             for(channel = 0; channel < 3; channel++) { | 
					
						
							|  |  |  |                 s = &pit->channels[channel]; | 
					
						
							|  |  |  |                 if (val & (2 << channel)) { | 
					
						
							|  |  |  |                     if (!(val & 0x20)) { | 
					
						
							|  |  |  |                         pit_latch_count(s); | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                     if (!(val & 0x10) && !s->status_latched) { | 
					
						
							|  |  |  |                         /* status latch */ | 
					
						
							|  |  |  |                         /* XXX: add BCD and null count */ | 
					
						
							|  |  |  |                         s->status =  (pit_get_out1(s, qemu_get_clock(vm_clock)) << 7) | | 
					
						
							|  |  |  |                             (s->rw_mode << 4) | | 
					
						
							|  |  |  |                             (s->mode << 1) | | 
					
						
							|  |  |  |                             s->bcd; | 
					
						
							|  |  |  |                         s->status_latched = 1; | 
					
						
							|  |  |  |                     } | 
					
						
							|  |  |  |                 } | 
					
						
							|  |  |  |             } | 
					
						
							|  |  |  |         } else { | 
					
						
							|  |  |  |             s = &pit->channels[channel]; | 
					
						
							|  |  |  |             access = (val >> 4) & 3; | 
					
						
							|  |  |  |             if (access == 0) { | 
					
						
							|  |  |  |                 pit_latch_count(s); | 
					
						
							|  |  |  |             } else { | 
					
						
							|  |  |  |                 s->rw_mode = access; | 
					
						
							|  |  |  |                 s->read_state = access; | 
					
						
							|  |  |  |                 s->write_state = access; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |                 s->mode = (val >> 1) & 7; | 
					
						
							|  |  |  |                 s->bcd = val & 1; | 
					
						
							|  |  |  |                 /* XXX: update irq timer ? */ | 
					
						
							|  |  |  |             } | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |         s = &pit->channels[addr]; | 
					
						
							|  |  |  |         switch(s->write_state) { | 
					
						
							|  |  |  |         default: | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |         case RW_STATE_LSB: | 
					
						
							|  |  |  |             pit_load_count(s, val); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case RW_STATE_MSB: | 
					
						
							|  |  |  |             pit_load_count(s, val << 8); | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case RW_STATE_WORD0: | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |             s->write_latch = val; | 
					
						
							|  |  |  |             s->write_state = RW_STATE_WORD1; | 
					
						
							|  |  |  |             break; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |         case RW_STATE_WORD1: | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |             pit_load_count(s, s->write_latch | (val << 8)); | 
					
						
							|  |  |  |             s->write_state = RW_STATE_WORD0; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-14 21:46:48 +00:00
										 |  |  | static uint32_t pit_ioport_read(void *opaque, uint32_t addr) | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |     PITState *pit = opaque; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |     int ret, count; | 
					
						
							|  |  |  |     PITChannelState *s; | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |     addr &= 3; | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |     s = &pit->channels[addr]; | 
					
						
							|  |  |  |     if (s->status_latched) { | 
					
						
							|  |  |  |         s->status_latched = 0; | 
					
						
							|  |  |  |         ret = s->status; | 
					
						
							|  |  |  |     } else if (s->count_latched) { | 
					
						
							|  |  |  |         switch(s->count_latched) { | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |         case RW_STATE_LSB: | 
					
						
							|  |  |  |             ret = s->latched_count & 0xff; | 
					
						
							|  |  |  |             s->count_latched = 0; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case RW_STATE_MSB: | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |             ret = s->latched_count >> 8; | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |             s->count_latched = 0; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case RW_STATE_WORD0: | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |             ret = s->latched_count & 0xff; | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |             s->count_latched = RW_STATE_MSB; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } else { | 
					
						
							|  |  |  |         switch(s->read_state) { | 
					
						
							|  |  |  |         default: | 
					
						
							|  |  |  |         case RW_STATE_LSB: | 
					
						
							|  |  |  |             count = pit_get_count(s); | 
					
						
							|  |  |  |             ret = count & 0xff; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case RW_STATE_MSB: | 
					
						
							|  |  |  |             count = pit_get_count(s); | 
					
						
							|  |  |  |             ret = (count >> 8) & 0xff; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case RW_STATE_WORD0: | 
					
						
							|  |  |  |             count = pit_get_count(s); | 
					
						
							|  |  |  |             ret = count & 0xff; | 
					
						
							|  |  |  |             s->read_state = RW_STATE_WORD1; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         case RW_STATE_WORD1: | 
					
						
							|  |  |  |             count = pit_get_count(s); | 
					
						
							|  |  |  |             ret = (count >> 8) & 0xff; | 
					
						
							|  |  |  |             s->read_state = RW_STATE_WORD0; | 
					
						
							|  |  |  |             break; | 
					
						
							|  |  |  |         } | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |     } | 
					
						
							|  |  |  |     return ret; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  | static void pit_irq_timer_update(PITChannelState *s, int64_t current_time) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     int64_t expire_time; | 
					
						
							|  |  |  |     int irq_level; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     if (!s->irq_timer) | 
					
						
							|  |  |  |         return; | 
					
						
							|  |  |  |     expire_time = pit_get_next_transition_time(s, current_time); | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |     irq_level = pit_get_out1(s, current_time); | 
					
						
							| 
									
										
										
										
											2007-04-07 18:14:41 +00:00
										 |  |  |     qemu_set_irq(s->irq, irq_level); | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  | #ifdef DEBUG_PIT
 | 
					
						
							|  |  |  |     printf("irq_level=%d next_delay=%f\n", | 
					
						
							| 
									
										
										
										
											2007-09-16 21:08:06 +00:00
										 |  |  |            irq_level, | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |            (double)(expire_time - current_time) / ticks_per_sec); | 
					
						
							|  |  |  | #endif
 | 
					
						
							|  |  |  |     s->next_transition_time = expire_time; | 
					
						
							|  |  |  |     if (expire_time != -1) | 
					
						
							|  |  |  |         qemu_mod_timer(s->irq_timer, expire_time); | 
					
						
							|  |  |  |     else | 
					
						
							|  |  |  |         qemu_del_timer(s->irq_timer); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pit_irq_timer(void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							|  |  |  |     PITChannelState *s = opaque; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     pit_irq_timer_update(s, s->next_transition_time); | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static void pit_save(QEMUFile *f, void *opaque) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |     PITState *pit = opaque; | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |     PITChannelState *s; | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |     for(i = 0; i < 3; i++) { | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |         s = &pit->channels[i]; | 
					
						
							| 
									
										
										
										
											2007-12-16 23:41:11 +00:00
										 |  |  |         qemu_put_be32(f, s->count); | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |         qemu_put_be16s(f, &s->latched_count); | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |         qemu_put_8s(f, &s->count_latched); | 
					
						
							|  |  |  |         qemu_put_8s(f, &s->status_latched); | 
					
						
							|  |  |  |         qemu_put_8s(f, &s->status); | 
					
						
							|  |  |  |         qemu_put_8s(f, &s->read_state); | 
					
						
							|  |  |  |         qemu_put_8s(f, &s->write_state); | 
					
						
							|  |  |  |         qemu_put_8s(f, &s->write_latch); | 
					
						
							|  |  |  |         qemu_put_8s(f, &s->rw_mode); | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |         qemu_put_8s(f, &s->mode); | 
					
						
							|  |  |  |         qemu_put_8s(f, &s->bcd); | 
					
						
							|  |  |  |         qemu_put_8s(f, &s->gate); | 
					
						
							| 
									
										
										
										
											2007-12-16 23:41:11 +00:00
										 |  |  |         qemu_put_be64(f, s->count_load_time); | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |         if (s->irq_timer) { | 
					
						
							| 
									
										
										
										
											2007-12-16 23:41:11 +00:00
										 |  |  |             qemu_put_be64(f, s->next_transition_time); | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |             qemu_put_timer(f, s->irq_timer); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  | static int pit_load(QEMUFile *f, void *opaque, int version_id) | 
					
						
							|  |  |  | { | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |     PITState *pit = opaque; | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |     PITChannelState *s; | 
					
						
							|  |  |  |     int i; | 
					
						
							| 
									
										
										
										
											2007-09-17 08:09:54 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |     if (version_id != 1) | 
					
						
							|  |  |  |         return -EINVAL; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for(i = 0; i < 3; i++) { | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |         s = &pit->channels[i]; | 
					
						
							| 
									
										
										
										
											2007-12-16 23:41:11 +00:00
										 |  |  |         s->count=qemu_get_be32(f); | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |         qemu_get_be16s(f, &s->latched_count); | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |         qemu_get_8s(f, &s->count_latched); | 
					
						
							|  |  |  |         qemu_get_8s(f, &s->status_latched); | 
					
						
							|  |  |  |         qemu_get_8s(f, &s->status); | 
					
						
							|  |  |  |         qemu_get_8s(f, &s->read_state); | 
					
						
							|  |  |  |         qemu_get_8s(f, &s->write_state); | 
					
						
							|  |  |  |         qemu_get_8s(f, &s->write_latch); | 
					
						
							|  |  |  |         qemu_get_8s(f, &s->rw_mode); | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |         qemu_get_8s(f, &s->mode); | 
					
						
							|  |  |  |         qemu_get_8s(f, &s->bcd); | 
					
						
							|  |  |  |         qemu_get_8s(f, &s->gate); | 
					
						
							| 
									
										
										
										
											2007-12-16 23:41:11 +00:00
										 |  |  |         s->count_load_time=qemu_get_be64(f); | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |         if (s->irq_timer) { | 
					
						
							| 
									
										
										
										
											2007-12-16 23:41:11 +00:00
										 |  |  |             s->next_transition_time=qemu_get_be64(f); | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  |             qemu_get_timer(f, s->irq_timer); | 
					
						
							|  |  |  |         } | 
					
						
							|  |  |  |     } | 
					
						
							|  |  |  |     return 0; | 
					
						
							|  |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-20 12:58:36 +00:00
										 |  |  | static void pit_reset(void *opaque) | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | { | 
					
						
							| 
									
										
										
										
											2004-06-20 12:58:36 +00:00
										 |  |  |     PITState *pit = opaque; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |     PITChannelState *s; | 
					
						
							|  |  |  |     int i; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     for(i = 0;i < 3; i++) { | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |         s = &pit->channels[i]; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  |         s->mode = 3; | 
					
						
							|  |  |  |         s->gate = (i != 2); | 
					
						
							|  |  |  |         pit_load_count(s, 0); | 
					
						
							|  |  |  |     } | 
					
						
							| 
									
										
										
										
											2004-06-20 12:58:36 +00:00
										 |  |  | } | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2007-04-07 18:14:41 +00:00
										 |  |  | PITState *pit_init(int base, qemu_irq irq) | 
					
						
							| 
									
										
										
										
											2004-06-20 12:58:36 +00:00
										 |  |  | { | 
					
						
							|  |  |  |     PITState *pit = &pit_state; | 
					
						
							|  |  |  |     PITChannelState *s; | 
					
						
							|  |  |  | 
 | 
					
						
							|  |  |  |     s = &pit->channels[0]; | 
					
						
							|  |  |  |     /* the timer 0 is connected to an IRQ */ | 
					
						
							|  |  |  |     s->irq_timer = qemu_new_timer(vm_clock, pit_irq_timer, s); | 
					
						
							|  |  |  |     s->irq = irq; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |     register_savevm("i8254", base, 1, pit_save, pit_load, pit); | 
					
						
							| 
									
										
										
										
											2004-03-31 18:58:38 +00:00
										 |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-06-20 12:58:36 +00:00
										 |  |  |     qemu_register_reset(pit_reset, pit); | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |     register_ioport_write(base, 4, 1, pit_ioport_write, pit); | 
					
						
							|  |  |  |     register_ioport_read(base, 3, 1, pit_ioport_read, pit); | 
					
						
							| 
									
										
										
										
											2004-06-20 12:58:36 +00:00
										 |  |  | 
 | 
					
						
							|  |  |  |     pit_reset(pit); | 
					
						
							|  |  |  | 
 | 
					
						
							| 
									
										
										
										
											2004-05-03 23:18:25 +00:00
										 |  |  |     return pit; | 
					
						
							| 
									
										
										
										
											2004-03-14 12:20:30 +00:00
										 |  |  | } |