[PATCH 3/3] Add early debug console for CPM serial ports.
Scott Wood
scottwood at freescale.com
Thu Aug 30 00:02:39 EST 2007
On Wed, Aug 29, 2007 at 03:45:40PM +1000, David Gibson wrote:
> > diff --git a/arch/powerpc/Kconfig.debug b/arch/powerpc/Kconfig.debug
> > index 22acece..d471154 100644
> > --- a/arch/powerpc/Kconfig.debug
> > +++ b/arch/powerpc/Kconfig.debug
> > @@ -211,6 +211,15 @@ config PPC_EARLY_DEBUG_44x
> > Select this to enable early debugging for IBM 44x chips via the
> > inbuilt serial port.
> >
> > +config PPC_EARLY_DEBUG_CPM
> > + bool "Early serial debugging for Freescale CPM-based serial ports"
> > + depends on SERIAL_CPM
> > + select PIN_TLB if PPC_8xx
>
> I see this Kconfig line, but I don't see any code below that would set
> up a suitable TLB on 8xx for the CPM...?
There's existing code that pins the IMMR when that option is enabled.
It's a bit broken, but there's a patch in the 8xx series that fixes it.
> > # Temporary hack until we have migrated to asm-powerpc
> > ifeq ($(ARCH),powerpc)
> > +obj-$(CONFIG_CPM1)$(CONFIG_CPM2) += cpm_common.o
>
> Uh.. I don't think this will work properly. If CONFIG_CPM1 and
> CONFIG_CPM2 are both enabled, it will set obj-yy rather than obj-y.
The assumption was that CPM1 and CPM2 are never going to both be enabled,
as CPM1 only exists on hardware with a unique MMU.
I could add an obj-y += $(obj-yy) if you like, though.
> Since this is all udbg related, it could go (within an ifdef) into
> udbg.c rather than creating a new file for it.
Well, I was hoping that more consolidation between cpm1 and cpm2 (and
qe/cpm3, for that matter) would happen in the future, and this would be a
place to put it.
> Urg... this is ugly, because it looks like it can be muti-platform,
> but actually isn't. I think a better approach is to set the magic
> address as a Kconfig variable, as we do on 44x. This approach can
> also be useful for hacking up early debug for new chips during the
> process of creating platform code for them.
OK.
-Scott
More information about the Linuxppc-dev
mailing list