All of lore.kernel.org
 help / color / mirror / Atom feed
From: Simon Glass <sjg@chromium.org>
To: Ovidiu Panait <ovidiu.panait@windriver.com>
Cc: U-Boot Mailing List <u-boot@lists.denx.de>,
	Alexandru Gagniuc <mr.nuke.me@gmail.com>,
	 Asherah Connor <ashe@kivikakk.ee>,
	Aswath Govindraju <a-govindraju@ti.com>,
	 Aymen Sghaier <aymen.sghaier@nxp.com>,
	Bin Meng <bmeng.cn@gmail.com>,
	 Chris Morgan <macromorgan@hotmail.com>,
	Franck LENORMAND <franck.lenormand@nxp.com>,
	 Heinrich Schuchardt <xypron.glpk@gmx.de>,
	Joel Peshkin <joel.peshkin@broadcom.com>,
	 Jorge Ramirez-Ortiz <jorge@foundries.io>,
	Kory Maincent <kory.maincent@bootlin.com>,
	 Marek Szyprowski <m.szyprowski@samsung.com>,
	Mario Six <mario.six@gdsys.cc>,
	 Maxime Ripard <maxime@cerno.tech>,
	Michal Simek <michal.simek@xilinx.com>,
	Peng Fan <peng.fan@nxp.com>,
	Pragnesh Patel <pragnesh.patel@sifive.com>,
	Priyanka Jain <priyanka.jain@nxp.com>,
	 Rasmus Villemoes <rasmus.villemoes@prevas.dk>,
	Roland Gaudig <roland.gaudig@weidmueller.com>,
	 Thomas Huth <thuth@redhat.com>,
	Tim Harvey <tharvey@gateworks.com>, Wolfgang Denk <wd@denx.de>
Subject: Re: [PATCH v2 2/7] common: remove bedbug debugger support
Date: Tue, 4 Jan 2022 07:11:28 -0700	[thread overview]
Message-ID: <CAPnjgZ32bYCybwCAxm_BJ-bm75Gd9h33hOe7R5Jm=BMGMWu+Fg@mail.gmail.com> (raw)
In-Reply-To: <20220101171332.2676936-2-ovidiu.panait@windriver.com>

On Sat, 1 Jan 2022 at 10:14, Ovidiu Panait <ovidiu.panait@windriver.com> wrote:
>
> Commit 98f705c9cefd ("powerpc: remove 4xx support") removed (in 2017) the
> last code that made use of bedbug debugger support. Since there aren't
> any boards left that define either CONFIG_CMD_BEDBUG or a real
> bedbug_init(), drop this feature from u-boot.
>
> Signed-off-by: Ovidiu Panait <ovidiu.panait@windriver.com>
> ---
>
> Changes in v2:
> - new patch
>
>  arch/powerpc/cpu/mpc83xx/traps.c |    7 -
>  arch/powerpc/cpu/mpc85xx/traps.c |    7 -
>  cmd/Kconfig                      |    7 -
>  cmd/Makefile                     |    1 -
>  cmd/bedbug.c                     |  410 ----------
>  common/Makefile                  |    1 -
>  common/bedbug.c                  | 1254 ------------------------------
>  common/board_r.c                 |    9 +-
>  doc/README.bedbug                |   56 --
>  include/bedbug/bedbug.h          |   40 -
>  include/bedbug/ppc.h             |  408 ----------
>  include/bedbug/regs.h            |  400 ----------
>  include/bedbug/tables.h          |  601 --------------
>  include/bedbug/type.h            |   29 -
>  post/lib_powerpc/string.c        |    1 -
>  15 files changed, 1 insertion(+), 3230 deletions(-)
>  delete mode 100644 cmd/bedbug.c
>  delete mode 100644 common/bedbug.c
>  delete mode 100644 doc/README.bedbug
>  delete mode 100644 include/bedbug/bedbug.h
>  delete mode 100644 include/bedbug/ppc.h
>  delete mode 100644 include/bedbug/regs.h
>  delete mode 100644 include/bedbug/tables.h
>  delete mode 100644 include/bedbug/type.h

Reviewed-by: Simon Glass <sjg@chromium.org>

  parent reply	other threads:[~2022-01-04 14:11 UTC|newest]

Thread overview: 16+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2022-01-01 17:13 [PATCH v2 1/7] common: spl: move armv7m-specific code to spl_perform_fixups() Ovidiu Panait
2022-01-01 17:13 ` [PATCH v2 2/7] common: remove bedbug debugger support Ovidiu Panait
2022-01-04  9:17   ` Thomas Huth
2022-01-04 14:11   ` Simon Glass [this message]
2022-01-18 17:40   ` Tom Rini
2022-01-01 17:13 ` [PATCH v2 3/7] common: board_r: drop initr_kgdb wrapper Ovidiu Panait
2022-01-18 17:40   ` Tom Rini
2022-01-01 17:13 ` [PATCH v2 4/7] common: board_r: drop initr_addr_map wrapper Ovidiu Panait
2022-01-18 17:40   ` Tom Rini
2022-01-01 17:13 ` [PATCH v2 5/7] common: board_r: move init_addr_map() to init.h Ovidiu Panait
2022-01-18 17:40   ` Tom Rini
2022-01-01 17:13 ` [PATCH v2 6/7] common: board_r: include asm-generic/gpio.h Ovidiu Panait
2022-01-18 17:40   ` Tom Rini
2022-01-01 17:13 ` [PATCH v2 7/7] common: board_r: drop ifdefs around header includes Ovidiu Panait
2022-01-18 17:40   ` Tom Rini
2022-01-18 17:39 ` [PATCH v2 1/7] common: spl: move armv7m-specific code to spl_perform_fixups() Tom Rini

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='CAPnjgZ32bYCybwCAxm_BJ-bm75Gd9h33hOe7R5Jm=BMGMWu+Fg@mail.gmail.com' \
    --to=sjg@chromium.org \
    --cc=a-govindraju@ti.com \
    --cc=ashe@kivikakk.ee \
    --cc=aymen.sghaier@nxp.com \
    --cc=bmeng.cn@gmail.com \
    --cc=franck.lenormand@nxp.com \
    --cc=joel.peshkin@broadcom.com \
    --cc=jorge@foundries.io \
    --cc=kory.maincent@bootlin.com \
    --cc=m.szyprowski@samsung.com \
    --cc=macromorgan@hotmail.com \
    --cc=mario.six@gdsys.cc \
    --cc=maxime@cerno.tech \
    --cc=michal.simek@xilinx.com \
    --cc=mr.nuke.me@gmail.com \
    --cc=ovidiu.panait@windriver.com \
    --cc=peng.fan@nxp.com \
    --cc=pragnesh.patel@sifive.com \
    --cc=priyanka.jain@nxp.com \
    --cc=rasmus.villemoes@prevas.dk \
    --cc=roland.gaudig@weidmueller.com \
    --cc=tharvey@gateworks.com \
    --cc=thuth@redhat.com \
    --cc=u-boot@lists.denx.de \
    --cc=wd@denx.de \
    --cc=xypron.glpk@gmx.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 an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.