mirror of https://lore.kernel.org/lkml/
 help / color / mirror / Atom feed
From: "Jiaxun Yang" <jiaxun.yang@flygoat.com>
To: "Thomas Bogendoerfer" <tsbogend@alpha.franken.de>
Cc: "linux-mips@vger.kernel.org" <linux-mips@vger.kernel.org>,
	linux-kernel@vger.kernel.org
Subject: Re: [PATCH 0/8] MIPS: Unify low-level debugging functionalities
Date: Fri, 01 Dec 2023 11:58:34 +0000	[thread overview]
Message-ID: <ce132300-e2cc-4966-8dc8-35cf5f6d3f83@app.fastmail.com> (raw)
In-Reply-To: <20231029-mips_debug_ll-v1-0-d7a491e8c278@flygoat.com>



在2023年10月29日十月 上午2:53,Jiaxun Yang写道:
> Hi all,

Hi Thomas,

A gentle ping on this series :-)

I've got too much patch floating out there.

Thanks
- Jiaxun

>
> This is a attempt to bring all low-level debugging print functions
> together and provide a arm-like low-level debugging interface and
> a further function to debug early exceptions.
>
> The plan is to elimiate platform specific early_printk and
> cps-vec-ns16550 by debug_ll and earlycon.
>
> cps-vec-ns16550 is leave unchanged for now due to pending patch[1].
>
> Hope you'll find them handy :-)
>
> Happy hacking!
>
> Thanks
> Jiaxun
>
> [1]: 
> https://lore.kernel.org/linux-mips/20231027221106.405666-6-jiaxun.yang@flygoat.com/
>
> Signed-off-by: Jiaxun Yang <jiaxun.yang@flygoat.com>
> ---
> Jiaxun Yang (8):
>       MIPS: asm: Move strings to .rodata.str section
>       MIPS: debug: Implement low-level debugging functions
>       MIPS: debug: Hook up DEBUG_LL with early printk
>       MIPS: debug: Provide an early exception vector for low-level debugging
>       MIPS: debug_ll: Add Kconfig symbols for some 8250 uarts
>       MIPS: debug_ll: Implement support for Alchemy uarts
>       MIPS: debug_ll: Implement support for AR933X uarts
>       MIPS: zboot: Convert to use debug_ll facilities
>
>  arch/mips/Kconfig                        |  12 +-
>  arch/mips/Kconfig.debug                  | 212 +++++++++++++++++++++++++++----
>  arch/mips/boot/compressed/Makefile       |   9 +-
>  arch/mips/boot/compressed/dbg.c          |  37 ------
>  arch/mips/boot/compressed/debug-vec.S    |   3 +
>  arch/mips/boot/compressed/debug.S        |   3 +
>  arch/mips/boot/compressed/decompress.c   |   6 +-
>  arch/mips/boot/compressed/head.S         |   6 +
>  arch/mips/boot/compressed/uart-16550.c   |  47 -------
>  arch/mips/boot/compressed/uart-alchemy.c |   7 -
>  arch/mips/boot/compressed/uart-ath79.c   |   2 -
>  arch/mips/boot/compressed/uart-prom.c    |   7 -
>  arch/mips/include/asm/asm.h              |   2 +-
>  arch/mips/include/debug/8250.S           |  60 +++++++++
>  arch/mips/include/debug/alchemy.S        |  46 +++++++
>  arch/mips/include/debug/ar933x.S         |  41 ++++++
>  arch/mips/include/debug/uhi.S            |  48 +++++++
>  arch/mips/kernel/Makefile                |   3 +
>  arch/mips/kernel/debug-vec.S             | 194 ++++++++++++++++++++++++++++
>  arch/mips/kernel/debug.S                 | 130 +++++++++++++++++++
>  arch/mips/kernel/early_printk.c          |  19 +++
>  arch/mips/kernel/head.S                  |   4 +
>  22 files changed, 750 insertions(+), 148 deletions(-)
> ---
> base-commit: 66f1e1ea3548378ff6387b1ce0b40955d54e86aa
> change-id: 20231028-mips_debug_ll-ef9cce16767b
>
> Best regards,
> -- 
> Jiaxun Yang <jiaxun.yang@flygoat.com>

-- 
- Jiaxun

  parent reply	other threads:[~2023-12-01 11:59 UTC|newest]

Thread overview: 13+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2023-10-29  2:53 Jiaxun Yang
2023-10-29  2:53 ` [PATCH 1/8] MIPS: asm: Move strings to .rodata.str section Jiaxun Yang
2023-10-29  2:53 ` [PATCH 2/8] MIPS: debug: Implement low-level debugging functions Jiaxun Yang
2023-10-29  2:53 ` [PATCH 3/8] MIPS: debug: Hook up DEBUG_LL with early printk Jiaxun Yang
2023-10-29  2:53 ` [PATCH 4/8] MIPS: debug: Provide an early exception vector for low-level debugging Jiaxun Yang
2023-10-29  2:53 ` [PATCH 5/8] MIPS: debug_ll: Add Kconfig symbols for some 8250 uarts Jiaxun Yang
2023-10-29  2:53 ` [PATCH 6/8] MIPS: debug_ll: Implement support for Alchemy uarts Jiaxun Yang
2023-10-29  2:53 ` [PATCH 7/8] MIPS: debug_ll: Implement support for AR933X uarts Jiaxun Yang
2023-10-29  2:53 ` [PATCH 8/8] MIPS: zboot: Convert to use debug_ll facilities Jiaxun Yang
2023-12-01 11:58 ` Jiaxun Yang [this message]
2023-12-20 21:18 ` [PATCH 0/8] MIPS: Unify low-level debugging functionalities Thomas Bogendoerfer
2023-12-21  1:40   ` Jiaxun Yang
2023-12-21  2:21   ` Jiaxun Yang

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=ce132300-e2cc-4966-8dc8-35cf5f6d3f83@app.fastmail.com \
    --to=jiaxun.yang@flygoat.com \
    --cc=linux-kernel@vger.kernel.org \
    --cc=linux-mips@vger.kernel.org \
    --cc=tsbogend@alpha.franken.de \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox

all inboxes | Powered by JetHome®