2001-04-28 17:59:11 +00:00
|
|
|
/*
|
|
|
|
* (C) Copyright 2000
|
|
|
|
* Wolfgang Denk, DENX Software Engineering, wd@denx.de.
|
|
|
|
*
|
2013-07-08 07:37:19 +00:00
|
|
|
* SPDX-License-Identifier: GPL-2.0+
|
2001-04-28 17:59:11 +00:00
|
|
|
*/
|
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
|
|
* Timer value for timer 2, ICLK = 10
|
|
|
|
*
|
|
|
|
* SPEED_FCOUNT2 = GCLK / (16 * (TIMER_TMR_PS + 1))
|
|
|
|
* SPEED_TMR3_PS = (GCLK / (16 * SPEED_FCOUNT3)) - 1
|
|
|
|
*
|
|
|
|
* SPEED_FCOUNT2 timer 2 counting frequency
|
2008-05-20 14:00:29 +00:00
|
|
|
* GCLK CPU clock
|
2001-04-28 17:59:11 +00:00
|
|
|
* SPEED_TMR2_PS prescaler
|
|
|
|
*/
|
2008-05-20 14:00:29 +00:00
|
|
|
#define SPEED_TMR2_PS (250 - 1) /* divide by 250 */
|
2001-04-28 17:59:11 +00:00
|
|
|
|
|
|
|
/*-----------------------------------------------------------------------
|
|
|
|
* Timer value for PIT
|
|
|
|
*
|
|
|
|
* PIT_TIME = SPEED_PITC / PITRTCLK
|
|
|
|
* PITRTCLK = 8192
|
|
|
|
*/
|
|
|
|
#define SPEED_PITC (82 << 16) /* start counting from 82 */
|
|
|
|
|
|
|
|
/*
|
|
|
|
* The new value for PTA is calculated from
|
|
|
|
*
|
|
|
|
* PTA = (gclk * Trefresh) / (2 ^ (2 * DFBRG) * PTP * NCS)
|
|
|
|
*
|
|
|
|
* gclk CPU clock (not bus clock !)
|
|
|
|
* Trefresh Refresh cycle * 4 (four word bursts used)
|
|
|
|
* DFBRG For normal mode (no clock reduction) always 0
|
|
|
|
* PTP Prescaler (already adjusted for no. of banks and 4K / 8K refresh)
|
|
|
|
* NCS Number of SDRAM banks (chip selects) on this UPM.
|
|
|
|
*/
|