original comment: +Wilson03172004,marked due to this pci host does not support MWI
[linux-2.4.git] / arch / arm / lib / ecard.S
1 /*
2  *  linux/arch/arm/lib/ecard.S
3  *
4  *  Copyright (C) 1995, 1996 Russell King
5  *
6  * This program is free software; you can redistribute it and/or modify
7  * it under the terms of the GNU General Public License version 2 as
8  * published by the Free Software Foundation.
9  */
10 #include <linux/config.h> /* for CONFIG_CPU_nn */
11 #include <linux/linkage.h>
12 #include <asm/assembler.h>
13 #include <asm/hardware.h>
14
15 #ifdef CONFIG_CPU_26
16 #define CPSR2SPSR(rt)
17 #else
18 #define CPSR2SPSR(rt) \
19                 mrs     rt, cpsr; \
20                 msr     spsr, rt
21 #endif
22
23 @ Purpose: call an expansion card loader to read bytes.
24 @ Proto  : char read_loader(int offset, char *card_base, char *loader);
25 @ Returns: byte read
26
27 ENTRY(ecard_loader_read)
28                 stmfd   sp!, {r4 - r12, lr}
29                 mov     r11, r1
30                 mov     r1, r0
31                 CPSR2SPSR(r0)
32                 mov     lr, pc
33                 mov     pc, r2
34                 LOADREGS(fd, sp!, {r4 - r12, pc})
35
36 @ Purpose: call an expansion card loader to reset the card
37 @ Proto  : void read_loader(int card_base, char *loader);
38 @ Returns: byte read
39
40 ENTRY(ecard_loader_reset)
41                 stmfd   sp!, {r4 - r12, lr}
42                 mov     r11, r0
43                 CPSR2SPSR(r0)
44                 mov     lr, pc
45                 add     pc, r1, #8
46                 LOADREGS(fd, sp!, {r4 - r12, pc})
47