All of lore.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: Marcin Juszkiewicz <openembedded@hrw.one.pl>
Cc: linux-omap-open-source@linux.omap.com
Subject: Re: Disable DSPGW fails
Date: Thu, 19 Oct 2006 16:50:30 +0300	[thread overview]
Message-ID: <20061019135028.GH9983@atomide.com> (raw)
In-Reply-To: <200610041211.53114.openembedded@hrw.one.pl>

Hi,

* Marcin Juszkiewicz <openembedded@hrw.one.pl> [061004 13:12]:
> Dnia środa, 4 października 2006 10:47, Dirk Behme napisał:
> 
> > while debugging the OSK issue, I tried to disable DSPGW
> > completely (CONFIG_OMAP_DSP is not set). On most recent git
> > this fails with
> >
> > arch/arm/plat-omap/built-in.o: In function `omap_mcbsp_free':
> > mcbsp.c:(.text+0x44b8): undefined reference to
> > `omap_dsp_release_mem'
> > arch/arm/plat-omap/built-in.o: In function `omap_mcbsp_request':
> > mcbsp.c:(.text+0x45cc): undefined reference to
> > `omap_dsp_request_mem'
> >
> > Anybody with an idea how to fix this?
> 
> Attached patch fix it. Feel free to push it into correct maintainer to get 
> it included in GIT tree.
> 
> -- 
> JID: hrw-jabber.org
> OpenEmbedded developer
> 
>              Today is the first day of the rest of your life.

> 
> while debugging the OSK issue, I tried to disable DSPGW 
> completely (CONFIG_OMAP_DSP is not set). 
> 
> On most recent git this fails with
> 
> arch/arm/plat-omap/built-in.o: In function `omap_mcbsp_free':
> mcbsp.c:(.text+0x44b8): undefined reference to 
> `omap_dsp_release_mem'
> arch/arm/plat-omap/built-in.o: In function `omap_mcbsp_request':
> mcbsp.c:(.text+0x45cc): undefined reference to 
> `omap_dsp_request_mem'
> 
> This patch fixes it.
> 
> Signed-off-by: Marcin Juszkiewicz <openembedded@hrw.one.pl>
> 
> 
> Index: git/arch/arm/plat-omap/mcbsp.c
> ===================================================================
> --- git.orig/arch/arm/plat-omap/mcbsp.c 2006-09-27 12:17:21.000000000 +0200
> +++ git/arch/arm/plat-omap/mcbsp.c      2006-09-27 12:17:01.000000000 +0200
> @@ -197,7 +197,9 @@
>  static void omap_mcbsp_dsp_request(void)
>  {
>         if (cpu_is_omap15xx() || cpu_is_omap16xx()) {
> +#ifdef CONFIG_OMAP_DSP
>                 omap_dsp_request_mem();
> +#endif
>                 clk_enable(mcbsp_dsp_ck);
>                 clk_enable(mcbsp_api_ck);

> 
> @@ -216,7 +218,9 @@
>  static void omap_mcbsp_dsp_free(void)
>  {
>         if (cpu_is_omap15xx() || cpu_is_omap16xx()) {
> +#ifdef CONFIG_OMAP_DSP
>                 omap_dsp_release_mem();
> +#endif
>                 clk_disable(mcbsp_dspxor_ck);
>                 clk_disable(mcbsp_dsp_ck);
>                 clk_disable(mcbsp_api_ck);

This patch disables using McBSP without CONFIG_OMAP_DSP. I've posted
another patch that should keep the old functionality, can you please try
that out?

Regards,

Tony

  reply	other threads:[~2006-10-19 13:50 UTC|newest]

Thread overview: 4+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-10-04  8:47 Disable DSPGW fails Dirk Behme
2006-10-04 10:11 ` Marcin Juszkiewicz
2006-10-19 13:50   ` Tony Lindgren [this message]
2006-10-19 14:10     ` Marcin Juszkiewicz

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=20061019135028.GH9983@atomide.com \
    --to=tony@atomide.com \
    --cc=linux-omap-open-source@linux.omap.com \
    --cc=openembedded@hrw.one.pl \
    /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.