Groups | Search | Server Info | Keyboard shortcuts | Login | Register [http] [https] [nntp] [nntps]
Groups > linux.kernel > #1562534 > unrolled thread
| Started by | Ingo Molnar <mingo@kernel.org> |
|---|---|
| First post | 2017-01-19 10:50 +0100 |
| Last post | 2017-01-20 03:50 +0100 |
| Articles | 2 — 2 participants |
Back to article view | Back to linux.kernel
This discussion starts older than the indexed window; earlier articles aren't shown. The article labeled Started by
below is the oldest one visible, not the original post.
Re: [PATCH v5 2/4] x86: add support for earlyprintk via USB3 debug port Ingo Molnar <mingo@kernel.org> - 2017-01-19 10:50 +0100
Re: [PATCH v5 2/4] x86: add support for earlyprintk via USB3 debug port Lu Baolu <baolu.lu@linux.intel.com> - 2017-01-20 03:50 +0100
| From | Ingo Molnar <mingo@kernel.org> |
|---|---|
| Date | 2017-01-19 10:50 +0100 |
| Subject | Re: [PATCH v5 2/4] x86: add support for earlyprintk via USB3 debug port |
| Message-ID | <t1hvY-8e7-27@gated-at.bofh.it> |
* Lu Baolu <baolu.lu@linux.intel.com> wrote:
> index 8a12199..c4031b9 100644
> --- a/arch/x86/kernel/early_printk.c
> +++ b/arch/x86/kernel/early_printk.c
> @@ -17,6 +17,7 @@
> #include <asm/intel-mid.h>
> #include <asm/pgtable.h>
> #include <linux/usb/ehci_def.h>
> +#include <linux/usb/xhci-dbgp.h>
> #include <linux/efi.h>
> #include <asm/efi.h>
> #include <asm/pci_x86.h>
> @@ -381,6 +382,10 @@ static int __init setup_early_printk(char *buf)
> if (!strncmp(buf, "efi", 3))
> early_console_register(&early_efi_console, keep);
> #endif
> +#ifdef CONFIG_EARLY_PRINTK_XDBC
> + if (!strncmp(buf, "xdbc", 4))
> + early_xdbc_parse_parameter(buf + 4);
> +#endif
>
> buf++;
> }
> diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
> index 9c337b0..09d4a56 100644
> --- a/arch/x86/kernel/setup.c
> +++ b/arch/x86/kernel/setup.c
> @@ -70,6 +70,8 @@
> #include <linux/tboot.h>
> #include <linux/jiffies.h>
>
> +#include <linux/usb/xhci-dbgp.h>
> +
> #include <video/edid.h>
>
> #include <asm/mtrr.h>
> @@ -1096,6 +1098,11 @@ void __init setup_arch(char **cmdline_p)
> memblock_set_current_limit(ISA_END_ADDRESS);
> memblock_x86_fill();
>
> +#ifdef CONFIG_EARLY_PRINTK_XDBC
> + if (!early_xdbc_setup_hardware())
> + early_xdbc_register_console();
> +#endif
> +
> reserve_bios_regions();
>
> if (efi_enabled(EFI_MEMMAP)) {
> --
> 2.1.4
Please create proper wrappers in xhci-dbgp.h to not litter generic code with these
#ifdefs.
Thanks,
Ingo
[toc] | [next] | [standalone]
| From | Lu Baolu <baolu.lu@linux.intel.com> |
|---|---|
| Date | 2017-01-20 03:50 +0100 |
| Message-ID | <t1xr4-1mW-11@gated-at.bofh.it> |
| In reply to | #1562534 |
Hi Ingo,
On 01/19/2017 05:38 PM, Ingo Molnar wrote:
> * Lu Baolu <baolu.lu@linux.intel.com> wrote:
>
>> index 8a12199..c4031b9 100644
>> --- a/arch/x86/kernel/early_printk.c
>> +++ b/arch/x86/kernel/early_printk.c
>> @@ -17,6 +17,7 @@
>> #include <asm/intel-mid.h>
>> #include <asm/pgtable.h>
>> #include <linux/usb/ehci_def.h>
>> +#include <linux/usb/xhci-dbgp.h>
>> #include <linux/efi.h>
>> #include <asm/efi.h>
>> #include <asm/pci_x86.h>
>> @@ -381,6 +382,10 @@ static int __init setup_early_printk(char *buf)
>> if (!strncmp(buf, "efi", 3))
>> early_console_register(&early_efi_console, keep);
>> #endif
>> +#ifdef CONFIG_EARLY_PRINTK_XDBC
>> + if (!strncmp(buf, "xdbc", 4))
>> + early_xdbc_parse_parameter(buf + 4);
>> +#endif
>>
>> buf++;
>> }
>> diff --git a/arch/x86/kernel/setup.c b/arch/x86/kernel/setup.c
>> index 9c337b0..09d4a56 100644
>> --- a/arch/x86/kernel/setup.c
>> +++ b/arch/x86/kernel/setup.c
>> @@ -70,6 +70,8 @@
>> #include <linux/tboot.h>
>> #include <linux/jiffies.h>
>>
>> +#include <linux/usb/xhci-dbgp.h>
>> +
>> #include <video/edid.h>
>>
>> #include <asm/mtrr.h>
>> @@ -1096,6 +1098,11 @@ void __init setup_arch(char **cmdline_p)
>> memblock_set_current_limit(ISA_END_ADDRESS);
>> memblock_x86_fill();
>>
>> +#ifdef CONFIG_EARLY_PRINTK_XDBC
>> + if (!early_xdbc_setup_hardware())
>> + early_xdbc_register_console();
>> +#endif
>> +
>> reserve_bios_regions();
>>
>> if (efi_enabled(EFI_MEMMAP)) {
>> --
>> 2.1.4
> Please create proper wrappers in xhci-dbgp.h to not litter generic code with these
> #ifdefs.
Sure.
Best regards,
Lu Baolu
[toc] | [prev] | [standalone]
Back to top | Article view | linux.kernel
csiph-web