From mboxrd@z Thu Jan 1 00:00:00 1970 From: Scott McNutt Date: Tue, 30 Mar 2010 22:09:04 -0400 Subject: [U-Boot] [PATCH] nios2: Set CONFIG_SYS_HZ to 1000 all nios2 boards. Message-ID: <4BB2AEC0.7000501@psyent.com> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de > So it might be cleaner to let user define the HZ as the actual tick rate > and increase the tick count by one in the tmr_isr. This was discussed/debated thoroughly over the past year: CONFIG_SYS_HZ at 1000 is mandatory. > > - timestamp += CONFIG_SYS_NIOS_TMRMS; > + timestamp++; This means that each interrupt is exactly 1 msec. That's not what was intended and not what was implemented Forcing the interrupt period to 1 msec is an unnecessary constraint. If you want the isr to increment the timestamp by 1, then set CONFIG_SYS_NIOS_TMRMS to 1 ... and set your timer accordingly. --Scott