diff options
author | Adrian Bunk <bunk@stusta.de> | 2007-01-14 04:15:00 -0500 |
---|---|---|
committer | Paul Mackerras <paulus@samba.org> | 2007-01-24 05:13:58 -0500 |
commit | c53653130f2868e44c6e8346d110d27d39e7d07b (patch) | |
tree | 291a9d53bf37c814af3724a6e026e899f6c814ad /arch/ppc/platforms | |
parent | cfcd1705b61ecce1ab102b9593cf733fef314a19 (diff) |
[POWERPC] Remove the broken Gemini support
Signed-off-by: Adrian Bunk <bunk@stusta.de>
Signed-off-by: Paul Mackerras <paulus@samba.org>
Diffstat (limited to 'arch/ppc/platforms')
-rw-r--r-- | arch/ppc/platforms/Makefile | 1 | ||||
-rw-r--r-- | arch/ppc/platforms/gemini.h | 165 | ||||
-rw-r--r-- | arch/ppc/platforms/gemini_pci.c | 41 | ||||
-rw-r--r-- | arch/ppc/platforms/gemini_prom.S | 90 | ||||
-rw-r--r-- | arch/ppc/platforms/gemini_serial.h | 40 | ||||
-rw-r--r-- | arch/ppc/platforms/gemini_setup.c | 577 |
6 files changed, 0 insertions, 914 deletions
diff --git a/arch/ppc/platforms/Makefile b/arch/ppc/platforms/Makefile index 90c622294423..e17fad470621 100644 --- a/arch/ppc/platforms/Makefile +++ b/arch/ppc/platforms/Makefile | |||
@@ -13,7 +13,6 @@ obj-$(CONFIG_TQM8260) += tqm8260_setup.o | |||
13 | obj-$(CONFIG_CPCI690) += cpci690.o | 13 | obj-$(CONFIG_CPCI690) += cpci690.o |
14 | obj-$(CONFIG_EV64260) += ev64260.o | 14 | obj-$(CONFIG_EV64260) += ev64260.o |
15 | obj-$(CONFIG_CHESTNUT) += chestnut.o | 15 | obj-$(CONFIG_CHESTNUT) += chestnut.o |
16 | obj-$(CONFIG_GEMINI) += gemini_pci.o gemini_setup.o gemini_prom.o | ||
17 | obj-$(CONFIG_LOPEC) += lopec.o | 16 | obj-$(CONFIG_LOPEC) += lopec.o |
18 | obj-$(CONFIG_KATANA) += katana.o | 17 | obj-$(CONFIG_KATANA) += katana.o |
19 | obj-$(CONFIG_HDPU) += hdpu.o | 18 | obj-$(CONFIG_HDPU) += hdpu.o |
diff --git a/arch/ppc/platforms/gemini.h b/arch/ppc/platforms/gemini.h deleted file mode 100644 index 5528fd0a1216..000000000000 --- a/arch/ppc/platforms/gemini.h +++ /dev/null | |||
@@ -1,165 +0,0 @@ | |||
1 | /* | ||
2 | * Onboard registers and descriptions for Synergy Microsystems' | ||
3 | * "Gemini" boards. | ||
4 | * | ||
5 | */ | ||
6 | #ifdef __KERNEL__ | ||
7 | #ifndef __PPC_GEMINI_H | ||
8 | #define __PPC_GEMINI_H | ||
9 | |||
10 | /* Registers */ | ||
11 | |||
12 | #define GEMINI_SERIAL_B (0xffeffb00) | ||
13 | #define GEMINI_SERIAL_A (0xffeffb08) | ||
14 | #define GEMINI_USWITCH (0xffeffd00) | ||
15 | #define GEMINI_BREV (0xffeffe00) | ||
16 | #define GEMINI_BECO (0xffeffe08) | ||
17 | #define GEMINI_FEAT (0xffeffe10) | ||
18 | #define GEMINI_BSTAT (0xffeffe18) | ||
19 | #define GEMINI_CPUSTAT (0xffeffe20) | ||
20 | #define GEMINI_L2CFG (0xffeffe30) | ||
21 | #define GEMINI_MEMCFG (0xffeffe38) | ||
22 | #define GEMINI_FLROM (0xffeffe40) | ||
23 | #define GEMINI_P0PCI (0xffeffe48) | ||
24 | #define GEMINI_FLWIN (0xffeffe50) | ||
25 | #define GEMINI_P0INTMASK (0xffeffe60) | ||
26 | #define GEMINI_P0INTAP (0xffeffe68) | ||
27 | #define GEMINI_PCIERR (0xffeffe70) | ||
28 | #define GEMINI_LEDBASE (0xffeffe80) | ||
29 | #define GEMINI_RTC (0xffe9fff8) | ||
30 | #define GEMINI_LEDS 8 | ||
31 | #define GEMINI_SWITCHES 8 | ||
32 | |||
33 | |||
34 | /* Flash ROM bit definitions */ | ||
35 | #define GEMINI_FLS_WEN (1<<0) | ||
36 | #define GEMINI_FLS_JMP (1<<6) | ||
37 | #define GEMINI_FLS_BOOT (1<<7) | ||
38 | |||
39 | /* Memory bit definitions */ | ||
40 | #define GEMINI_MEM_TYPE_MASK 0xc0 | ||
41 | #define GEMINI_MEM_SIZE_MASK 0x38 | ||
42 | #define GEMINI_MEM_BANK_MASK 0x07 | ||
43 | |||
44 | /* L2 cache bit definitions */ | ||
45 | #define GEMINI_L2_SIZE_MASK 0xc0 | ||
46 | #define GEMINI_L2_RATIO_MASK 0x03 | ||
47 | |||
48 | /* Timebase register bit definitons */ | ||
49 | #define GEMINI_TIMEB0_EN (1<<0) | ||
50 | #define GEMINI_TIMEB1_EN (1<<1) | ||
51 | #define GEMINI_TIMEB2_EN (1<<2) | ||
52 | #define GEMINI_TIMEB3_EN (1<<3) | ||
53 | |||
54 | /* CPU status bit definitions */ | ||
55 | #define GEMINI_CPU_ID_MASK 0x03 | ||
56 | #define GEMINI_CPU_COUNT_MASK 0x0c | ||
57 | #define GEMINI_CPU0_HALTED (1<<4) | ||
58 | #define GEMINI_CPU1_HALTED (1<<5) | ||
59 | #define GEMINI_CPU2_HALTED (1<<6) | ||
60 | #define GEMINI_CPU3_HALTED (1<<7) | ||
61 | |||
62 | /* Board status bit definitions */ | ||
63 | #define GEMINI_BRD_FAIL (1<<0) /* FAIL led is lit */ | ||
64 | #define GEMINI_BRD_BUS_MASK 0x0c /* PowerPC bus speed */ | ||
65 | |||
66 | /* Board family/feature bit descriptions */ | ||
67 | #define GEMINI_FEAT_HAS_FLASH (1<<0) | ||
68 | #define GEMINI_FEAT_HAS_ETH (1<<1) | ||
69 | #define GEMINI_FEAT_HAS_SCSI (1<<2) | ||
70 | #define GEMINI_FEAT_HAS_P0 (1<<3) | ||
71 | #define GEMINI_FEAT_FAM_MASK 0xf0 | ||
72 | |||
73 | /* Mod/ECO bit definitions */ | ||
74 | #define GEMINI_ECO_LEVEL_MASK 0x0f | ||
75 | #define GEMINI_MOD_MASK 0xf0 | ||
76 | |||
77 | /* Type/revision bit definitions */ | ||
78 | #define GEMINI_REV_MASK 0x0f | ||
79 | #define GEMINI_TYPE_MASK 0xf0 | ||
80 | |||
81 | /* User switch definitions */ | ||
82 | #define GEMINI_SWITCH_VERBOSE 1 /* adds "debug" to boot cmd line */ | ||
83 | #define GEMINI_SWITCH_SINGLE_USER 7 /* boots into "single-user" mode */ | ||
84 | |||
85 | #define SGS_RTC_CONTROL 0 | ||
86 | #define SGS_RTC_SECONDS 1 | ||
87 | #define SGS_RTC_MINUTES 2 | ||
88 | #define SGS_RTC_HOURS 3 | ||
89 | #define SGS_RTC_DAY 4 | ||
90 | #define SGS_RTC_DAY_OF_MONTH 5 | ||
91 | #define SGS_RTC_MONTH 6 | ||
92 | #define SGS_RTC_YEAR 7 | ||
93 | |||
94 | #define SGS_RTC_SET 0x80 | ||
95 | #define SGS_RTC_IS_STOPPED 0x80 | ||
96 | |||
97 | #define GRACKLE_CONFIG_ADDR_ADDR (0xfec00000) | ||
98 | #define GRACKLE_CONFIG_DATA_ADDR (0xfee00000) | ||
99 | |||
100 | #define GEMINI_BOOT_INIT (0xfff00100) | ||
101 | |||
102 | #ifndef __ASSEMBLY__ | ||
103 | |||
104 | static inline void grackle_write( unsigned long addr, unsigned long data ) | ||
105 | { | ||
106 | __asm__ __volatile__( | ||
107 | " stwbrx %1, 0, %0\n \ | ||
108 | sync\n \ | ||
109 | stwbrx %3, 0, %2\n \ | ||
110 | sync " | ||
111 | : /* no output */ | ||
112 | : "r" (GRACKLE_CONFIG_ADDR_ADDR), "r" (addr), | ||
113 | "r" (GRACKLE_CONFIG_DATA_ADDR), "r" (data)); | ||
114 | } | ||
115 | |||
116 | static inline unsigned long grackle_read( unsigned long addr ) | ||
117 | { | ||
118 | unsigned long val; | ||
119 | |||
120 | __asm__ __volatile__( | ||
121 | " stwbrx %1, 0, %2\n \ | ||
122 | sync\n \ | ||
123 | lwbrx %0, 0, %3\n \ | ||
124 | sync " | ||
125 | : "=r" (val) | ||
126 | : "r" (addr), "r" (GRACKLE_CONFIG_ADDR_ADDR), | ||
127 | "r" (GRACKLE_CONFIG_DATA_ADDR)); | ||
128 | |||
129 | return val; | ||
130 | } | ||
131 | |||
132 | static inline void gemini_led_on( int led ) | ||
133 | { | ||
134 | if (led >= 0 && led < GEMINI_LEDS) | ||
135 | *(unsigned char *)(GEMINI_LEDBASE + (led<<3)) = 1; | ||
136 | } | ||
137 | |||
138 | static inline void gemini_led_off(int led) | ||
139 | { | ||
140 | if (led >= 0 && led < GEMINI_LEDS) | ||
141 | *(unsigned char *)(GEMINI_LEDBASE + (led<<3)) = 0; | ||
142 | } | ||
143 | |||
144 | static inline int gemini_led_val(int led) | ||
145 | { | ||
146 | int val = 0; | ||
147 | if (led >= 0 && led < GEMINI_LEDS) | ||
148 | val = *(unsigned char *)(GEMINI_LEDBASE + (led<<3)); | ||
149 | return (val & 0x1); | ||
150 | } | ||
151 | |||
152 | /* returns processor id from the board */ | ||
153 | static inline int gemini_processor(void) | ||
154 | { | ||
155 | unsigned char cpu = *(unsigned char *)(GEMINI_CPUSTAT); | ||
156 | return (int) ((cpu == 0) ? 4 : (cpu & GEMINI_CPU_ID_MASK)); | ||
157 | } | ||
158 | |||
159 | |||
160 | extern void _gemini_reboot(void); | ||
161 | extern void gemini_prom_init(void); | ||
162 | extern void gemini_init_l2(void); | ||
163 | #endif /* __ASSEMBLY__ */ | ||
164 | #endif | ||
165 | #endif /* __KERNEL__ */ | ||
diff --git a/arch/ppc/platforms/gemini_pci.c b/arch/ppc/platforms/gemini_pci.c deleted file mode 100644 index 95656091ba2b..000000000000 --- a/arch/ppc/platforms/gemini_pci.c +++ /dev/null | |||
@@ -1,41 +0,0 @@ | |||
1 | #include <linux/kernel.h> | ||
2 | #include <linux/init.h> | ||
3 | #include <linux/pci.h> | ||
4 | #include <linux/slab.h> | ||
5 | |||
6 | #include <asm/machdep.h> | ||
7 | #include <platforms/gemini.h> | ||
8 | #include <asm/byteorder.h> | ||
9 | #include <asm/io.h> | ||
10 | #include <asm/uaccess.h> | ||
11 | #include <asm/pci-bridge.h> | ||
12 | |||
13 | void __init gemini_pcibios_fixup(void) | ||
14 | { | ||
15 | int i; | ||
16 | struct pci_dev *dev = NULL; | ||
17 | |||
18 | for_each_pci_dev(dev) { | ||
19 | for(i = 0; i < 6; i++) { | ||
20 | if (dev->resource[i].flags & IORESOURCE_IO) { | ||
21 | dev->resource[i].start |= (0xfe << 24); | ||
22 | dev->resource[i].end |= (0xfe << 24); | ||
23 | } | ||
24 | } | ||
25 | } | ||
26 | } | ||
27 | |||
28 | |||
29 | /* The "bootloader" for Synergy boards does none of this for us, so we need to | ||
30 | lay it all out ourselves... --Dan */ | ||
31 | void __init gemini_find_bridges(void) | ||
32 | { | ||
33 | struct pci_controller* hose; | ||
34 | |||
35 | ppc_md.pcibios_fixup = gemini_pcibios_fixup; | ||
36 | |||
37 | hose = pcibios_alloc_controller(); | ||
38 | if (!hose) | ||
39 | return; | ||
40 | setup_indirect_pci(hose, 0xfec00000, 0xfee00000); | ||
41 | } | ||
diff --git a/arch/ppc/platforms/gemini_prom.S b/arch/ppc/platforms/gemini_prom.S deleted file mode 100644 index e8c84d24f01f..000000000000 --- a/arch/ppc/platforms/gemini_prom.S +++ /dev/null | |||
@@ -1,90 +0,0 @@ | |||
1 | /* | ||
2 | * Not really prom support code (yet), but sort of anti-prom code. The current | ||
3 | * bootloader does a number of things it shouldn't and doesn't do things that it | ||
4 | * should. The stuff in here is mainly a hodge-podge collection of setup code | ||
5 | * to get the board up and running. | ||
6 | * ---Dan | ||
7 | */ | ||
8 | |||
9 | #include <asm/reg.h> | ||
10 | #include <asm/page.h> | ||
11 | #include <platforms/gemini.h> | ||
12 | #include <asm/ppc_asm.h> | ||
13 | |||
14 | /* | ||
15 | * On 750's the MMU is on when Linux is booted, so we need to clear out the | ||
16 | * bootloader's BAT settings, make sure we're in supervisor state (gotcha!), | ||
17 | * and turn off the MMU. | ||
18 | * | ||
19 | */ | ||
20 | |||
21 | _GLOBAL(gemini_prom_init) | ||
22 | #ifdef CONFIG_SMP | ||
23 | /* Since the MMU's on, get stuff in rom space that we'll need */ | ||
24 | lis r4,GEMINI_CPUSTAT@h | ||
25 | ori r4,r4,GEMINI_CPUSTAT@l | ||
26 | lbz r5,0(r4) | ||
27 | andi. r5,r5,3 | ||
28 | mr r24,r5 /* cpu # used later on */ | ||
29 | #endif | ||
30 | mfmsr r4 | ||
31 | li r3,MSR_PR /* ensure supervisor! */ | ||
32 | ori r3,r3,MSR_IR|MSR_DR | ||
33 | andc r4,r4,r3 | ||
34 | mtmsr r4 | ||
35 | isync | ||
36 | #if 0 | ||
37 | /* zero out the bats now that the MMU is off */ | ||
38 | prom_no_mmu: | ||
39 | li r3,0 | ||
40 | mtspr SPRN_IBAT0U,r3 | ||
41 | mtspr SPRN_IBAT0L,r3 | ||
42 | mtspr SPRN_IBAT1U,r3 | ||
43 | mtspr SPRN_IBAT1L,r3 | ||
44 | mtspr SPRN_IBAT2U,r3 | ||
45 | mtspr SPRN_IBAT2L,r3 | ||
46 | mtspr SPRN_IBAT3U,r3 | ||
47 | mtspr SPRN_IBAT3L,r3 | ||
48 | |||
49 | mtspr SPRN_DBAT0U,r3 | ||
50 | mtspr SPRN_DBAT0L,r3 | ||
51 | mtspr SPRN_DBAT1U,r3 | ||
52 | mtspr SPRN_DBAT1L,r3 | ||
53 | mtspr SPRN_DBAT2U,r3 | ||
54 | mtspr SPRN_DBAT2L,r3 | ||
55 | mtspr SPRN_DBAT3U,r3 | ||
56 | mtspr SPRN_DBAT3L,r3 | ||
57 | #endif | ||
58 | |||
59 | /* the bootloader (as far as I'm currently aware) doesn't mess with page | ||
60 | tables, but since we're already here, might as well zap these, too */ | ||
61 | li r4,0 | ||
62 | mtspr SPRN_SDR1,r4 | ||
63 | |||
64 | li r4,16 | ||
65 | mtctr r4 | ||
66 | li r3,0 | ||
67 | li r4,0 | ||
68 | 3: mtsrin r3,r4 | ||
69 | addi r3,r3,1 | ||
70 | bdnz 3b | ||
71 | |||
72 | #ifdef CONFIG_SMP | ||
73 | /* The 750 book (and Mot/IBM support) says that this will "assist" snooping | ||
74 | when in SMP. Not sure yet whether this should stay or leave... */ | ||
75 | mfspr r4,SPRN_HID0 | ||
76 | ori r4,r4,HID0_ABE | ||
77 | mtspr SPRN_HID0,r4 | ||
78 | sync | ||
79 | #endif /* CONFIG_SMP */ | ||
80 | blr | ||
81 | |||
82 | /* apparently, SMon doesn't pay attention to HID0[SRST]. Disable the MMU and | ||
83 | branch to 0xfff00100 */ | ||
84 | _GLOBAL(_gemini_reboot) | ||
85 | lis r5,GEMINI_BOOT_INIT@h | ||
86 | ori r5,r5,GEMINI_BOOT_INIT@l | ||
87 | li r6,MSR_IP | ||
88 | mtspr SPRN_SRR0,r5 | ||
89 | mtspr SPRN_SRR1,r6 | ||
90 | rfi | ||
diff --git a/arch/ppc/platforms/gemini_serial.h b/arch/ppc/platforms/gemini_serial.h deleted file mode 100644 index b915eff79fdb..000000000000 --- a/arch/ppc/platforms/gemini_serial.h +++ /dev/null | |||
@@ -1,40 +0,0 @@ | |||
1 | #ifdef __KERNEL__ | ||
2 | #ifndef __ASMPPC_GEMINI_SERIAL_H | ||
3 | #define __ASMPPC_GEMINI_SERIAL_H | ||
4 | |||
5 | #include <platforms/gemini.h> | ||
6 | |||
7 | #ifdef CONFIG_SERIAL_MANY_PORTS | ||
8 | #define RS_TABLE_SIZE 64 | ||
9 | #else | ||
10 | #define RS_TABLE_SIZE 4 | ||
11 | #endif | ||
12 | |||
13 | /* Rate for the 24.576 Mhz clock for the onboard serial chip */ | ||
14 | #define BASE_BAUD (24576000 / 16) | ||
15 | |||
16 | #ifdef CONFIG_SERIAL_DETECT_IRQ | ||
17 | #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF|ASYNC_SKIP_TEST|ASYNC_AUTO_IRQ) | ||
18 | #define STD_COM4_FLAGS (ASYNC_BOOT_AUTOCONF|ASYNC_AUTO_IRQ) | ||
19 | #else | ||
20 | #define STD_COM_FLAGS (ASYNC_BOOT_AUTOCONF|ASYNC_SKIP_TEST) | ||
21 | #define STD_COM4_FLAGS (ASYNC_BOOT_AUTOCONF) | ||
22 | #endif | ||
23 | |||
24 | #define STD_SERIAL_PORT_DEFNS \ | ||
25 | { 0, BASE_BAUD, GEMINI_SERIAL_A, 15, STD_COM_FLAGS }, /* ttyS0 */ \ | ||
26 | { 0, BASE_BAUD, GEMINI_SERIAL_B, 14, STD_COM_FLAGS }, /* ttyS1 */ \ | ||
27 | |||
28 | #ifdef CONFIG_GEMINI_PU32 | ||
29 | #define PU32_SERIAL_PORT_DEFNS \ | ||
30 | { 0, BASE_BAUD, NULL, 0, STD_COM_FLAGS }, | ||
31 | #else | ||
32 | #define PU32_SERIAL_PORT_DEFNS | ||
33 | #endif | ||
34 | |||
35 | #define SERIAL_PORT_DFNS \ | ||
36 | STD_SERIAL_PORT_DEFNS \ | ||
37 | PU32_SERIAL_PORT_DEFNS | ||
38 | |||
39 | #endif | ||
40 | #endif /* __KERNEL__ */ | ||
diff --git a/arch/ppc/platforms/gemini_setup.c b/arch/ppc/platforms/gemini_setup.c deleted file mode 100644 index f48048f362a8..000000000000 --- a/arch/ppc/platforms/gemini_setup.c +++ /dev/null | |||
@@ -1,577 +0,0 @@ | |||
1 | /* | ||
2 | * Copyright (C) 1995 Linus Torvalds | ||
3 | * Adapted from 'alpha' version by Gary Thomas | ||
4 | * Modified by Cort Dougan (cort@cs.nmt.edu) | ||
5 | * Synergy Microsystems board support by Dan Cox (dan@synergymicro.com) | ||
6 | * | ||
7 | */ | ||
8 | |||
9 | #include <linux/stddef.h> | ||
10 | #include <linux/kernel.h> | ||
11 | #include <linux/init.h> | ||
12 | #include <linux/errno.h> | ||
13 | #include <linux/reboot.h> | ||
14 | #include <linux/pci.h> | ||
15 | #include <linux/time.h> | ||
16 | #include <linux/kdev_t.h> | ||
17 | #include <linux/types.h> | ||
18 | #include <linux/major.h> | ||
19 | #include <linux/initrd.h> | ||
20 | #include <linux/console.h> | ||
21 | #include <linux/seq_file.h> | ||
22 | #include <linux/root_dev.h> | ||
23 | #include <linux/bcd.h> | ||
24 | |||
25 | #include <asm/system.h> | ||
26 | #include <asm/pgtable.h> | ||
27 | #include <asm/page.h> | ||
28 | #include <asm/dma.h> | ||
29 | #include <asm/io.h> | ||
30 | #include <asm/m48t35.h> | ||
31 | #include <platforms/gemini.h> | ||
32 | #include <asm/time.h> | ||
33 | #include <asm/open_pic.h> | ||
34 | #include <asm/bootinfo.h> | ||
35 | #include <asm/machdep.h> | ||
36 | |||
37 | void gemini_find_bridges(void); | ||
38 | static int gemini_get_clock_speed(void); | ||
39 | extern void gemini_pcibios_fixup(void); | ||
40 | |||
41 | static char *gemini_board_families[] = { | ||
42 | "VGM", "VSS", "KGM", "VGR", "VCM", "VCS", "KCM", "VCR" | ||
43 | }; | ||
44 | static int gemini_board_count = sizeof(gemini_board_families) / | ||
45 | sizeof(gemini_board_families[0]); | ||
46 | |||
47 | static unsigned int cpu_7xx[16] = { | ||
48 | 0, 15, 14, 0, 0, 13, 5, 9, 6, 11, 8, 10, 16, 12, 7, 0 | ||
49 | }; | ||
50 | static unsigned int cpu_6xx[16] = { | ||
51 | 0, 0, 14, 0, 0, 13, 5, 9, 6, 11, 8, 10, 0, 12, 7, 0 | ||
52 | }; | ||
53 | |||
54 | /* | ||
55 | * prom_init is the Gemini version of prom.c:prom_init. We only need | ||
56 | * the BSS clearing code, so I copied that out of prom.c. This is a | ||
57 | * lot simpler than hacking prom.c so it will build with Gemini. -VAL | ||
58 | */ | ||
59 | |||
60 | #define PTRRELOC(x) ((typeof(x))((unsigned long)(x) + offset)) | ||
61 | |||
62 | unsigned long | ||
63 | prom_init(void) | ||
64 | { | ||
65 | unsigned long offset = reloc_offset(); | ||
66 | unsigned long phys; | ||
67 | extern char __bss_start, _end; | ||
68 | |||
69 | /* First zero the BSS -- use memset, some arches don't have | ||
70 | * caches on yet */ | ||
71 | memset_io(PTRRELOC(&__bss_start),0 , &_end - &__bss_start); | ||
72 | |||
73 | /* Default */ | ||
74 | phys = offset + KERNELBASE; | ||
75 | |||
76 | gemini_prom_init(); | ||
77 | |||
78 | return phys; | ||
79 | } | ||
80 | |||
81 | int | ||
82 | gemini_show_cpuinfo(struct seq_file *m) | ||
83 | { | ||
84 | unsigned char reg, rev; | ||
85 | char *family; | ||
86 | unsigned int type; | ||
87 | |||
88 | reg = readb(GEMINI_FEAT); | ||
89 | family = gemini_board_families[((reg>>4) & 0xf)]; | ||
90 | if (((reg>>4) & 0xf) > gemini_board_count) | ||
91 | printk(KERN_ERR "cpuinfo(): unable to determine board family\n"); | ||
92 | |||
93 | reg = readb(GEMINI_BREV); | ||
94 | type = (reg>>4) & 0xf; | ||
95 | rev = reg & 0xf; | ||
96 | |||
97 | reg = readb(GEMINI_BECO); | ||
98 | |||
99 | seq_printf(m, "machine\t\t: Gemini %s%d, rev %c, eco %d\n", | ||
100 | family, type, (rev + 'A'), (reg & 0xf)); | ||
101 | |||
102 | seq_printf(m, "board\t\t: Gemini %s", family); | ||
103 | if (type > 9) | ||
104 | seq_printf(m, "%c", (type - 10) + 'A'); | ||
105 | else | ||
106 | seq_printf(m, "%d", type); | ||
107 | |||
108 | seq_printf(m, ", rev %c, eco %d\n", (rev + 'A'), (reg & 0xf)); | ||
109 | |||
110 | seq_printf(m, "clock\t\t: %dMhz\n", gemini_get_clock_speed()); | ||
111 | |||
112 | return 0; | ||
113 | } | ||
114 | |||
115 | static u_char gemini_openpic_initsenses[] = { | ||
116 | 1, | ||
117 | 1, | ||
118 | 1, | ||
119 | 1, | ||
120 | 0, | ||
121 | 0, | ||
122 | 1, /* remainder are level-triggered */ | ||
123 | }; | ||
124 | |||
125 | #define GEMINI_MPIC_ADDR (0xfcfc0000) | ||
126 | #define GEMINI_MPIC_PCI_CFG (0x80005800) | ||
127 | |||
128 | void __init gemini_openpic_init(void) | ||
129 | { | ||
130 | |||
131 | OpenPIC_Addr = (volatile struct OpenPIC *) | ||
132 | grackle_read(GEMINI_MPIC_PCI_CFG + 0x10); | ||
133 | OpenPIC_InitSenses = gemini_openpic_initsenses; | ||
134 | OpenPIC_NumInitSenses = sizeof( gemini_openpic_initsenses ); | ||
135 | |||
136 | ioremap( GEMINI_MPIC_ADDR, OPENPIC_SIZE); | ||
137 | } | ||
138 | |||
139 | |||
140 | extern unsigned long loops_per_jiffy; | ||
141 | extern int root_mountflags; | ||
142 | extern char cmd_line[]; | ||
143 | |||
144 | void | ||
145 | gemini_heartbeat(void) | ||
146 | { | ||
147 | static unsigned long led = GEMINI_LEDBASE+(4*8); | ||
148 | static char direction = 8; | ||
149 | |||
150 | |||
151 | /* We only want to do this on 1 CPU */ | ||
152 | if (smp_processor_id()) | ||
153 | return; | ||
154 | *(char *)led = 0; | ||
155 | if ( (led + direction) > (GEMINI_LEDBASE+(7*8)) || | ||
156 | (led + direction) < (GEMINI_LEDBASE+(4*8)) ) | ||
157 | direction *= -1; | ||
158 | led += direction; | ||
159 | *(char *)led = 0xff; | ||
160 | ppc_md.heartbeat_count = ppc_md.heartbeat_reset; | ||
161 | } | ||
162 | |||
163 | void __init gemini_setup_arch(void) | ||
164 | { | ||
165 | extern char cmd_line[]; | ||
166 | |||
167 | |||
168 | loops_per_jiffy = 50000000/HZ; | ||
169 | |||
170 | #ifdef CONFIG_BLK_DEV_INITRD | ||
171 | /* bootable off CDROM */ | ||
172 | if (initrd_start) | ||
173 | ROOT_DEV = Root_SR0; | ||
174 | else | ||
175 | #endif | ||
176 | ROOT_DEV = Root_SDA1; | ||
177 | |||
178 | /* nothing but serial consoles... */ | ||
179 | sprintf(cmd_line, "%s console=ttyS0", cmd_line); | ||
180 | |||
181 | printk("Boot arguments: %s\n", cmd_line); | ||
182 | |||
183 | ppc_md.heartbeat = gemini_heartbeat; | ||
184 | ppc_md.heartbeat_reset = HZ/8; | ||
185 | ppc_md.heartbeat_count = 1; | ||
186 | |||
187 | /* Lookup PCI hosts */ | ||
188 | gemini_find_bridges(); | ||
189 | /* take special pains to map the MPIC, since it isn't mapped yet */ | ||
190 | gemini_openpic_init(); | ||
191 | /* start the L2 */ | ||
192 | gemini_init_l2(); | ||
193 | } | ||
194 | |||
195 | |||
196 | int | ||
197 | gemini_get_clock_speed(void) | ||
198 | { | ||
199 | unsigned long hid1, pvr; | ||
200 | int clock; | ||
201 | |||
202 | pvr = mfspr(SPRN_PVR); | ||
203 | hid1 = (mfspr(SPRN_HID1) >> 28) & 0xf; | ||
204 | if (PVR_VER(pvr) == 8 || | ||
205 | PVR_VER(pvr) == 12) | ||
206 | hid1 = cpu_7xx[hid1]; | ||
207 | else | ||
208 | hid1 = cpu_6xx[hid1]; | ||
209 | |||
210 | switch((readb(GEMINI_BSTAT) & 0xc) >> 2) { | ||
211 | |||
212 | case 0: | ||
213 | default: | ||
214 | clock = (hid1*100)/3; | ||
215 | break; | ||
216 | |||
217 | case 1: | ||
218 | clock = (hid1*125)/3; | ||
219 | break; | ||
220 | |||
221 | case 2: | ||
222 | clock = (hid1*50); | ||
223 | break; | ||
224 | } | ||
225 | |||
226 | return clock; | ||
227 | } | ||
228 | |||
229 | void __init gemini_init_l2(void) | ||
230 | { | ||
231 | unsigned char reg, brev, fam, creg; | ||
232 | unsigned long cache; | ||
233 | unsigned long pvr; | ||
234 | |||
235 | reg = readb(GEMINI_L2CFG); | ||
236 | brev = readb(GEMINI_BREV); | ||
237 | fam = readb(GEMINI_FEAT); | ||
238 | pvr = mfspr(SPRN_PVR); | ||
239 | |||
240 | switch(PVR_VER(pvr)) { | ||
241 | |||
242 | case 8: | ||
243 | if (reg & 0xc0) | ||
244 | cache = (((reg >> 6) & 0x3) << 28); | ||
245 | else | ||
246 | cache = 0x3 << 28; | ||
247 | |||
248 | #ifdef CONFIG_SMP | ||
249 | /* Pre-3.0 processor revs had snooping errata. Leave | ||
250 | their L2's disabled with SMP. -- Dan */ | ||
251 | if (PVR_CFG(pvr) < 3) { | ||
252 | printk("Pre-3.0 750; L2 left disabled!\n"); | ||
253 | return; | ||
254 | } | ||
255 | #endif /* CONFIG_SMP */ | ||
256 | |||
257 | /* Special case: VGM5-B's came before L2 ratios were set on | ||
258 | the board. Processor speed shouldn't be too high, so | ||
259 | set L2 ratio to 1:1.5. */ | ||
260 | if ((brev == 0x51) && ((fam & 0xa0) >> 4) == 0) | ||
261 | reg |= 1; | ||
262 | |||
263 | /* determine best cache ratio based upon what the board | ||
264 | tells us (which sometimes _may_ not be true) and | ||
265 | the processor speed. */ | ||
266 | else { | ||
267 | if (gemini_get_clock_speed() > 250) | ||
268 | reg = 2; | ||
269 | } | ||
270 | break; | ||
271 | case 12: | ||
272 | { | ||
273 | static unsigned long l2_size_val = 0; | ||
274 | |||
275 | if (!l2_size_val) | ||
276 | l2_size_val = _get_L2CR(); | ||
277 | cache = l2_size_val; | ||
278 | break; | ||
279 | } | ||
280 | case 4: | ||
281 | case 9: | ||
282 | creg = readb(GEMINI_CPUSTAT); | ||
283 | if (((creg & 0xc) >> 2) != 1) | ||
284 | printk("Dual-604 boards don't support the use of L2\n"); | ||
285 | else | ||
286 | writeb(1, GEMINI_L2CFG); | ||
287 | return; | ||
288 | default: | ||
289 | printk("Unknown processor; L2 left disabled\n"); | ||
290 | return; | ||
291 | } | ||
292 | |||
293 | cache |= ((1<<reg) << 25); | ||
294 | cache |= (L2CR_L2RAM_MASK|L2CR_L2CTL|L2CR_L2DO); | ||
295 | _set_L2CR(0); | ||
296 | _set_L2CR(cache | L2CR_L2E); | ||
297 | |||
298 | } | ||
299 | |||
300 | void | ||
301 | gemini_restart(char *cmd) | ||
302 | { | ||
303 | local_irq_disable(); | ||
304 | /* make a clean restart, not via the MPIC */ | ||
305 | _gemini_reboot(); | ||
306 | for(;;); | ||
307 | } | ||
308 | |||
309 | void | ||
310 | gemini_power_off(void) | ||
311 | { | ||
312 | for(;;); | ||
313 | } | ||
314 | |||
315 | void | ||
316 | gemini_halt(void) | ||
317 | { | ||
318 | gemini_restart(NULL); | ||
319 | } | ||
320 | |||
321 | void __init gemini_init_IRQ(void) | ||
322 | { | ||
323 | /* gemini has no 8259 */ | ||
324 | openpic_init(1, 0, 0, -1); | ||
325 | } | ||
326 | |||
327 | #define gemini_rtc_read(x) (readb(GEMINI_RTC+(x))) | ||
328 | #define gemini_rtc_write(val,x) (writeb((val),(GEMINI_RTC+(x)))) | ||
329 | |||
330 | /* ensure that the RTC is up and running */ | ||
331 | long __init gemini_time_init(void) | ||
332 | { | ||
333 | unsigned char reg; | ||
334 | |||
335 | reg = gemini_rtc_read(M48T35_RTC_CONTROL); | ||
336 | |||
337 | if ( reg & M48T35_RTC_STOPPED ) { | ||
338 | printk(KERN_INFO "M48T35 real-time-clock was stopped. Now starting...\n"); | ||
339 | gemini_rtc_write((reg & ~(M48T35_RTC_STOPPED)), M48T35_RTC_CONTROL); | ||
340 | gemini_rtc_write((reg | M48T35_RTC_SET), M48T35_RTC_CONTROL); | ||
341 | } | ||
342 | return 0; | ||
343 | } | ||
344 | |||
345 | #undef DEBUG_RTC | ||
346 | |||
347 | unsigned long | ||
348 | gemini_get_rtc_time(void) | ||
349 | { | ||
350 | unsigned int year, mon, day, hour, min, sec; | ||
351 | unsigned char reg; | ||
352 | |||
353 | reg = gemini_rtc_read(M48T35_RTC_CONTROL); | ||
354 | gemini_rtc_write((reg|M48T35_RTC_READ), M48T35_RTC_CONTROL); | ||
355 | #ifdef DEBUG_RTC | ||
356 | printk("get rtc: reg = %x\n", reg); | ||
357 | #endif | ||
358 | |||
359 | do { | ||
360 | sec = gemini_rtc_read(M48T35_RTC_SECONDS); | ||
361 | min = gemini_rtc_read(M48T35_RTC_MINUTES); | ||
362 | hour = gemini_rtc_read(M48T35_RTC_HOURS); | ||
363 | day = gemini_rtc_read(M48T35_RTC_DOM); | ||
364 | mon = gemini_rtc_read(M48T35_RTC_MONTH); | ||
365 | year = gemini_rtc_read(M48T35_RTC_YEAR); | ||
366 | } while( sec != gemini_rtc_read(M48T35_RTC_SECONDS)); | ||
367 | #ifdef DEBUG_RTC | ||
368 | printk("get rtc: sec=%x, min=%x, hour=%x, day=%x, mon=%x, year=%x\n", | ||
369 | sec, min, hour, day, mon, year); | ||
370 | #endif | ||
371 | |||
372 | gemini_rtc_write(reg, M48T35_RTC_CONTROL); | ||
373 | |||
374 | BCD_TO_BIN(sec); | ||
375 | BCD_TO_BIN(min); | ||
376 | BCD_TO_BIN(hour); | ||
377 | BCD_TO_BIN(day); | ||
378 | BCD_TO_BIN(mon); | ||
379 | BCD_TO_BIN(year); | ||
380 | |||
381 | if ((year += 1900) < 1970) | ||
382 | year += 100; | ||
383 | #ifdef DEBUG_RTC | ||
384 | printk("get rtc: sec=%x, min=%x, hour=%x, day=%x, mon=%x, year=%x\n", | ||
385 | sec, min, hour, day, mon, year); | ||
386 | #endif | ||
387 | |||
388 | return mktime( year, mon, day, hour, min, sec ); | ||
389 | } | ||
390 | |||
391 | |||
392 | int | ||
393 | gemini_set_rtc_time( unsigned long now ) | ||
394 | { | ||
395 | unsigned char reg; | ||
396 | struct rtc_time tm; | ||
397 | |||
398 | to_tm( now, &tm ); | ||
399 | |||
400 | reg = gemini_rtc_read(M48T35_RTC_CONTROL); | ||
401 | #ifdef DEBUG_RTC | ||
402 | printk("set rtc: reg = %x\n", reg); | ||
403 | #endif | ||
404 | |||
405 | gemini_rtc_write((reg|M48T35_RTC_SET), M48T35_RTC_CONTROL); | ||
406 | #ifdef DEBUG_RTC | ||
407 | printk("set rtc: tm vals - sec=%x, min=%x, hour=%x, mon=%x, mday=%x, year=%x\n", | ||
408 | tm.tm_sec, tm.tm_min, tm.tm_hour, tm.tm_mon, tm.tm_mday, tm.tm_year); | ||
409 | #endif | ||
410 | |||
411 | tm.tm_year -= 1900; | ||
412 | BIN_TO_BCD(tm.tm_sec); | ||
413 | BIN_TO_BCD(tm.tm_min); | ||
414 | BIN_TO_BCD(tm.tm_hour); | ||
415 | BIN_TO_BCD(tm.tm_mon); | ||
416 | BIN_TO_BCD(tm.tm_mday); | ||
417 | BIN_TO_BCD(tm.tm_year); | ||
418 | #ifdef DEBUG_RTC | ||
419 | printk("set rtc: tm vals - sec=%x, min=%x, hour=%x, mon=%x, mday=%x, year=%x\n", | ||
420 | tm.tm_sec, tm.tm_min, tm.tm_hour, tm.tm_mon, tm.tm_mday, tm.tm_year); | ||
421 | #endif | ||
422 | |||
423 | gemini_rtc_write(tm.tm_sec, M48T35_RTC_SECONDS); | ||
424 | gemini_rtc_write(tm.tm_min, M48T35_RTC_MINUTES); | ||
425 | gemini_rtc_write(tm.tm_hour, M48T35_RTC_HOURS); | ||
426 | gemini_rtc_write(tm.tm_mday, M48T35_RTC_DOM); | ||
427 | gemini_rtc_write(tm.tm_mon, M48T35_RTC_MONTH); | ||
428 | gemini_rtc_write(tm.tm_year, M48T35_RTC_YEAR); | ||
429 | |||
430 | /* done writing */ | ||
431 | gemini_rtc_write(reg, M48T35_RTC_CONTROL); | ||
432 | |||
433 | return 0; | ||
434 | } | ||
435 | |||
436 | /* use the RTC to determine the decrementer count */ | ||
437 | void __init gemini_calibrate_decr(void) | ||
438 | { | ||
439 | int freq, divisor; | ||
440 | unsigned char reg; | ||
441 | |||
442 | /* determine processor bus speed */ | ||
443 | reg = readb(GEMINI_BSTAT); | ||
444 | |||
445 | switch(((reg & 0x0c)>>2)&0x3) { | ||
446 | case 0: | ||
447 | default: | ||
448 | freq = 66667; | ||
449 | break; | ||
450 | case 1: | ||
451 | freq = 83000; | ||
452 | break; | ||
453 | case 2: | ||
454 | freq = 100000; | ||
455 | break; | ||
456 | } | ||
457 | |||
458 | freq *= 1000; | ||
459 | divisor = 4; | ||
460 | tb_ticks_per_jiffy = freq / HZ / divisor; | ||
461 | tb_to_us = mulhwu_scale_factor(freq/divisor, 1000000); | ||
462 | } | ||
463 | |||
464 | unsigned long __init gemini_find_end_of_memory(void) | ||
465 | { | ||
466 | unsigned long total; | ||
467 | unsigned char reg; | ||
468 | |||
469 | reg = readb(GEMINI_MEMCFG); | ||
470 | total = ((1<<((reg & 0x7) - 1)) * | ||
471 | (8<<((reg >> 3) & 0x7))); | ||
472 | total *= (1024*1024); | ||
473 | return total; | ||
474 | } | ||
475 | |||
476 | static void __init | ||
477 | gemini_map_io(void) | ||
478 | { | ||
479 | io_block_mapping(0xf0000000, 0xf0000000, 0x10000000, _PAGE_IO); | ||
480 | io_block_mapping(0x80000000, 0x80000000, 0x10000000, _PAGE_IO); | ||
481 | } | ||
482 | |||
483 | #ifdef CONFIG_SMP | ||
484 | static int | ||
485 | smp_gemini_probe(void) | ||
486 | { | ||
487 | int i, nr; | ||
488 | |||
489 | nr = (readb(GEMINI_CPUSTAT) & GEMINI_CPU_COUNT_MASK) >> 2; | ||
490 | if (nr == 0) | ||
491 | nr = 4; | ||
492 | |||
493 | if (nr > 1) { | ||
494 | openpic_request_IPIs(); | ||
495 | for (i = 1; i < nr; ++i) | ||
496 | smp_hw_index[i] = i; | ||
497 | } | ||
498 | |||
499 | return nr; | ||
500 | } | ||
501 | |||
502 | static void | ||
503 | smp_gemini_kick_cpu(int nr) | ||
504 | { | ||
505 | openpic_reset_processor_phys(1 << nr); | ||
506 | openpic_reset_processor_phys(0); | ||
507 | } | ||
508 | |||
509 | static void | ||
510 | smp_gemini_setup_cpu(int cpu_nr) | ||
511 | { | ||
512 | if (OpenPIC_Addr) | ||
513 | do_openpic_setup_cpu(); | ||
514 | if (cpu_nr > 0) | ||
515 | gemini_init_l2(); | ||
516 | } | ||
517 | |||
518 | static struct smp_ops_t gemini_smp_ops = { | ||
519 | smp_openpic_message_pass, | ||
520 | smp_gemini_probe, | ||
521 | smp_gemini_kick_cpu, | ||
522 | smp_gemini_setup_cpu, | ||
523 | .give_timebase = smp_generic_give_timebase, | ||
524 | .take_timebase = smp_generic_take_timebase, | ||
525 | }; | ||
526 | #endif /* CONFIG_SMP */ | ||
527 | |||
528 | void __init platform_init(unsigned long r3, unsigned long r4, unsigned long r5, | ||
529 | unsigned long r6, unsigned long r7) | ||
530 | { | ||
531 | int i; | ||
532 | |||
533 | /* Restore BATs for now */ | ||
534 | mtspr(SPRN_DBAT3U, 0xf0001fff); | ||
535 | mtspr(SPRN_DBAT3L, 0xf000002a); | ||
536 | |||
537 | parse_bootinfo(find_bootinfo()); | ||
538 | |||
539 | for(i = 0; i < GEMINI_LEDS; i++) | ||
540 | gemini_led_off(i); | ||
541 | |||
542 | ISA_DMA_THRESHOLD = 0; | ||
543 | DMA_MODE_READ = 0; | ||
544 | DMA_MODE_WRITE = 0; | ||
545 | |||
546 | #ifdef CONFIG_BLK_DEV_INITRD | ||
547 | if ( r4 ) | ||
548 | { | ||
549 | initrd_start = r4 + KERNELBASE; | ||
550 | initrd_end = r5 + KERNELBASE; | ||
551 | } | ||
552 | #endif | ||
553 | |||
554 | ppc_md.setup_arch = gemini_setup_arch; | ||
555 | ppc_md.show_cpuinfo = gemini_show_cpuinfo; | ||
556 | ppc_md.init_IRQ = gemini_init_IRQ; | ||
557 | ppc_md.get_irq = openpic_get_irq; | ||
558 | ppc_md.init = NULL; | ||
559 | |||
560 | ppc_md.restart = gemini_restart; | ||
561 | ppc_md.power_off = gemini_power_off; | ||
562 | ppc_md.halt = gemini_halt; | ||
563 | |||
564 | ppc_md.time_init = gemini_time_init; | ||
565 | ppc_md.set_rtc_time = gemini_set_rtc_time; | ||
566 | ppc_md.get_rtc_time = gemini_get_rtc_time; | ||
567 | ppc_md.calibrate_decr = gemini_calibrate_decr; | ||
568 | |||
569 | ppc_md.find_end_of_memory = gemini_find_end_of_memory; | ||
570 | ppc_md.setup_io_mappings = gemini_map_io; | ||
571 | |||
572 | ppc_md.pcibios_fixup_bus = gemini_pcibios_fixup; | ||
573 | |||
574 | #ifdef CONFIG_SMP | ||
575 | smp_ops = &gemini_smp_ops; | ||
576 | #endif /* CONFIG_SMP */ | ||
577 | } | ||