diff options
author | Kumar Gala <galak@freescale.com> | 2005-10-26 10:56:10 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-27 06:51:22 -0400 |
commit | 4b24b01c6c0bab24e6a4c3e4a02d53b564f2d05c (patch) | |
tree | 37aebf090a6b48b622c1ee6045e3def62cce26f9 /arch/powerpc/sysdev | |
parent | cffb09ce6ba7706c89c6df9ca8e72c81adda13f0 (diff) |
[PATCH] powerpc: Moved dcr support to arch/powerpc
Signed-off-by: Kumar K. Gala <kumar.gala@freescale.com>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/powerpc/sysdev')
-rw-r--r-- | arch/powerpc/sysdev/Makefile | 2 | ||||
-rw-r--r-- | arch/powerpc/sysdev/dcr.S | 41 |
2 files changed, 43 insertions, 0 deletions
diff --git a/arch/powerpc/sysdev/Makefile b/arch/powerpc/sysdev/Makefile index 97119c0ffc72..d071ae875e25 100644 --- a/arch/powerpc/sysdev/Makefile +++ b/arch/powerpc/sysdev/Makefile | |||
@@ -2,3 +2,5 @@ obj-$(CONFIG_MPIC) += mpic.o | |||
2 | obj-$(CONFIG_PPC_INDIRECT_PCI) += indirect_pci.o | 2 | obj-$(CONFIG_PPC_INDIRECT_PCI) += indirect_pci.o |
3 | obj-$(CONFIG_PPC_I8259) += i8259.o | 3 | obj-$(CONFIG_PPC_I8259) += i8259.o |
4 | obj-$(CONFIG_PPC_MPC106) += grackle.o | 4 | obj-$(CONFIG_PPC_MPC106) += grackle.o |
5 | obj-$(CONFIG_BOOKE) += dcr.o | ||
6 | obj-$(CONFIG_40x) += dcr.o | ||
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 | ||