public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Lukasz Majewski <lukma@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH v3 07/22] pcm052: board: Remove "m4go" command as it is superseded by "bootaux"
Date: Wed, 13 Feb 2019 16:01:47 +0100	[thread overview]
Message-ID: <20190213160147.78b08b6e@jawa> (raw)
In-Reply-To: <281c1fceffcdb46fc663256a1a33dd4dcbea0851.camel@toradex.com>

Hi Marcel,

> Hi Lukasz
> 
> On Sun, 2019-02-03 at 00:02 +0100, Lukasz Majewski wrote:
> > The "m4go" provides exactly the same functionality as the IMX
> > generic "bootaux" command. Remove it to not duplicate the code.  
> 
> Makes sense but as far as I can tell from its Kconfig so far bootaux
> is only for i.MX 7 and i.MX 6. Should I send a patch for this?

Yes, please prepare a patch on top of this series.

(I'm now build testing v4 of this patch series, and plan to post it
tonight).

> Plus
> you would also have to enable bootaux support in your defconfig.

It turned out that BK4 is finally not using it, so I don't need to
enable it.

> 
> Cheers
> 
> Marcel
> 
> > Signed-off-by: Lukasz Majewski <lukma@denx.de>
> > ---
> > 
> > Changes in v3: None
> > Changes in v2: None
> > 
> >  board/phytec/pcm052/pcm052.c | 38
> > ---------------------------------- ----
> >  1 file changed, 38 deletions(-)
> > 
> > diff --git a/board/phytec/pcm052/pcm052.c
> > b/board/phytec/pcm052/pcm052.c
> > index cfc8009102..4e4b870304 100644
> > --- a/board/phytec/pcm052/pcm052.c
> > +++ b/board/phytec/pcm052/pcm052.c
> > @@ -577,41 +577,3 @@ int checkboard(void)
> >  
> >  	return 0;
> >  }
> > -
> > -static int do_m4go(cmd_tbl_t *cmdtp, int flag, int argc,
> > -		       char * const argv[])
> > -{
> > -	ulong addr;
> > -
> > -	/* Consume 'm4go' */
> > -	argc--; argv++;
> > -
> > -	/*
> > -	 * Parse provided address - default to load_addr in case
> > not provided.
> > -	 */
> > -
> > -	if (argc)
> > -		addr = simple_strtoul(argv[0], NULL, 16);
> > -	else
> > -		addr = load_addr;
> > -
> > -	/*
> > -	 * Write boot address in PERSISTENT_ENTRY1[31:0] aka
> > SRC_GPR2[31:0]
> > -	 */
> > -	writel(addr + 0x401, 0x4006E028);
> > -
> > -	/*
> > -	 * Start secondary processor by enabling its clock
> > -	 */
> > -	writel(0x15a5a, 0x4006B08C);
> > -
> > -	return 1;
> > -}
> > -
> > -U_BOOT_CMD(
> > -	m4go, 2 /* one arg max */, 1 /* repeatable */, do_m4go,
> > -	"start the secondary Cortex-M4 from scatter file image",
> > -	"[<addr>]\n"
> > -	"    - start secondary Cortex-M4 core using a scatter file
> > image\n"
> > -	"The argument needs to be a scatter file\n"
> > -);  




Best regards,

Lukasz Majewski

--

DENX Software Engineering GmbH,      Managing Director: Wolfgang Denk
HRB 165235 Munich, Office: Kirchenstr.5, D-82194 Groebenzell, Germany
Phone: (+49)-8142-66989-59 Fax: (+49)-8142-66989-80 Email: lukma at denx.de
-------------- next part --------------
A non-text attachment was scrubbed...
Name: not available
Type: application/pgp-signature
Size: 488 bytes
Desc: OpenPGP digital signature
URL: <http://lists.denx.de/pipermail/u-boot/attachments/20190213/04bf87ea/attachment.sig>

  reply	other threads:[~2019-02-13 15:01 UTC|newest]

Thread overview: 34+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2019-02-02 23:02 [U-Boot] [PATCH v3 00/22] imx: vybrid: Update BK4 and PCM052 boards to only use DM/DTS Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 01/22] net: FEC: Add compatible for vybrid (vf610) to reuse fec_mxc.c driver Lukasz Majewski
2019-02-12  0:08   ` Marcel Ziswiler
2019-02-12  6:51     ` Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 02/22] net: Kconfig: FEC: Add dependency on VF610 Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 03/22] vybrid: ddr: Extend vf610-pinfunc.h with DDR pads definitions Lukasz Majewski
2019-02-12  0:04   ` Marcel Ziswiler
2019-02-12  6:44     ` Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 04/22] vybrid: clock: Provide enable_i2c_clk() function for Vybrid Lukasz Majewski
2019-02-07  8:35   ` Stefan Agner
2019-02-12  0:09   ` Marcel Ziswiler
2019-02-02 23:02 ` [U-Boot] [PATCH v3 05/22] pcm052: board: Do not enable I2C2 code in the board file Lukasz Majewski
2019-02-12  0:12   ` Marcel Ziswiler
2019-02-02 23:02 ` [U-Boot] [PATCH v3 06/22] vybrid: Define the imx_get_mac_from_fuse() as a __weak function Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 07/22] pcm052: board: Remove "m4go" command as it is superseded by "bootaux" Lukasz Majewski
2019-02-13 14:51   ` Marcel Ziswiler
2019-02-13 15:01     ` Lukasz Majewski [this message]
2019-02-02 23:02 ` [U-Boot] [PATCH v3 08/22] pcm052: board: vybrid: Update the board name for BK4 device Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 09/22] ARM: DTS: vybrid: Update vf.dtsi file to descibe more vf610 hardware Lukasz Majewski
2019-02-12  0:13   ` Marcel Ziswiler
2019-02-02 23:02 ` [U-Boot] [PATCH v3 10/22] pcm052: board: cosmetic: Add copyright notice to pcm052.c Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 11/22] ARM: DTS: Update pcm052 based dts files (bk4r1/pcm052) Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 12/22] ARM: DTS: Provide vf610-bk4r1-u-boot.dtsi for U-Boot specific properties Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 13/22] defconfig: bk4/pcm052: Update bk4r1|pcm052_defconfig to support DM/DT Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 14/22] config: pcm052: Use SZ_X{MK} from linux/sizes.h for include/configs/pcm052.h Lukasz Majewski
2019-02-12  0:16   ` Marcel Ziswiler
2019-02-02 23:02 ` [U-Boot] [PATCH v3 15/22] config: bk4: Update include/configs/bk4r1.h file Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 16/22] pcm052: board: Remove in-board setup code (it is now replaced by DM setup) Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 17/22] config: bk4: Update u-boot script to support recovery via SD card Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 18/22] config: bk4: Update u-boot envs to support NOR memories initial setup Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 19/22] pcm052: bk4: sdcard: Add support for SD card booting/recovery Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 20/22] pcm052: board: Add code to setup LED default states Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 21/22] pcm052: mac: Provide board specific imx_get_mac_from_fuse() function Lukasz Majewski
2019-02-02 23:02 ` [U-Boot] [PATCH v3 22/22] pcm052: bk4: Add board_phy_config() for BK4 to setup ksz8081 phy Lukasz Majewski

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=20190213160147.78b08b6e@jawa \
    --to=lukma@denx.de \
    --cc=u-boot@lists.denx.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