diff options
author | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-21 18:50:49 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@linux-foundation.org> | 2008-04-21 18:50:49 -0400 |
commit | 9a64388d83f6ef08dfff405a9d122e3dbcb6bf38 (patch) | |
tree | a77532ce4d6d56be6c6c7f405cd901a0184250fb /arch/powerpc/kernel/setup_32.c | |
parent | e80ab411e589e00550e2e6e5a6a02d59cc730357 (diff) | |
parent | 14b3ca4022f050f8622ed282b734ddf445464583 (diff) |
Merge branch 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc
* 'master' of git://git.kernel.org/pub/scm/linux/kernel/git/paulus/powerpc: (202 commits)
[POWERPC] Fix compile breakage for 64-bit UP configs
[POWERPC] Define copy_siginfo_from_user32
[POWERPC] Add compat handler for PTRACE_GETSIGINFO
[POWERPC] i2c: Fix build breakage introduced by OF helpers
[POWERPC] Optimize fls64() on 64-bit processors
[POWERPC] irqtrace support for 64-bit powerpc
[POWERPC] Stacktrace support for lockdep
[POWERPC] Move stackframe definitions to common header
[POWERPC] Fix device-tree locking vs. interrupts
[POWERPC] Make pci_bus_to_host()'s struct pci_bus * argument const
[POWERPC] Remove unused __max_memory variable
[POWERPC] Simplify xics direct/lpar irq_host setup
[POWERPC] Use pseries_setup_i8259_cascade() in pseries_mpic_init_IRQ()
[POWERPC] Turn xics_setup_8259_cascade() into a generic pseries_setup_i8259_cascade()
[POWERPC] Move xics_setup_8259_cascade() into platforms/pseries/setup.c
[POWERPC] Use asm-generic/bitops/find.h in bitops.h
[POWERPC] 83xx: mpc8315 - fix USB UTMI Host setup
[POWERPC] 85xx: Fix the size of qe muram for MPC8568E
[POWERPC] 86xx: mpc86xx_hpcn - Temporarily accept old dts node identifier.
[POWERPC] 86xx: mark functions static, other minor cleanups
...
Diffstat (limited to 'arch/powerpc/kernel/setup_32.c')
-rw-r--r-- | arch/powerpc/kernel/setup_32.c | 14 |
1 files changed, 13 insertions, 1 deletions
diff --git a/arch/powerpc/kernel/setup_32.c b/arch/powerpc/kernel/setup_32.c index 06d918d94dd1..36f6779c88d4 100644 --- a/arch/powerpc/kernel/setup_32.c +++ b/arch/powerpc/kernel/setup_32.c | |||
@@ -164,6 +164,18 @@ int __init ppc_setup_l2cr(char *str) | |||
164 | } | 164 | } |
165 | __setup("l2cr=", ppc_setup_l2cr); | 165 | __setup("l2cr=", ppc_setup_l2cr); |
166 | 166 | ||
167 | /* Checks "l3cr=xxxx" command-line option */ | ||
168 | int __init ppc_setup_l3cr(char *str) | ||
169 | { | ||
170 | if (cpu_has_feature(CPU_FTR_L3CR)) { | ||
171 | unsigned long val = simple_strtoul(str, NULL, 0); | ||
172 | printk(KERN_INFO "l3cr set to %lx\n", val); | ||
173 | _set_L3CR(val); /* and enable it */ | ||
174 | } | ||
175 | return 1; | ||
176 | } | ||
177 | __setup("l3cr=", ppc_setup_l3cr); | ||
178 | |||
167 | #ifdef CONFIG_GENERIC_NVRAM | 179 | #ifdef CONFIG_GENERIC_NVRAM |
168 | 180 | ||
169 | /* Generic nvram hooks used by drivers/char/gen_nvram.c */ | 181 | /* Generic nvram hooks used by drivers/char/gen_nvram.c */ |
@@ -269,7 +281,7 @@ void __init setup_arch(char **cmdline_p) | |||
269 | if (ppc_md.panic) | 281 | if (ppc_md.panic) |
270 | setup_panic(); | 282 | setup_panic(); |
271 | 283 | ||
272 | init_mm.start_code = PAGE_OFFSET; | 284 | init_mm.start_code = (unsigned long)_stext; |
273 | init_mm.end_code = (unsigned long) _etext; | 285 | init_mm.end_code = (unsigned long) _etext; |
274 | init_mm.end_data = (unsigned long) _edata; | 286 | init_mm.end_data = (unsigned long) _edata; |
275 | init_mm.brk = klimit; | 287 | init_mm.brk = klimit; |