From mboxrd@z Thu Jan 1 00:00:00 1970 From: Avi Kivity Subject: Re: KVM's PIT and PIC programming question Date: Thu, 20 Aug 2009 11:28:52 +0300 Message-ID: <4A8D0944.10901@redhat.com> References: <4158487B9DEE0647BA23911D1C22795712DF668F5B@orsmsx501.amr.corp.intel.com> Mime-Version: 1.0 Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Cc: "kvm@vger.kernel.org" To: "Saksena, Abhishek" Return-path: Received: from mx1.redhat.com ([209.132.183.28]:25709 "EHLO mx1.redhat.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1751753AbZHTI2x (ORCPT ); Thu, 20 Aug 2009 04:28:53 -0400 In-Reply-To: <4158487B9DEE0647BA23911D1C22795712DF668F5B@orsmsx501.amr.corp.intel.com> Sender: kvm-owner@vger.kernel.org List-ID: On 08/20/2009 12:26 AM, Saksena, Abhishek wrote: > Hi Guys, > I am writing very simple bios for KVM (not using Qemu but creating a simple io device models around KVM). I am having trouble in receiving regular Timer interrupts after programming PIT. > > I think I have enabled PIC and PIT correctly using following code:- > > PIC Programming > ;; PIC > mov al, #0x00 > out 0x21, AL ;master pic: all IRQs unmasked > out 0xA1, AL ;slave pic: all IRQs unmasked > > > PIT Programming > > and also enable PIT to genrate regular timer interruput > > SET_INT_VECTOR(0x08, #0xF000, #int08_handler) > mov al, #0x34 ; timer0: binary count, 16bit count, mode 2 > out 0x43, al > mov al, #0x00 ; maximum count of 0000H = 18.2Hz > out 0x40, al > out 0x40, al > > > PIT Timer ISR code > > Timer ISR code > > ;--------- > ;- INT08 - > ;--------- > .org 0xfea5 ; INT 08h System Timer ISR Entry Point > int08_handler: > sti > push ax > push ds > mov ax, #0x0040 > mov ds, ax > mov ax, 0x006c ; increment lower word > inc ax > mov 0x006c, ax > jnz inc_done > mov ax, 0x006e ; increment upper word > inc ax > mov 0x006e, ax > > > > For some reason I never see int08_handler ever been called. Any clues what may be wrong? I am creating only one VCPU > > > Things to check: - have you initialized the kernel PIC and PIT? - are interrupts enabled? -- error compiling committee.c: too many arguments to function