diff options
author | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-12 00:55:47 -0400 |
---|---|---|
committer | Linus Torvalds <torvalds@woody.linux-foundation.org> | 2007-10-12 00:55:47 -0400 |
commit | e86908614f2c7fec401827e5cefd7a6ea9407f85 (patch) | |
tree | fcb5d9e52422b37bdaf0e647126ebdfc1680f162 /arch/powerpc/Kconfig.debug | |
parent | 547307420931344a868275bd7ea7a30f117a15a9 (diff) | |
parent | 9b4b8feb962f4b3e74768b7205f1f8f6cce87238 (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: (408 commits)
[POWERPC] Add memchr() to the bootwrapper
[POWERPC] Implement logging of unhandled signals
[POWERPC] Add legacy serial support for OPB with flattened device tree
[POWERPC] Use 1TB segments
[POWERPC] XilinxFB: Allow fixed framebuffer base address
[POWERPC] XilinxFB: Add support for custom screen resolution
[POWERPC] XilinxFB: Use pdata to pass around framebuffer parameters
[POWERPC] PCI: Add 64-bit physical address support to setup_indirect_pci
[POWERPC] 4xx: Kilauea defconfig file
[POWERPC] 4xx: Kilauea DTS
[POWERPC] 4xx: Add AMCC Kilauea eval board support to platforms/40x
[POWERPC] 4xx: Add AMCC 405EX support to cputable.c
[POWERPC] Adjust TASK_SIZE on ppc32 systems to 3GB that are capable
[POWERPC] Use PAGE_OFFSET to tell if an address is user/kernel in SW TLB handlers
[POWERPC] 85xx: Enable FP emulation in MPC8560 ADS defconfig
[POWERPC] 85xx: Killed <asm/mpc85xx.h>
[POWERPC] 85xx: Add cpm nodes for 8541/8555 CDS
[POWERPC] 85xx: Convert mpc8560ads to the new CPM binding.
[POWERPC] mpc8272ads: Remove muram from the CPM reg property.
[POWERPC] Make clockevents work on PPC601 processors
...
Fixed up conflict in Documentation/powerpc/booting-without-of.txt manually.
Diffstat (limited to 'arch/powerpc/Kconfig.debug')
-rw-r--r-- | arch/powerpc/Kconfig.debug | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/arch/powerpc/Kconfig.debug b/arch/powerpc/Kconfig.debug index 22acece95b11..464f9b4b3169 100644 --- a/arch/powerpc/Kconfig.debug +++ b/arch/powerpc/Kconfig.debug | |||
@@ -124,6 +124,16 @@ config IRQSTACKS | |||
124 | for handling hard and soft interrupts. This can help avoid | 124 | for handling hard and soft interrupts. This can help avoid |
125 | overflowing the process kernel stacks. | 125 | overflowing the process kernel stacks. |
126 | 126 | ||
127 | config VIRQ_DEBUG | ||
128 | bool "Expose hardware/virtual IRQ mapping via debugfs" | ||
129 | depends on DEBUG_FS && PPC_MERGE | ||
130 | help | ||
131 | This option will show the mapping relationship between hardware irq | ||
132 | numbers and virtual irq numbers. The mapping is exposed via debugfs | ||
133 | in the file powerpc/virq_mapping. | ||
134 | |||
135 | If you don't know what this means you don't need it. | ||
136 | |||
127 | config BDI_SWITCH | 137 | config BDI_SWITCH |
128 | bool "Include BDI-2000 user context switcher" | 138 | bool "Include BDI-2000 user context switcher" |
129 | depends on DEBUG_KERNEL && PPC32 | 139 | depends on DEBUG_KERNEL && PPC32 |
@@ -211,6 +221,15 @@ config PPC_EARLY_DEBUG_44x | |||
211 | Select this to enable early debugging for IBM 44x chips via the | 221 | Select this to enable early debugging for IBM 44x chips via the |
212 | inbuilt serial port. | 222 | inbuilt serial port. |
213 | 223 | ||
224 | config PPC_EARLY_DEBUG_CPM | ||
225 | bool "Early serial debugging for Freescale CPM-based serial ports" | ||
226 | depends on SERIAL_CPM | ||
227 | select PIN_TLB if PPC_8xx | ||
228 | help | ||
229 | Select this to enable early debugging for Freescale chips | ||
230 | using a CPM-based serial port. This assumes that the bootwrapper | ||
231 | has run, and set up the CPM in a particular way. | ||
232 | |||
214 | endchoice | 233 | endchoice |
215 | 234 | ||
216 | config PPC_EARLY_DEBUG_44x_PHYSLOW | 235 | config PPC_EARLY_DEBUG_44x_PHYSLOW |
@@ -223,4 +242,16 @@ config PPC_EARLY_DEBUG_44x_PHYSHIGH | |||
223 | depends PPC_EARLY_DEBUG_44x | 242 | depends PPC_EARLY_DEBUG_44x |
224 | default "0x1" | 243 | default "0x1" |
225 | 244 | ||
245 | config PPC_EARLY_DEBUG_CPM_ADDR | ||
246 | hex "CPM UART early debug transmit descriptor address" | ||
247 | depends on PPC_EARLY_DEBUG_CPM | ||
248 | default "0xfa202008" if PPC_EP88XC | ||
249 | default "0xf0000008" if CPM2 | ||
250 | default "0xff002008" if CPM1 | ||
251 | help | ||
252 | This specifies the address of the transmit descriptor | ||
253 | used for early debug output. Because it is needed before | ||
254 | platform probing is done, all platforms selected must | ||
255 | share the same address. | ||
256 | |||
226 | endmenu | 257 | endmenu |