blob: e3183b1de2ec9315de112a722e3920ced8f1a1b9 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
|
/*
* include/asm-mips/vector.h
*
* 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) 1995, 1996, 1997 by Ralf Baechle
*/
#ifndef __ASM_MIPS_VECTOR_H
#define __ASM_MIPS_VECTOR_H
/*
* These vector structures are not very good to maintain - they'd probably
* grow to at leat three times the size - so I'll remove 'em and replace
* the with lots of ordinary variables.
*/
extern void (*irq_setup)(void);
extern asmlinkage void (*fd_cacheflush)(const void *addr, size_t size);
/*
* This structure defines how to access various features of
* different machine types and how to access them.
*/
struct feature {
/*
* How to access the floppy controller's ports.
*/
unsigned char (*fd_inb)(unsigned int port);
void (*fd_outb)(unsigned char value, unsigned int port);
/*
* How to access the floppy DMA functions.
*/
void (*fd_enable_dma)(void);
void (*fd_disable_dma)(void);
int (*fd_request_dma)(void);
void (*fd_free_dma)(void);
void (*fd_clear_dma_ff)(void);
void (*fd_set_dma_mode)(char mode);
void (*fd_set_dma_addr)(unsigned int a);
void (*fd_set_dma_count)(unsigned int count);
int (*fd_get_dma_residue)(void);
void (*fd_enable_irq)(void);
void (*fd_disable_irq)(void);
/*
* How to access the RTC register of the DS1287?
*/
unsigned char (*rtc_read_data)(unsigned long addr);
void (*rtc_write_data)(unsigned char data, unsigned long addr);
};
extern struct feature *feature;
#endif /* __ASM_MIPS_VECTOR_H */
|