]> www.pilppa.org Git - linux-2.6-omap-h63xx.git/commitdiff
x86: make early printk selectable on 64-bit as well
authorIngo Molnar <mingo@elte.hu>
Wed, 30 Jan 2008 12:33:06 +0000 (13:33 +0100)
committerIngo Molnar <mingo@elte.hu>
Wed, 30 Jan 2008 12:33:06 +0000 (13:33 +0100)
Enable CONFIG_EMBEDDED to select CONFIG_EARLY_PRINTK on 64-bit as well.

saves ~2K:

   text    data     bss     dec     hex filename
   7290283 3672091 1907848 12870222         c4624e vmlinux.before
   7288373 3671795 1907848 12868016         c459b0 vmlinux.after

Signed-off-by: Ingo Molnar <mingo@elte.hu>
Signed-off-by: Thomas Gleixner <tglx@linutronix.de>
arch/x86/Kconfig.debug
arch/x86/kernel/head64.c
arch/x86/kernel/head_64.S
include/asm-x86/kdebug.h
include/linux/kernel.h
kernel/printk.c

index 15854b53badca3f2273cdf1ba2ff4bca2443b9c0..88420af98140dd0cbc1357f698fa66e6616a1c0f 100644 (file)
@@ -6,7 +6,7 @@ config TRACE_IRQFLAGS_SUPPORT
 source "lib/Kconfig.debug"
 
 config EARLY_PRINTK
-       bool "Early printk" if EMBEDDED && DEBUG_KERNEL && X86_32
+       bool "Early printk" if EMBEDDED
        default y
        help
          Write kernel log output directly into the VGA buffer or to a serial
index 85c1e6bf80225e78607413c4fe1e2ce9a01c5e5d..87e031d4abf1d4a3b8ab768e0f7bef5916d36e9c 100644 (file)
@@ -58,8 +58,13 @@ void __init x86_64_start_kernel(char * real_mode_data)
        /* Make NULL pointers segfault */
        zap_identity_mappings();
 
-       for (i = 0; i < IDT_ENTRIES; i++)
+       for (i = 0; i < IDT_ENTRIES; i++) {
+#ifdef CONFIG_EARLY_PRINTK
                set_intr_gate(i, &early_idt_handlers[i]);
+#else
+               set_intr_gate(i, early_idt_handler);
+#endif
+       }
        load_idt((const struct desc_ptr *)&idt_descr);
 
        early_printk("Kernel alive\n");
index 8b4c35cb519a39d2a2bb607b5740ac50e3bd369a..1d5a7a361200b69e28e61294ce7e45b75e6ba659 100644 (file)
@@ -267,6 +267,7 @@ init_rsp:
 bad_address:
        jmp bad_address
 
+#ifdef CONFIG_EARLY_PRINTK
 .macro early_idt_tramp first, last
        .ifgt \last-\first
        early_idt_tramp \first, \last-1
@@ -281,8 +282,10 @@ early_idt_handlers:
        early_idt_tramp 64, 127
        early_idt_tramp 128, 191
        early_idt_tramp 192, 255
+#endif
 
 ENTRY(early_idt_handler)
+#ifdef CONFIG_EARLY_PRINTK
        cmpl $2,early_recursion_flag(%rip)
        jz  1f
        incl early_recursion_flag(%rip)
@@ -311,8 +314,11 @@ ENTRY(early_idt_handler)
        movq 8(%rsp),%rsi       # get rip again
        call __print_symbol
 #endif
+#endif /* EARLY_PRINTK */
 1:     hlt
        jmp 1b
+
+#ifdef CONFIG_EARLY_PRINTK
 early_recursion_flag:
        .long 0
 
@@ -320,6 +326,7 @@ early_idt_msg:
        .asciz "PANIC: early exception %02lx rip %lx:%lx error %lx cr2 %lx\n"
 early_idt_ripmsg:
        .asciz "RIP %s\n"
+#endif /* CONFIG_EARLY_PRINTK */
 
 .balign PAGE_SIZE
 
index a5e5e3b7eb235c8e6a46c05411716340888fe639..e9f42d1ac38fb09097957304d3fc4373d11f4731 100644 (file)
@@ -22,7 +22,6 @@ enum die_val {
        DIE_PAGE_FAULT,
 };
 
-extern void early_printk(const char *fmt, ...) __attribute__((format(printf,1,2)));
 extern void printk_address(unsigned long address);
 extern void die(const char *,struct pt_regs *,long);
 extern int __must_check __die(const char *, struct pt_regs *, long);
index a7283c9beadff498968eb1ff506b5369077ae96c..ff356b2ee478d3dd006e67a76427a467525df7ae 100644 (file)
@@ -194,6 +194,9 @@ static inline int log_buf_read(int idx) { return 0; }
 static inline int log_buf_copy(char *dest, int idx, int len) { return 0; }
 #endif
 
+extern void __attribute__((format(printf, 1, 2)))
+       early_printk(const char *fmt, ...);
+
 unsigned long int_sqrt(unsigned long);
 
 extern int printk_ratelimit(void);
index 3b7c968d0ef994e8be14ef780835d96634761881..58bbec6841193d977f0a928fef090aee5edafa9b 100644 (file)
 
 #include <asm/uaccess.h>
 
+/*
+ * Architectures can override it:
+ */
+void __attribute__((weak)) early_printk(const char *fmt, ...)
+{
+}
+
 #define __LOG_BUF_LEN  (1 << CONFIG_LOG_BUF_SHIFT)
 
 /* printk's without a loglevel use this.. */