H00762
s 00042/00000/00000
d D 1.1 02/03/13 20:31:05 patch 2 1
cC
cF1
cK33086
cO-rw-rw-r--
e
s 00000/00000/00000
d D 1.0 02/03/13 20:31:05 patch 1 0
c BitKeeper file /home/marcelo/bk/linux-2.4/include/asm-ia64/sn/mmtimer_private.h
cBtorvalds@athlon.transmeta.com|ChangeSet|20020205173056|16047|c1d11a41ed024864
cHplucky.distro.conectiva
cK11332
cPinclude/asm-ia64/sn/mmtimer_private.h
cRf2881a2ad9961165
cV4
cX0x821
cZ-03:00
e
u
U
f e 0
f x 0x821
t
T
I 2
/*
 * Intel Multimedia Timer device interface
 *
 * This file is subject to the terms and conditions of the GNU General Public
 * License.  See the file "COPYING" in the main directory of this archive
 * for more details.
 *
 * Copyright (c) 2001-2002 Silicon Graphics, Inc.  All rights reserved.
 *
 * Helper file for the SN implementation of mmtimers
 *
 * 11/01/01 - jbarnes - initial revision
 */

#ifndef _SN_MMTIMER_PRIVATE_H

#define RTC_BITS 55 /* 55 bits for this implementation */
#define NUM_COMPARATORS 2 /* two comparison registers in SN1 */

/*
 * Check for an interrupt and clear the pending bit if
 * one is waiting.
 */
#define MMTIMER_INT_PENDING(x) (x ? *(RTC_INT_PENDING_B_ADDR) : *(RTC_INT_PENDING_A_ADDR))

/*
 * Set interrupts on RTC 'x' to 'v' (true or false)
 */
#define MMTIMER_SET_INT(x,v) (x ? (*(RTC_INT_ENABLED_B_ADDR) = (unsigned long)(v)) : (*(RTC_INT_ENABLED_A_ADDR) = (unsigned long)(v)))

#define MMTIMER_ENABLE_INT(x) MMTIMER_SET_INT(x, 1)
#define MMTIMER_DISABLE_INT(x) MMTIMER_SET_INT(x, 0)

typedef struct mmtimer {
	spinlock_t timer_lock;
	unsigned long periodic;
	int signo;
	volatile unsigned long *compare;
	struct task_struct *process;
} mmtimer_t;

#endif /* _SN_LINUX_MMTIMER_PRIVATE_H */
E 2
I 1
E 1
