[PATCH] sk98 vendor driver update
[linux-2.6/history.git] / drivers / net / sk98lin / skgehwt.c
blob7cdfb67acc79df38d5eaf35efd3eb865e7394321
1 /******************************************************************************
3 * Name: skgehwt.c
4 * Project: Gigabit Ethernet Adapters, Common Modules
5 * Version: $Revision: 1.14 $
6 * Date: $Date: 2003/05/13 18:01:58 $
7 * Purpose: Hardware Timer.
9 ******************************************************************************/
11 /******************************************************************************
13 * (C)Copyright 1998-2002 SysKonnect GmbH.
14 * (C)Copyright 2002-2003 Marvell.
16 * This program is free software; you can redistribute it and/or modify
17 * it under the terms of the GNU General Public License as published by
18 * the Free Software Foundation; either version 2 of the License, or
19 * (at your option) any later version.
21 * The information in this file is provided "AS IS" without warranty.
23 ******************************************************************************/
25 /******************************************************************************
27 * History:
29 * $Log: skgehwt.c,v $
30 * Revision 1.14 2003/05/13 18:01:58 mkarl
31 * Editorial changes.
33 * Revision 1.13 1999/11/22 13:31:12 cgoos
34 * Changed license header to GPL.
36 * Revision 1.12 1998/10/15 15:11:34 gklug
37 * fix: ID_sccs to SysKonnectFileId
39 * Revision 1.11 1998/10/08 15:27:51 gklug
40 * chg: correction factor is host clock dependent
42 * Revision 1.10 1998/09/15 14:18:31 cgoos
43 * Changed more BOOLEANs to SK_xxx
45 * Revision 1.9 1998/09/15 14:16:06 cgoos
46 * Changed line 107: FALSE to SK_FALSE
48 * Revision 1.8 1998/08/24 13:04:44 gklug
49 * fix: typo
51 * Revision 1.7 1998/08/19 09:50:49 gklug
52 * fix: remove struct keyword from c-code (see CCC) add typedefs
54 * Revision 1.6 1998/08/17 09:59:02 gklug
55 * fix: typos
57 * Revision 1.5 1998/08/14 07:09:10 gklug
58 * fix: chg pAc -> pAC
60 * Revision 1.4 1998/08/10 14:14:52 gklug
61 * rmv: unneccessary SK_ADDR macro
63 * Revision 1.3 1998/08/07 12:53:44 gklug
64 * fix: first compiled version
66 * Revision 1.2 1998/08/07 09:19:29 gklug
67 * adapt functions to the C coding conventions
68 * rmv unneccessary functions.
70 * Revision 1.1 1998/08/05 11:28:36 gklug
71 * first version: adapted from SMT/FDDI
76 ******************************************************************************/
80 Event queue and dispatcher
82 #if (defined(DEBUG) || ((!defined(LINT)) && (!defined(SK_SLIM))))
83 static const char SysKonnectFileId[] =
84 "$Header: /usr56/projects/ge/schedule/skgehwt.c,v 1.14 2003/05/13 18:01:58 mkarl Exp $" ;
85 #endif
87 #include "h/skdrv1st.h" /* Driver Specific Definitions */
88 #include "h/skdrv2nd.h" /* Adapter Control- and Driver specific Def. */
90 #ifdef __C2MAN__
92 Hardware Timer function queue management.
94 General Description:
97 intro()
99 #endif
102 * Prototypes of local functions.
104 #define SK_HWT_MAX (65000)
106 /* correction factor */
107 #define SK_HWT_FAC (1000 * (SK_U32)pAC->GIni.GIHstClkFact / 100)
110 * Initialize hardware timer.
112 * Must be called during init level 1.
114 void SkHwtInit(
115 SK_AC *pAC, /* Adapters context */
116 SK_IOC Ioc) /* IoContext */
118 pAC->Hwt.TStart = 0 ;
119 pAC->Hwt.TStop = 0 ;
120 pAC->Hwt.TActive = SK_FALSE ;
122 SkHwtStop(pAC,Ioc) ;
127 * Start hardware timer (clock ticks are 16us).
130 void SkHwtStart(
131 SK_AC *pAC, /* Adapters context */
132 SK_IOC Ioc, /* IoContext */
133 SK_U32 Time) /* Time in units of 16us to load the timer with. */
135 SK_U32 Cnt ;
137 if (Time > SK_HWT_MAX)
138 Time = SK_HWT_MAX ;
140 pAC->Hwt.TStart = Time ;
141 pAC->Hwt.TStop = 0L ;
143 Cnt = Time ;
146 * if time < 16 us
147 * time = 16 us
149 if (!Cnt) {
150 Cnt++ ;
153 SK_OUT32(Ioc, B2_TI_INI, Cnt * SK_HWT_FAC) ;
154 SK_OUT16(Ioc, B2_TI_CRTL, TIM_START) ; /* Start timer. */
156 pAC->Hwt.TActive = SK_TRUE ;
160 * Stop hardware timer.
161 * and clear the timer IRQ
163 void SkHwtStop(
164 SK_AC *pAC, /* Adapters context */
165 SK_IOC Ioc) /* IoContext */
167 SK_OUT16(Ioc, B2_TI_CRTL, TIM_STOP) ;
168 SK_OUT16(Ioc, B2_TI_CRTL, TIM_CLR_IRQ) ;
170 pAC->Hwt.TActive = SK_FALSE ;
175 * Stop hardware timer and read time elapsed since last start.
177 * returns
178 * The elapsed time since last start in units of 16us.
181 SK_U32 SkHwtRead(
182 SK_AC *pAC, /* Adapters context */
183 SK_IOC Ioc) /* IoContext */
185 SK_U32 TRead ;
186 SK_U32 IStatus ;
188 if (pAC->Hwt.TActive) {
189 SkHwtStop(pAC,Ioc) ;
191 SK_IN32(Ioc, B2_TI_VAL, &TRead);
192 TRead /= SK_HWT_FAC;
194 SK_IN32(Ioc, B0_ISRC, &IStatus);
196 /* Check if timer expired (or wraparound). */
197 if ((TRead > pAC->Hwt.TStart) || (IStatus & IS_TIMINT)) {
198 SkHwtStop(pAC,Ioc) ;
199 pAC->Hwt.TStop = pAC->Hwt.TStart ;
200 } else {
201 pAC->Hwt.TStop = pAC->Hwt.TStart - TRead ;
204 return (pAC->Hwt.TStop) ;
208 * interrupt source= timer
210 void SkHwtIsr(
211 SK_AC *pAC, /* Adapters context */
212 SK_IOC Ioc) /* IoContext */
214 SkHwtStop(pAC,Ioc);
215 pAC->Hwt.TStop = pAC->Hwt.TStart;
216 SkTimerDone(pAC,Ioc) ;
219 /* End of file */