blob: 1ec6323a1507a5b791c571db383e3f67641d33df [file] [log] [blame]
Ralf Baechle334955e2011-06-01 19:04:57 +01001/*
2 * This file is subject to the terms and conditions of the GNU General Public
3 * License. See the file "COPYING" in the main directory of this archive
4 * for more details.
Ralf Baechlecb2455a2011-06-01 19:04:58 +01005 *
6 * Machine specific IO port address definition for generic.
7 * Written by Osamu Tomita <tomita@cinet.co.jp>
Ralf Baechle334955e2011-06-01 19:04:57 +01008 */
9#ifndef __LINUX_I8253_H
10#define __LINUX_I8253_H
11
Ralf Baechle49cf3f22011-06-01 19:05:07 +010012#include <linux/param.h>
Ralf Baechlecb2455a2011-06-01 19:04:58 +010013#include <linux/spinlock.h>
Ralf Baechle49cf3f22011-06-01 19:05:07 +010014#include <linux/timex.h>
Ralf Baechle334955e2011-06-01 19:04:57 +010015#include <asm/i8253.h>
16
Ralf Baechlecb2455a2011-06-01 19:04:58 +010017/* i8253A PIT registers */
18#define PIT_MODE 0x43
19#define PIT_CH0 0x40
20#define PIT_CH2 0x42
21
Ralf Baechle49cf3f22011-06-01 19:05:07 +010022#define PIT_LATCH ((PIT_TICK_RATE + HZ/2) / HZ)
23
Ralf Baechlecb2455a2011-06-01 19:04:58 +010024#define inb_pit inb_p
25#define outb_pit outb_p
26
27extern raw_spinlock_t i8253_lock;
28
Ralf Baechle334955e2011-06-01 19:04:57 +010029#endif /* __LINUX_I8253_H */