diff options
author | Paul Mackerras <paulus@samba.org> | 2005-10-26 03:16:38 -0400 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2005-10-26 03:16:38 -0400 |
commit | 830825d6c37a28061c0b6ca538a6411001cf3b2a (patch) | |
tree | 99ead002881c53e0eda644175ba43d4a166fa26e | |
parent | 03501dab035ab7da5e1373f5e130cfd6346d3f21 (diff) |
powerpc: Pull out MPC106 (grackle) initialization code into its own file
This is so that the 32-bit CHRP code can use it. The MPC106
initialization code is now in arch/powerpc/sysdev/grackle.c and
is controlled by CONFIG_PPC_MPC106.
Signed-off-by: Paul Mackerras <paulus@samba.org>
-rw-r--r-- | arch/powerpc/Kconfig | 5 | ||||
-rw-r--r-- | arch/powerpc/platforms/powermac/pci.c | 45 | ||||
-rw-r--r-- | arch/powerpc/sysdev/Makefile | 1 | ||||
-rw-r--r-- | arch/powerpc/sysdev/grackle.c | 64 | ||||
-rw-r--r-- | include/asm-powerpc/grackle.h | 7 |
5 files changed, 78 insertions, 44 deletions
diff --git a/arch/powerpc/Kconfig b/arch/powerpc/Kconfig index ce5100cadd34..964ded4a757f 100644 --- a/arch/powerpc/Kconfig +++ b/arch/powerpc/Kconfig | |||
@@ -286,6 +286,7 @@ config PPC_CHRP | |||
286 | select PPC_I8259 | 286 | select PPC_I8259 |
287 | select PPC_INDIRECT_PCI | 287 | select PPC_INDIRECT_PCI |
288 | select PPC_RTAS | 288 | select PPC_RTAS |
289 | select PPC_MPC106 | ||
289 | default y | 290 | default y |
290 | 291 | ||
291 | config PPC_PMAC | 292 | config PPC_PMAC |
@@ -366,6 +367,10 @@ config IBMVIO | |||
366 | bool | 367 | bool |
367 | default y | 368 | default y |
368 | 369 | ||
370 | config PPC_MPC106 | ||
371 | bool | ||
372 | default n | ||
373 | |||
369 | source "drivers/cpufreq/Kconfig" | 374 | source "drivers/cpufreq/Kconfig" |
370 | 375 | ||
371 | config CPU_FREQ_PMAC | 376 | config CPU_FREQ_PMAC |
diff --git a/arch/powerpc/platforms/powermac/pci.c b/arch/powerpc/platforms/powermac/pci.c index ebe22a2267d2..8f818d092e2b 100644 --- a/arch/powerpc/platforms/powermac/pci.c +++ b/arch/powerpc/platforms/powermac/pci.c | |||
@@ -23,6 +23,7 @@ | |||
23 | #include <asm/pci-bridge.h> | 23 | #include <asm/pci-bridge.h> |
24 | #include <asm/machdep.h> | 24 | #include <asm/machdep.h> |
25 | #include <asm/pmac_feature.h> | 25 | #include <asm/pmac_feature.h> |
26 | #include <asm/grackle.h> | ||
26 | #ifdef CONFIG_PPC64 | 27 | #ifdef CONFIG_PPC64 |
27 | #include <asm/iommu.h> | 28 | #include <asm/iommu.h> |
28 | #include <asm/ppc-pci.h> | 29 | #include <asm/ppc-pci.h> |
@@ -584,50 +585,6 @@ static void __init fixup_nec_usb2(void) | |||
584 | } | 585 | } |
585 | } | 586 | } |
586 | 587 | ||
587 | #define GRACKLE_CFA(b, d, o) (0x80 | ((b) << 8) | ((d) << 16) \ | ||
588 | | (((o) & ~3) << 24)) | ||
589 | |||
590 | #define GRACKLE_PICR1_STG 0x00000040 | ||
591 | #define GRACKLE_PICR1_LOOPSNOOP 0x00000010 | ||
592 | |||
593 | /* N.B. this is called before bridges is initialized, so we can't | ||
594 | use grackle_pcibios_{read,write}_config_dword. */ | ||
595 | static inline void grackle_set_stg(struct pci_controller* bp, int enable) | ||
596 | { | ||
597 | unsigned int val; | ||
598 | |||
599 | out_be32(bp->cfg_addr, GRACKLE_CFA(0, 0, 0xa8)); | ||
600 | val = in_le32(bp->cfg_data); | ||
601 | val = enable? (val | GRACKLE_PICR1_STG) : | ||
602 | (val & ~GRACKLE_PICR1_STG); | ||
603 | out_be32(bp->cfg_addr, GRACKLE_CFA(0, 0, 0xa8)); | ||
604 | out_le32(bp->cfg_data, val); | ||
605 | (void)in_le32(bp->cfg_data); | ||
606 | } | ||
607 | |||
608 | static inline void grackle_set_loop_snoop(struct pci_controller *bp, int enable) | ||
609 | { | ||
610 | unsigned int val; | ||
611 | |||
612 | out_be32(bp->cfg_addr, GRACKLE_CFA(0, 0, 0xa8)); | ||
613 | val = in_le32(bp->cfg_data); | ||
614 | val = enable? (val | GRACKLE_PICR1_LOOPSNOOP) : | ||
615 | (val & ~GRACKLE_PICR1_LOOPSNOOP); | ||
616 | out_be32(bp->cfg_addr, GRACKLE_CFA(0, 0, 0xa8)); | ||
617 | out_le32(bp->cfg_data, val); | ||
618 | (void)in_le32(bp->cfg_data); | ||
619 | } | ||
620 | |||
621 | void __init setup_grackle(struct pci_controller *hose) | ||
622 | { | ||
623 | setup_indirect_pci(hose, 0xfec00000, 0xfee00000); | ||
624 | if (machine_is_compatible("AAPL,PowerBook1998")) | ||
625 | grackle_set_loop_snoop(hose, 1); | ||
626 | #if 0 /* Disabled for now, HW problems ??? */ | ||
627 | grackle_set_stg(hose, 1); | ||
628 | #endif | ||
629 | } | ||
630 | |||
631 | static void __init setup_bandit(struct pci_controller *hose, | 588 | static void __init setup_bandit(struct pci_controller *hose, |
632 | struct reg_property *addr) | 589 | struct reg_property *addr) |
633 | { | 590 | { |
diff --git a/arch/powerpc/sysdev/Makefile b/arch/powerpc/sysdev/Makefile index f3c9e61c3910..97119c0ffc72 100644 --- a/arch/powerpc/sysdev/Makefile +++ b/arch/powerpc/sysdev/Makefile | |||
@@ -1,3 +1,4 @@ | |||
1 | obj-$(CONFIG_MPIC) += mpic.o | 1 | 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 | ||
diff --git a/arch/powerpc/sysdev/grackle.c b/arch/powerpc/sysdev/grackle.c new file mode 100644 index 000000000000..b6ec793a23be --- /dev/null +++ b/arch/powerpc/sysdev/grackle.c | |||
@@ -0,0 +1,64 @@ | |||
1 | /* | ||
2 | * Functions for setting up and using a MPC106 northbridge | ||
3 | * Extracted from arch/powerpc/platforms/powermac/pci.c. | ||
4 | * | ||
5 | * Copyright (C) 2003 Benjamin Herrenschmuidt (benh@kernel.crashing.org) | ||
6 | * Copyright (C) 1997 Paul Mackerras (paulus@samba.org) | ||
7 | * | ||
8 | * This program is free software; you can redistribute it and/or | ||
9 | * modify it under the terms of the GNU General Public License | ||
10 | * as published by the Free Software Foundation; either version | ||
11 | * 2 of the License, or (at your option) any later version. | ||
12 | */ | ||
13 | #include <linux/kernel.h> | ||
14 | #include <linux/pci.h> | ||
15 | #include <linux/init.h> | ||
16 | |||
17 | #include <asm/io.h> | ||
18 | #include <asm/prom.h> | ||
19 | #include <asm/pci-bridge.h> | ||
20 | #include <asm/grackle.h> | ||
21 | |||
22 | #define GRACKLE_CFA(b, d, o) (0x80 | ((b) << 8) | ((d) << 16) \ | ||
23 | | (((o) & ~3) << 24)) | ||
24 | |||
25 | #define GRACKLE_PICR1_STG 0x00000040 | ||
26 | #define GRACKLE_PICR1_LOOPSNOOP 0x00000010 | ||
27 | |||
28 | /* N.B. this is called before bridges is initialized, so we can't | ||
29 | use grackle_pcibios_{read,write}_config_dword. */ | ||
30 | static inline void grackle_set_stg(struct pci_controller* bp, int enable) | ||
31 | { | ||
32 | unsigned int val; | ||
33 | |||
34 | out_be32(bp->cfg_addr, GRACKLE_CFA(0, 0, 0xa8)); | ||
35 | val = in_le32(bp->cfg_data); | ||
36 | val = enable? (val | GRACKLE_PICR1_STG) : | ||
37 | (val & ~GRACKLE_PICR1_STG); | ||
38 | out_be32(bp->cfg_addr, GRACKLE_CFA(0, 0, 0xa8)); | ||
39 | out_le32(bp->cfg_data, val); | ||
40 | (void)in_le32(bp->cfg_data); | ||
41 | } | ||
42 | |||
43 | static inline void grackle_set_loop_snoop(struct pci_controller *bp, int enable) | ||
44 | { | ||
45 | unsigned int val; | ||
46 | |||
47 | out_be32(bp->cfg_addr, GRACKLE_CFA(0, 0, 0xa8)); | ||
48 | val = in_le32(bp->cfg_data); | ||
49 | val = enable? (val | GRACKLE_PICR1_LOOPSNOOP) : | ||
50 | (val & ~GRACKLE_PICR1_LOOPSNOOP); | ||
51 | out_be32(bp->cfg_addr, GRACKLE_CFA(0, 0, 0xa8)); | ||
52 | out_le32(bp->cfg_data, val); | ||
53 | (void)in_le32(bp->cfg_data); | ||
54 | } | ||
55 | |||
56 | void __init setup_grackle(struct pci_controller *hose) | ||
57 | { | ||
58 | setup_indirect_pci(hose, 0xfec00000, 0xfee00000); | ||
59 | if (machine_is_compatible("AAPL,PowerBook1998")) | ||
60 | grackle_set_loop_snoop(hose, 1); | ||
61 | #if 0 /* Disabled for now, HW problems ??? */ | ||
62 | grackle_set_stg(hose, 1); | ||
63 | #endif | ||
64 | } | ||
diff --git a/include/asm-powerpc/grackle.h b/include/asm-powerpc/grackle.h new file mode 100644 index 000000000000..563c7a5e64c9 --- /dev/null +++ b/include/asm-powerpc/grackle.h | |||
@@ -0,0 +1,7 @@ | |||
1 | /* | ||
2 | * Functions for setting up and using a MPC106 northbridge | ||
3 | */ | ||
4 | |||
5 | #include <asm/pci-bridge.h> | ||
6 | |||
7 | extern void setup_grackle(struct pci_controller *hose); | ||