You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
20 lines
382 B
20 lines
382 B
18 years ago
|
/*
|
||
|
* Machine specific IO port address definition for generic.
|
||
|
* Written by Osamu Tomita <tomita@cinet.co.jp>
|
||
|
*/
|
||
17 years ago
|
#ifndef __ASM_I8253_H
|
||
|
#define __ASM_I8253_H
|
||
18 years ago
|
|
||
17 years ago
|
#include <linux/spinlock.h>
|
||
|
|
||
18 years ago
|
/* i8253A PIT registers */
|
||
|
#define PIT_MODE 0x43
|
||
|
#define PIT_CH0 0x40
|
||
|
#define PIT_CH2 0x42
|
||
|
|
||
17 years ago
|
extern spinlock_t i8253_lock;
|
||
|
|
||
18 years ago
|
extern void setup_pit_timer(void);
|
||
|
|
||
17 years ago
|
#endif /* __ASM_I8253_H */
|