diff options
author | Anton Altaparmakov <aia21@cantab.net> | 2005-10-31 05:06:46 -0500 |
---|---|---|
committer | Anton Altaparmakov <aia21@cantab.net> | 2005-10-31 05:06:46 -0500 |
commit | 1f04c0a24b2f3cfe89c802a24396263623e3512d (patch) | |
tree | d7e2216b6e65b833c0c2b79b478d13ce17dbf296 /arch/powerpc/sysdev/dcr.S | |
parent | 07b188ab773e183871e57b33ae37bf635c9f12ba (diff) | |
parent | e2f2e58e7968f8446b1078a20a18bf8ea12b4fbc (diff) |
Merge branch 'master' of /usr/src/ntfs-2.6/
Diffstat (limited to 'arch/powerpc/sysdev/dcr.S')
-rw-r--r-- | arch/powerpc/sysdev/dcr.S | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/arch/powerpc/sysdev/dcr.S b/arch/powerpc/sysdev/dcr.S new file mode 100644 index 000000000000..895f10243a43 --- /dev/null +++ b/arch/powerpc/sysdev/dcr.S | |||
@@ -0,0 +1,41 @@ | |||
1 | /* | ||
2 | * arch/ppc/syslib/dcr.S | ||
3 | * | ||
4 | * "Indirect" DCR access | ||
5 | * | ||
6 | * Copyright (c) 2004 Eugene Surovegin <ebs@ebshome.net> | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or modify it | ||
9 | * under the terms of the GNU General Public License as published by the | ||
10 | * Free Software Foundation; either version 2 of the License, or (at your | ||
11 | * option) any later version. | ||
12 | */ | ||
13 | |||
14 | #include <asm/ppc_asm.h> | ||
15 | #include <asm/processor.h> | ||
16 | |||
17 | #define DCR_ACCESS_PROLOG(table) \ | ||
18 | rlwinm r3,r3,4,18,27; \ | ||
19 | lis r5,table@h; \ | ||
20 | ori r5,r5,table@l; \ | ||
21 | add r3,r3,r5; \ | ||
22 | mtctr r3; \ | ||
23 | bctr | ||
24 | |||
25 | _GLOBAL(__mfdcr) | ||
26 | DCR_ACCESS_PROLOG(__mfdcr_table) | ||
27 | |||
28 | _GLOBAL(__mtdcr) | ||
29 | DCR_ACCESS_PROLOG(__mtdcr_table) | ||
30 | |||
31 | __mfdcr_table: | ||
32 | mfdcr r3,0; blr | ||
33 | __mtdcr_table: | ||
34 | mtdcr 0,r4; blr | ||
35 | |||
36 | dcr = 1 | ||
37 | .rept 1023 | ||
38 | mfdcr r3,dcr; blr | ||
39 | mtdcr dcr,r4; blr | ||
40 | dcr = dcr + 1 | ||
41 | .endr | ||