diff options
author | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 01:11:30 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@g5.osdl.org> | 2006-06-23 01:11:30 -0400 |
commit | 45c091bb2d453ce4a8b06cf19872ec7a77fc4799 (patch) | |
tree | 06fb2e05518ebfba163f8424e028e7faf5672d66 /arch/ppc | |
parent | d588fcbe5a7ba8bba2cebf7799ab2d573717a806 (diff) | |
parent | 2191fe3e39159e3375f4b7ec1420df149f154101 (diff) |
Merge git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc
* git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc: (139 commits)
[POWERPC] re-enable OProfile for iSeries, using timer interrupt
[POWERPC] support ibm,extended-*-frequency properties
[POWERPC] Extra sanity check in EEH code
[POWERPC] Dont look for class-code in pci children
[POWERPC] Fix mdelay badness on shared processor partitions
[POWERPC] disable floating point exceptions for init
[POWERPC] Unify ppc syscall tables
[POWERPC] mpic: add support for serial mode interrupts
[POWERPC] pseries: Print PCI slot location code on failure
[POWERPC] spufs: one more fix for 64k pages
[POWERPC] spufs: fail spu_create with invalid flags
[POWERPC] spufs: clear class2 interrupt status before wakeup
[POWERPC] spufs: fix Makefile for "make clean"
[POWERPC] spufs: remove stop_code from struct spu
[POWERPC] spufs: fix spu irq affinity setting
[POWERPC] spufs: further abstract priv1 register access
[POWERPC] spufs: split the Cell BE support into generic and platform dependant parts
[POWERPC] spufs: dont try to access SPE channel 1 count
[POWERPC] spufs: use kzalloc in create_spu
[POWERPC] spufs: fix initial state of wbox file
...
Manually resolved conflicts in:
drivers/net/phy/Makefile
include/asm-powerpc/spu.h
Diffstat (limited to 'arch/ppc')
-rw-r--r-- | arch/ppc/Kconfig | 4 | ||||
-rw-r--r-- | arch/ppc/mm/init.c | 2 | ||||
-rw-r--r-- | arch/ppc/mm/mmu_context.c | 2 | ||||
-rw-r--r-- | arch/ppc/mm/tlb.c | 6 | ||||
-rw-r--r-- | arch/ppc/platforms/4xx/Kconfig | 2 | ||||
-rw-r--r-- | arch/ppc/platforms/4xx/cpci405.c | 139 | ||||
-rw-r--r-- | arch/ppc/platforms/4xx/cpci405.h | 30 |
7 files changed, 149 insertions, 36 deletions
diff --git a/arch/ppc/Kconfig b/arch/ppc/Kconfig index e9a8f5d1dfcd..b55de4f42aec 100644 --- a/arch/ppc/Kconfig +++ b/arch/ppc/Kconfig | |||
@@ -40,6 +40,10 @@ config GENERIC_NVRAM | |||
40 | bool | 40 | bool |
41 | default y | 41 | default y |
42 | 42 | ||
43 | config GENERIC_FIND_NEXT_BIT | ||
44 | bool | ||
45 | default y | ||
46 | |||
43 | config SCHED_NO_NO_OMIT_FRAME_POINTER | 47 | config SCHED_NO_NO_OMIT_FRAME_POINTER |
44 | bool | 48 | bool |
45 | default y | 49 | default y |
diff --git a/arch/ppc/mm/init.c b/arch/ppc/mm/init.c index 386e000bcb73..c9bd184a295a 100644 --- a/arch/ppc/mm/init.c +++ b/arch/ppc/mm/init.c | |||
@@ -583,7 +583,7 @@ void update_mmu_cache(struct vm_area_struct *vma, unsigned long address, | |||
583 | mm = (address < TASK_SIZE)? vma->vm_mm: &init_mm; | 583 | mm = (address < TASK_SIZE)? vma->vm_mm: &init_mm; |
584 | pmd = pmd_offset(pgd_offset(mm, address), address); | 584 | pmd = pmd_offset(pgd_offset(mm, address), address); |
585 | if (!pmd_none(*pmd)) | 585 | if (!pmd_none(*pmd)) |
586 | add_hash_page(mm->context, address, pmd_val(*pmd)); | 586 | add_hash_page(mm->context.id, address, pmd_val(*pmd)); |
587 | } | 587 | } |
588 | #endif | 588 | #endif |
589 | } | 589 | } |
diff --git a/arch/ppc/mm/mmu_context.c b/arch/ppc/mm/mmu_context.c index b4a4b3f02a1c..8784f3715032 100644 --- a/arch/ppc/mm/mmu_context.c +++ b/arch/ppc/mm/mmu_context.c | |||
@@ -30,7 +30,7 @@ | |||
30 | #include <asm/mmu_context.h> | 30 | #include <asm/mmu_context.h> |
31 | #include <asm/tlbflush.h> | 31 | #include <asm/tlbflush.h> |
32 | 32 | ||
33 | mm_context_t next_mmu_context; | 33 | unsigned long next_mmu_context; |
34 | unsigned long context_map[LAST_CONTEXT / BITS_PER_LONG + 1]; | 34 | unsigned long context_map[LAST_CONTEXT / BITS_PER_LONG + 1]; |
35 | #ifdef FEW_CONTEXTS | 35 | #ifdef FEW_CONTEXTS |
36 | atomic_t nr_free_contexts; | 36 | atomic_t nr_free_contexts; |
diff --git a/arch/ppc/mm/tlb.c b/arch/ppc/mm/tlb.c index 6c3dc3c44c86..606b023196a2 100644 --- a/arch/ppc/mm/tlb.c +++ b/arch/ppc/mm/tlb.c | |||
@@ -42,7 +42,7 @@ void flush_hash_entry(struct mm_struct *mm, pte_t *ptep, unsigned long addr) | |||
42 | 42 | ||
43 | if (Hash != 0) { | 43 | if (Hash != 0) { |
44 | ptephys = __pa(ptep) & PAGE_MASK; | 44 | ptephys = __pa(ptep) & PAGE_MASK; |
45 | flush_hash_pages(mm->context, addr, ptephys, 1); | 45 | flush_hash_pages(mm->context.id, addr, ptephys, 1); |
46 | } | 46 | } |
47 | } | 47 | } |
48 | 48 | ||
@@ -102,7 +102,7 @@ static void flush_range(struct mm_struct *mm, unsigned long start, | |||
102 | pmd_t *pmd; | 102 | pmd_t *pmd; |
103 | unsigned long pmd_end; | 103 | unsigned long pmd_end; |
104 | int count; | 104 | int count; |
105 | unsigned int ctx = mm->context; | 105 | unsigned int ctx = mm->context.id; |
106 | 106 | ||
107 | if (Hash == 0) { | 107 | if (Hash == 0) { |
108 | _tlbia(); | 108 | _tlbia(); |
@@ -166,7 +166,7 @@ void flush_tlb_page(struct vm_area_struct *vma, unsigned long vmaddr) | |||
166 | mm = (vmaddr < TASK_SIZE)? vma->vm_mm: &init_mm; | 166 | mm = (vmaddr < TASK_SIZE)? vma->vm_mm: &init_mm; |
167 | pmd = pmd_offset(pgd_offset(mm, vmaddr), vmaddr); | 167 | pmd = pmd_offset(pgd_offset(mm, vmaddr), vmaddr); |
168 | if (!pmd_none(*pmd)) | 168 | if (!pmd_none(*pmd)) |
169 | flush_hash_pages(mm->context, vmaddr, pmd_val(*pmd), 1); | 169 | flush_hash_pages(mm->context.id, vmaddr, pmd_val(*pmd), 1); |
170 | FINISH_FLUSH; | 170 | FINISH_FLUSH; |
171 | } | 171 | } |
172 | 172 | ||
diff --git a/arch/ppc/platforms/4xx/Kconfig b/arch/ppc/platforms/4xx/Kconfig index 174ddbc9758b..293bd489e7d9 100644 --- a/arch/ppc/platforms/4xx/Kconfig +++ b/arch/ppc/platforms/4xx/Kconfig | |||
@@ -183,7 +183,7 @@ config IBM_EMAC4 | |||
183 | 183 | ||
184 | config BIOS_FIXUP | 184 | config BIOS_FIXUP |
185 | bool | 185 | bool |
186 | depends on BUBINGA || EP405 || SYCAMORE || WALNUT | 186 | depends on BUBINGA || EP405 || SYCAMORE || WALNUT || CPCI405 |
187 | default y | 187 | default y |
188 | 188 | ||
189 | # OAK doesn't exist but wanted to keep this around for any future 403GCX boards | 189 | # OAK doesn't exist but wanted to keep this around for any future 403GCX boards |
diff --git a/arch/ppc/platforms/4xx/cpci405.c b/arch/ppc/platforms/4xx/cpci405.c index 6571e39fbe48..970b69831e6f 100644 --- a/arch/ppc/platforms/4xx/cpci405.c +++ b/arch/ppc/platforms/4xx/cpci405.c | |||
@@ -1,10 +1,12 @@ | |||
1 | /* | 1 | /* |
2 | * Board setup routines for the esd CPCI-405 cPCI Board. | 2 | * Board setup routines for the esd CPCI-405 cPCI Board. |
3 | * | 3 | * |
4 | * Author: Stefan Roese | 4 | * Copyright 2001-2006 esd electronic system design - hannover germany |
5 | * stefan.roese@esd-electronics.com | ||
6 | * | 5 | * |
7 | * Copyright 2001 esd electronic system design - hannover germany | 6 | * Authors: Matthias Fuchs |
7 | * matthias.fuchs@esd-electronics.com | ||
8 | * Stefan Roese | ||
9 | * stefan.roese@esd-electronics.com | ||
8 | * | 10 | * |
9 | * This program is free software; you can redistribute it and/or modify it | 11 | * This program is free software; you can redistribute it and/or modify it |
10 | * under the terms of the GNU General Public License as published by the | 12 | * under the terms of the GNU General Public License as published by the |
@@ -20,9 +22,17 @@ | |||
20 | #include <asm/pci-bridge.h> | 22 | #include <asm/pci-bridge.h> |
21 | #include <asm/machdep.h> | 23 | #include <asm/machdep.h> |
22 | #include <asm/todc.h> | 24 | #include <asm/todc.h> |
25 | #include <linux/serial.h> | ||
26 | #include <linux/serial_core.h> | ||
23 | #include <asm/ocp.h> | 27 | #include <asm/ocp.h> |
28 | #include <asm/ibm_ocp_pci.h> | ||
29 | #include <platforms/4xx/ibm405gp.h> | ||
24 | 30 | ||
31 | #ifdef CONFIG_GEN_RTC | ||
25 | void *cpci405_nvram; | 32 | void *cpci405_nvram; |
33 | #endif | ||
34 | |||
35 | extern bd_t __res; | ||
26 | 36 | ||
27 | /* | 37 | /* |
28 | * Some IRQs unique to CPCI-405. | 38 | * Some IRQs unique to CPCI-405. |
@@ -36,18 +46,69 @@ ppc405_map_irq(struct pci_dev *dev, unsigned char idsel, unsigned char pin) | |||
36 | * A B C D | 46 | * A B C D |
37 | */ | 47 | */ |
38 | { | 48 | { |
39 | {28, 28, 28, 28}, /* IDSEL 15 - cPCI slot 8 */ | 49 | {28, 29, 30, 27}, /* IDSEL 15 - cPCI slot 8 */ |
40 | {29, 29, 29, 29}, /* IDSEL 16 - cPCI slot 7 */ | 50 | {29, 30, 27, 28}, /* IDSEL 16 - cPCI slot 7 */ |
41 | {30, 30, 30, 30}, /* IDSEL 17 - cPCI slot 6 */ | 51 | {30, 27, 28, 29}, /* IDSEL 17 - cPCI slot 6 */ |
42 | {27, 27, 27, 27}, /* IDSEL 18 - cPCI slot 5 */ | 52 | {27, 28, 29, 30}, /* IDSEL 18 - cPCI slot 5 */ |
43 | {28, 28, 28, 28}, /* IDSEL 19 - cPCI slot 4 */ | 53 | {28, 29, 30, 27}, /* IDSEL 19 - cPCI slot 4 */ |
44 | {29, 29, 29, 29}, /* IDSEL 20 - cPCI slot 3 */ | 54 | {29, 30, 27, 28}, /* IDSEL 20 - cPCI slot 3 */ |
45 | {30, 30, 30, 30}, /* IDSEL 21 - cPCI slot 2 */ | 55 | {30, 27, 28, 29}, /* IDSEL 21 - cPCI slot 2 */ |
46 | }; | 56 | }; |
47 | const long min_idsel = 15, max_idsel = 21, irqs_per_slot = 4; | 57 | const long min_idsel = 15, max_idsel = 21, irqs_per_slot = 4; |
48 | return PCI_IRQ_TABLE_LOOKUP; | 58 | return PCI_IRQ_TABLE_LOOKUP; |
49 | }; | 59 | }; |
50 | 60 | ||
61 | /* The serial clock for the chip is an internal clock determined by | ||
62 | * different clock speeds/dividers. | ||
63 | * Calculate the proper input baud rate and setup the serial driver. | ||
64 | */ | ||
65 | static void __init | ||
66 | cpci405_early_serial_map(void) | ||
67 | { | ||
68 | u32 uart_div; | ||
69 | int uart_clock; | ||
70 | struct uart_port port; | ||
71 | |||
72 | /* Calculate the serial clock input frequency | ||
73 | * | ||
74 | * The uart clock is the cpu frequency (provided in the board info | ||
75 | * structure) divided by the external UART Divisor. | ||
76 | */ | ||
77 | uart_div = ((mfdcr(DCRN_CHCR_BASE) & CHR0_UDIV) >> 1) + 1; | ||
78 | uart_clock = __res.bi_procfreq / uart_div; | ||
79 | |||
80 | /* Setup serial port access */ | ||
81 | memset(&port, 0, sizeof(port)); | ||
82 | #if defined(CONFIG_UART0_TTYS0) | ||
83 | port.membase = (void*)UART0_IO_BASE; | ||
84 | port.irq = UART0_INT; | ||
85 | #else | ||
86 | port.membase = (void*)UART1_IO_BASE; | ||
87 | port.irq = UART1_INT; | ||
88 | #endif | ||
89 | port.uartclk = uart_clock; | ||
90 | port.regshift = 0; | ||
91 | port.iotype = UPIO_MEM; | ||
92 | port.flags = UPF_BOOT_AUTOCONF | UPF_SKIP_TEST; | ||
93 | port.line = 0; | ||
94 | |||
95 | if (early_serial_setup(&port) != 0) { | ||
96 | printk("Early serial init of port 0 failed\n"); | ||
97 | } | ||
98 | #if defined(CONFIG_UART0_TTYS0) | ||
99 | port.membase = (void*)UART1_IO_BASE; | ||
100 | port.irq = UART1_INT; | ||
101 | #else | ||
102 | port.membase = (void*)UART0_IO_BASE; | ||
103 | port.irq = UART0_INT; | ||
104 | #endif | ||
105 | port.line = 1; | ||
106 | |||
107 | if (early_serial_setup(&port) != 0) { | ||
108 | printk("Early serial init of port 1 failed\n"); | ||
109 | } | ||
110 | } | ||
111 | |||
51 | void __init | 112 | void __init |
52 | cpci405_setup_arch(void) | 113 | cpci405_setup_arch(void) |
53 | { | 114 | { |
@@ -55,14 +116,68 @@ cpci405_setup_arch(void) | |||
55 | 116 | ||
56 | ibm_ocp_set_emac(0, 0); | 117 | ibm_ocp_set_emac(0, 0); |
57 | 118 | ||
58 | TODC_INIT(TODC_TYPE_MK48T35, cpci405_nvram, cpci405_nvram, cpci405_nvram, 8); | 119 | cpci405_early_serial_map(); |
120 | |||
121 | #ifdef CONFIG_GEN_RTC | ||
122 | TODC_INIT(TODC_TYPE_MK48T35, | ||
123 | cpci405_nvram, cpci405_nvram, cpci405_nvram, 8); | ||
124 | #endif | ||
125 | } | ||
126 | |||
127 | void __init | ||
128 | bios_fixup(struct pci_controller *hose, struct pcil0_regs *pcip) | ||
129 | { | ||
130 | unsigned int bar_response, bar; | ||
131 | |||
132 | /* Disable region first */ | ||
133 | out_le32((void *) &(pcip->pmm[0].ma), 0x00000000); | ||
134 | /* PLB starting addr, PCI: 0x80000000 */ | ||
135 | out_le32((void *) &(pcip->pmm[0].la), 0x80000000); | ||
136 | /* PCI start addr, 0x80000000 */ | ||
137 | out_le32((void *) &(pcip->pmm[0].pcila), PPC405_PCI_MEM_BASE); | ||
138 | /* 512MB range of PLB to PCI */ | ||
139 | out_le32((void *) &(pcip->pmm[0].pciha), 0x00000000); | ||
140 | /* Enable no pre-fetch, enable region */ | ||
141 | out_le32((void *) &(pcip->pmm[0].ma), ((0xffffffff - | ||
142 | (PPC405_PCI_UPPER_MEM - | ||
143 | PPC405_PCI_MEM_BASE)) | 0x01)); | ||
144 | |||
145 | /* Disable region one */ | ||
146 | out_le32((void *) &(pcip->pmm[1].ma), 0x00000000); | ||
147 | out_le32((void *) &(pcip->pmm[1].la), 0x00000000); | ||
148 | out_le32((void *) &(pcip->pmm[1].pcila), 0x00000000); | ||
149 | out_le32((void *) &(pcip->pmm[1].pciha), 0x00000000); | ||
150 | out_le32((void *) &(pcip->pmm[1].ma), 0x00000000); | ||
151 | out_le32((void *) &(pcip->ptm1ms), 0x00000001); | ||
152 | |||
153 | /* Disable region two */ | ||
154 | out_le32((void *) &(pcip->pmm[2].ma), 0x00000000); | ||
155 | out_le32((void *) &(pcip->pmm[2].la), 0x00000000); | ||
156 | out_le32((void *) &(pcip->pmm[2].pcila), 0x00000000); | ||
157 | out_le32((void *) &(pcip->pmm[2].pciha), 0x00000000); | ||
158 | out_le32((void *) &(pcip->pmm[2].ma), 0x00000000); | ||
159 | out_le32((void *) &(pcip->ptm2ms), 0x00000000); | ||
160 | out_le32((void *) &(pcip->ptm2la), 0x00000000); | ||
161 | |||
162 | /* Zero config bars */ | ||
163 | for (bar = PCI_BASE_ADDRESS_1; bar <= PCI_BASE_ADDRESS_2; bar += 4) { | ||
164 | early_write_config_dword(hose, hose->first_busno, | ||
165 | PCI_FUNC(hose->first_busno), bar, | ||
166 | 0x00000000); | ||
167 | early_read_config_dword(hose, hose->first_busno, | ||
168 | PCI_FUNC(hose->first_busno), bar, | ||
169 | &bar_response); | ||
170 | } | ||
59 | } | 171 | } |
60 | 172 | ||
61 | void __init | 173 | void __init |
62 | cpci405_map_io(void) | 174 | cpci405_map_io(void) |
63 | { | 175 | { |
64 | ppc4xx_map_io(); | 176 | ppc4xx_map_io(); |
177 | |||
178 | #ifdef CONFIG_GEN_RTC | ||
65 | cpci405_nvram = ioremap(CPCI405_NVRAM_PADDR, CPCI405_NVRAM_SIZE); | 179 | cpci405_nvram = ioremap(CPCI405_NVRAM_PADDR, CPCI405_NVRAM_SIZE); |
180 | #endif | ||
66 | } | 181 | } |
67 | 182 | ||
68 | void __init | 183 | void __init |
@@ -74,9 +189,11 @@ platform_init(unsigned long r3, unsigned long r4, unsigned long r5, | |||
74 | ppc_md.setup_arch = cpci405_setup_arch; | 189 | ppc_md.setup_arch = cpci405_setup_arch; |
75 | ppc_md.setup_io_mappings = cpci405_map_io; | 190 | ppc_md.setup_io_mappings = cpci405_map_io; |
76 | 191 | ||
192 | #ifdef CONFIG_GEN_RTC | ||
77 | ppc_md.time_init = todc_time_init; | 193 | ppc_md.time_init = todc_time_init; |
78 | ppc_md.set_rtc_time = todc_set_rtc_time; | 194 | ppc_md.set_rtc_time = todc_set_rtc_time; |
79 | ppc_md.get_rtc_time = todc_get_rtc_time; | 195 | ppc_md.get_rtc_time = todc_get_rtc_time; |
80 | ppc_md.nvram_read_val = todc_direct_read_val; | 196 | ppc_md.nvram_read_val = todc_direct_read_val; |
81 | ppc_md.nvram_write_val = todc_direct_write_val; | 197 | ppc_md.nvram_write_val = todc_direct_write_val; |
198 | #endif | ||
82 | } | 199 | } |
diff --git a/arch/ppc/platforms/4xx/cpci405.h b/arch/ppc/platforms/4xx/cpci405.h index e27f7cb650d8..f5a5c0cd062d 100644 --- a/arch/ppc/platforms/4xx/cpci405.h +++ b/arch/ppc/platforms/4xx/cpci405.h | |||
@@ -1,37 +1,29 @@ | |||
1 | /* | 1 | /* |
2 | * CPCI-405 board specific definitions | 2 | * CPCI-405 board specific definitions |
3 | * | 3 | * |
4 | * Copyright (c) 2001 Stefan Roese (stefan.roese@esd-electronics.com) | 4 | * Copyright 2001-2006 esd electronic system design - hannover germany |
5 | * | ||
6 | * Authors: Matthias Fuchs | ||
7 | * matthias.fuchs@esd-electronics.com | ||
8 | * Stefan Roese | ||
9 | * stefan.roese@esd-electronics.com | ||
5 | */ | 10 | */ |
6 | 11 | ||
7 | #ifdef __KERNEL__ | 12 | #ifdef __KERNEL__ |
8 | #ifndef __ASM_CPCI405_H__ | 13 | #ifndef __CPCI405_H__ |
9 | #define __ASM_CPCI405_H__ | 14 | #define __CPCI405_H__ |
10 | 15 | ||
11 | #include <linux/config.h> | 16 | #include <linux/config.h> |
12 | |||
13 | /* We have a 405GP core */ | ||
14 | #include <platforms/4xx/ibm405gp.h> | 17 | #include <platforms/4xx/ibm405gp.h> |
15 | |||
16 | #include <asm/ppcboot.h> | 18 | #include <asm/ppcboot.h> |
17 | 19 | ||
18 | #ifndef __ASSEMBLY__ | ||
19 | /* Some 4xx parts use a different timebase frequency from the internal clock. | ||
20 | */ | ||
21 | #define bi_tbfreq bi_intfreq | ||
22 | |||
23 | /* Map for the NVRAM space */ | 20 | /* Map for the NVRAM space */ |
24 | #define CPCI405_NVRAM_PADDR ((uint)0xf0200000) | 21 | #define CPCI405_NVRAM_PADDR ((uint)0xf0200000) |
25 | #define CPCI405_NVRAM_SIZE ((uint)32*1024) | 22 | #define CPCI405_NVRAM_SIZE ((uint)32*1024) |
26 | 23 | ||
27 | #ifdef CONFIG_PPC405GP_INTERNAL_CLOCK | 24 | #define BASE_BAUD 0 |
28 | #define BASE_BAUD 201600 | ||
29 | #else | ||
30 | #define BASE_BAUD 691200 | ||
31 | #endif | ||
32 | 25 | ||
33 | #define PPC4xx_MACHINE_NAME "esd CPCI-405" | 26 | #define PPC4xx_MACHINE_NAME "esd CPCI-405" |
34 | 27 | ||
35 | #endif /* !__ASSEMBLY__ */ | 28 | #endif /* __CPCI405_H__ */ |
36 | #endif /* __ASM_CPCI405_H__ */ | ||
37 | #endif /* __KERNEL__ */ | 29 | #endif /* __KERNEL__ */ |