From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: (qmail 6930 invoked by alias); 18 Sep 2003 07:32:11 -0000 Mailing-List: contact ecos-discuss-help@sources.redhat.com; run by ezmlm Precedence: bulk List-Subscribe: List-Archive: List-Post: List-Help: , Sender: ecos-discuss-owner@sources.redhat.com Received: (qmail 6923 invoked from network); 18 Sep 2003 07:32:10 -0000 Received: from unknown (HELO sanmx03.sanyo.co.jp) (134.180.230.88) by sources.redhat.com with SMTP; 18 Sep 2003 07:32:10 -0000 Received: from sanmx03.sanyo.co.jp (localhost [127.0.0.1]) by localhost (Postfix) with ESMTP id 91CF6A83DC for ; Thu, 18 Sep 2003 16:32:09 +0900 (JST) Received: from mx.sc.sanyo.co.jp (unknown [10.152.16.18]) by sanmx03.sanyo.co.jp (Postfix) with ESMTP id 364ACA83D6 for ; Thu, 18 Sep 2003 16:32:09 +0900 (JST) Received: from bvt.sc.sanyo.co.jp (bvt.sc.sanyo.co.jp [10.152.206.4]) by mx.sc.sanyo.co.jp (8.10.2+Sun/3.7W) with ESMTP id h8I7U0V14337 for ; Thu, 18 Sep 2003 16:30:00 +0900 (JST) Received: from [10.152.206.21] ([10.152.206.21] unverified) by bvt.sc.sanyo.co.jp with Microsoft SMTPSVC(5.0.2195.6713); Thu, 18 Sep 2003 16:32:04 +0900 Date: Thu, 18 Sep 2003 07:32:00 -0000 From: Satish Kumar To: ecos-discuss@sources.redhat.com Message-Id: <20030918163134.48B5.SATISH@bvt.sc.sanyo.co.jp> MIME-Version: 1.0 Content-Type: text/plain; charset="US-ASCII" Content-Transfer-Encoding: 7bit X-OriginalArrivalTime: 18 Sep 2003 07:32:04.0578 (UTC) FILETIME=[F5146420:01C37DB6] Subject: Re: [ECOS] isr routine does not invoke for RTC interrupt X-SW-Source: 2003-09/txt/msg00313.txt.bz2 well, i have done only the platform porting for my target board which has a arm926ej-s core. my hal_clock_xxxx routines are making use of system timers and not the real time clock. i have done some hard-core debugging to some extent and found that, the corresponding interrupt is generated for the down-count timer, and the corresponding interrupt bits are set in the vector registers and the timer registers..and also the correct isr routine is attached to this vector, but it does not enter the RealTimeClock::isr () routine when the interrupt is generated. when i run the clcoktruth.cxx program in the kernel/tests directory; my programs hangs in the while loop: // First, print 100 lines as fast as you can, of distinct ticks. for ( i = 0; i < 100; i++ ) { now = rtc->current_value_lo(); then = now; while ( then == now ) now = rtc->current_value_lo(); diag_printf( "INFO