public inbox for u-boot@lists.denx.de
 help / color / mirror / Atom feed
From: Marek Vasut <marex@denx.de>
To: u-boot@lists.denx.de
Subject: [U-Boot] [PATCH 1/2] MX28: Add CONFIG_MX28_DEBUG
Date: Wed, 29 Aug 2012 12:59:00 +0200	[thread overview]
Message-ID: <201208291259.03438.marex@denx.de> (raw)
In-Reply-To: <503DCAC7.1050003@denx.de>

Dear Stefano Babic,

> On 29/08/2012 03:14, Marek Vasut wrote:
> > This functionality allows configuring SCRATCH0 and SCRATCH1 registers
> > to special values, which make the SPL hang after the CPU was properly
> > initialized.
> > 
> > This is for bootstrap purposes only and MUST BE DISABLED for normal
> > operation.
> > 
> > Signed-off-by: Marek Vasut <marex@denx.de>
> > Cc: Wolfgang Denk <wd@denx.de>
> > Cc: Stefano Babic <sbabic@denx.de>
> > Cc: Fabio Estevam <fabio.estevam@freescale.com>
> > ---
> 
> Hi Marek,
> 
> >  arch/arm/cpu/arm926ejs/mxs/Makefile    |    3 ++
> >  arch/arm/cpu/arm926ejs/mxs/mxs_init.h  |    6 +++
> >  arch/arm/cpu/arm926ejs/mxs/spl_boot.c  |    2 +
> >  arch/arm/cpu/arm926ejs/mxs/spl_debug.c |   63
> >  ++++++++++++++++++++++++++++++++ 4 files changed, 74 insertions(+)
> >  create mode 100644 arch/arm/cpu/arm926ejs/mxs/spl_debug.c
> > 
> > diff --git a/arch/arm/cpu/arm926ejs/mxs/Makefile
> > b/arch/arm/cpu/arm926ejs/mxs/Makefile index eeecf89..e75eabd 100644
> > --- a/arch/arm/cpu/arm926ejs/mxs/Makefile
> > +++ b/arch/arm/cpu/arm926ejs/mxs/Makefile
> > @@ -29,6 +29,9 @@ COBJS	= clock.o mxs.o iomux.o timer.o
> > 
> >  ifdef	CONFIG_SPL_BUILD
> >  COBJS	+= spl_boot.o spl_lradc_init.o spl_mem_init.o spl_power_init.o
> > 
> > +ifdef	CONFIG_MX28_DEBUG
> > +COBJS	+= spl_debug.o
> > +endif
> > 
> >  endif
> >  
> >  SRCS	:= $(START:.o=.S) $(COBJS:.o=.c)
> > 
> > diff --git a/arch/arm/cpu/arm926ejs/mxs/mxs_init.h
> > b/arch/arm/cpu/arm926ejs/mxs/mxs_init.h index 2ddc5bc..e6f837c 100644
> > --- a/arch/arm/cpu/arm926ejs/mxs/mxs_init.h
> > +++ b/arch/arm/cpu/arm926ejs/mxs/mxs_init.h
> > @@ -42,4 +42,10 @@ uint32_t mxs_mem_get_size(void);
> > 
> >  void mxs_lradc_init(void);
> >  void mxs_lradc_enable_batt_measurement(void);
> > 
> > +#ifdef CONFIG_MX28_DEBUG
> > +void mx28_common_spl_debug_halt(void);
> > +#else
> > +static inline void mx28_common_spl_debug_halt(void) {}
> > +#endif
> > +
> > 
> >  #endif	/* __M28_INIT_H__ */
> > 
> > diff --git a/arch/arm/cpu/arm926ejs/mxs/spl_boot.c
> > b/arch/arm/cpu/arm926ejs/mxs/spl_boot.c index ad66c57..f4f0c09 100644
> > --- a/arch/arm/cpu/arm926ejs/mxs/spl_boot.c
> > +++ b/arch/arm/cpu/arm926ejs/mxs/spl_boot.c
> > @@ -108,6 +108,8 @@ void mxs_common_spl_init(const iomux_cfg_t
> > *iomux_setup,
> > 
> >  	data->boot_mode_idx = bootmode;
> > 
> > +	mx28_common_spl_debug_halt();
> > +
> > 
> >  	mxs_power_wait_pswitch();
> >  
> >  }
> 
> I admit I use the same trick when the first initialization fails and I
> want to check what happens. Make the SOC hanging helps, sure.

Yea ... so either way if it's merged or not, I hope it might help someone :)

> However, this is part of the porting / development. Why should we
> introduce this code into mainline ? In the official configuration file
> CONFIG_MX28_DEBUG must be off, and then all this stuff is dead code.

Indeed, I'll shift this decision on you ;-)

> 
> Regards,
> Stefano

Best regards,
Marek Vasut

      reply	other threads:[~2012-08-29 10:59 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2012-08-29  1:14 [U-Boot] [PATCH 1/2] MX28: Add CONFIG_MX28_DEBUG Marek Vasut
2012-08-29  1:14 ` [U-Boot] [PATCH 2/2] MX28: Add LRADC dump into SPL debug Marek Vasut
2012-08-29  7:54 ` [U-Boot] [PATCH 1/2] MX28: Add CONFIG_MX28_DEBUG Stefano Babic
2012-08-29 10:59   ` Marek Vasut [this message]

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=201208291259.03438.marex@denx.de \
    --to=marex@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