public inbox for linux-omap@vger.kernel.org
 help / color / mirror / Atom feed
From: Tony Lindgren <tony@atomide.com>
To: Felipe Balbi <felipe.balbi@nokia.com>
Cc: ext Roman Tereshonkov <roman.tereshonkov@nokia.com>,
	linux-omap@vger.kernel.org
Subject: Re: [PATCH] SDTI: Add netlink support for debug message output.
Date: Wed, 26 Nov 2008 09:26:23 -0800	[thread overview]
Message-ID: <20081126172621.GM11997@atomide.com> (raw)
In-Reply-To: <20081118132644.GX20808@gandalf.research.nokia.com>

* Felipe Balbi <felipe.balbi@nokia.com> [081118 05:27]:
> On Wed, Oct 29, 2008 at 01:39:28PM +0200, Tereshonkov Roman wrote:
> > Add support for user to use netlink for message output to XTI.
> > Add autoidle feature if SDTI is not used.
> > 
> > Signed-off-by: Roman Tereshonkov <roman.tereshonkov@nokia.com>
> 
> Acked-by: Felipe Balbi <felipe.balbi@nokia.com>

Pushing to l-o today. Roman, do you have any plans to submit this for
integration on LKML? The OMAP_TAG_STI_CONSOLE would need to be removed
for mainline and be replaced with cmdline parsing for console=...

Tony

> 
> > ---
> >  drivers/misc/sti/Makefile      |    2 +-
> >  drivers/misc/sti/sdti.c        |   14 ++++++++++----
> >  drivers/misc/sti/sti-netlink.c |    8 +++++++-
> >  3 files changed, 18 insertions(+), 6 deletions(-)
> > 
> > diff --git a/drivers/misc/sti/Makefile b/drivers/misc/sti/Makefile
> > index aee30bd..43574d1 100644
> > --- a/drivers/misc/sti/Makefile
> > +++ b/drivers/misc/sti/Makefile
> > @@ -2,7 +2,7 @@ ifeq ($(CONFIG_ARCH_OMAP3),y)
> >  obj-$(CONFIG_OMAP_STI)	+= sdti.o
> >  else
> >  obj-$(CONFIG_OMAP_STI)	+= sti.o sti-fifo.o
> > -obj-$(CONFIG_NET)	+= sti-netlink.o
> >  endif
> >  
> > +obj-$(CONFIG_NET)	+= sti-netlink.o
> >  obj-$(CONFIG_OMAP_STI_CONSOLE)	+= sti-console.o
> > diff --git a/drivers/misc/sti/sdti.c b/drivers/misc/sti/sdti.c
> > index 4514783..92ce57b 100644
> > --- a/drivers/misc/sti/sdti.c
> > +++ b/drivers/misc/sti/sdti.c
> > @@ -31,11 +31,14 @@
> >  #define CPU1_TRACE_EN		0x01
> >  #define CPU2_TRACE_EN		0x02
> >  
> > +#define SDTI_SYSCONFIG_SOFTRESET	(1 << 1)
> > +#define SDTI_SYSCONFIG_AUTOIDLE		(1 << 0)
> > +
> >  static struct clk *sdti_ck;
> >  void __iomem *sti_base, *sti_channel_base;
> >  static DEFINE_SPINLOCK(sdti_lock);
> >  
> > -void omap_sti_channel_write_trace(int len, int id, void *data,
> > +void sti_channel_write_trace(int len, int id, void *data,
> >  				unsigned int channel)
> >  {
> >  	const u8 *tpntr = data;
> > @@ -49,13 +52,13 @@ void omap_sti_channel_write_trace(int len, int id, void *data,
> >  
> >  	spin_unlock_irq(&sdti_lock);
> >  }
> > -EXPORT_SYMBOL(omap_sti_channel_write_trace);
> > +EXPORT_SYMBOL(sti_channel_write_trace);
> >  
> >  static void omap_sdti_reset(void)
> >  {
> >  	int i;
> >  
> > -	sti_writel(0x02, SDTI_SYSCONFIG);
> > +	sti_writel(SDTI_SYSCONFIG_SOFTRESET, SDTI_SYSCONFIG);
> >  
> >  	for (i = 0; i < 10000; i++)
> >  		if (sti_readl(SDTI_SYSSTATUS) & 1)
> > @@ -79,6 +82,9 @@ static int __init omap_sdti_init(void)
> >  	omap_sdti_reset();
> >  	sti_writel(0xC5ACCE55, SDTI_LOCK_ACCESS);
> >  
> > +	/* Autoidle */
> > +	sti_writel(SDTI_SYSCONFIG_AUTOIDLE, SDTI_SYSCONFIG);
> > +
> >  	/* Claim SDTI */
> >  	sti_writel(1 << 30, SDTI_WINCTRL);
> >  	i = sti_readl(SDTI_WINCTRL);
> > @@ -99,7 +105,7 @@ static int __init omap_sdti_init(void)
> >  	snprintf(buf, sizeof(buf), "OMAP SDTI support loaded (HW v%u.%u)\n",
> >  		(i >> 4) & 0x0f, i & 0x0f);
> >  	printk(KERN_INFO "%s", buf);
> > -	omap_sti_channel_write_trace(strlen(buf), 0xc3, buf, 239);
> > +	sti_channel_write_trace(strlen(buf), 0xc3, buf, 239);
> >  
> >  	return 0;
> >  }
> > diff --git a/drivers/misc/sti/sti-netlink.c b/drivers/misc/sti/sti-netlink.c
> > index f1f8a48..b198e4c 100644
> > --- a/drivers/misc/sti/sti-netlink.c
> > +++ b/drivers/misc/sti/sti-netlink.c
> > @@ -25,6 +25,7 @@ enum {
> >  	STI_WRITE,
> >  };
> >  
> > +#if defined(CONFIG_ARCH_OMAP1) || defined(CONFIG_ARCH_OMAP2)
> >  static int sti_netlink_read(int pid, int seq, void *payload, int size)
> >  {
> >  	struct sk_buff *skb;
> > @@ -55,6 +56,7 @@ nlmsg_failure:
> >  
> >  	return -EINVAL;
> >  }
> > +#endif
> >  
> >  /*
> >   * We abuse nlmsg_type and nlmsg_flags for our purposes.
> > @@ -66,7 +68,7 @@ static int sti_netlink_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
> >  {
> >  	void *data;
> >  	u8 chan, id;
> > -	int size, ret = 0, len = 0;
> > +	int size, ret = 0;
> >  
> >  	data	= NLMSG_DATA(nlh);
> >  	chan	= (nlh->nlmsg_flags >> 8) & 0xff;
> > @@ -77,7 +79,10 @@ static int sti_netlink_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
> >  	case STI_WRITE:
> >  		sti_channel_write_trace(size, id, data, chan);
> >  		break;
> > +#if defined(CONFIG_ARCH_OMAP1) || defined(CONFIG_ARCH_OMAP2)
> >  	case STI_READ:
> > +		int len = 0;
> > +
> >  		data = kmalloc(size, GFP_KERNEL);
> >  		if (!data)
> >  			return -ENOMEM;
> > @@ -88,6 +93,7 @@ static int sti_netlink_receive_msg(struct sk_buff *skb, struct nlmsghdr *nlh)
> >  				       data, len);
> >  		kfree(data);
> >  		break;
> > +#endif
> >  	default:
> >  		return -ENOTTY;
> >  	}
> > -- 
> > 1.5.5.1
> > 
> > --
> > To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> > the body of a message to majordomo@vger.kernel.org
> > More majordomo info at  http://vger.kernel.org/majordomo-info.html
> 
> -- 
> balbi
> --
> To unsubscribe from this list: send the line "unsubscribe linux-omap" in
> the body of a message to majordomo@vger.kernel.org
> More majordomo info at  http://vger.kernel.org/majordomo-info.html

      reply	other threads:[~2008-11-26 17:26 UTC|newest]

Thread overview: 3+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2008-10-29 11:39 [PATCH] SDTI: Add netlink support for debug message output Roman Tereshonkov
2008-11-18 13:26 ` Felipe Balbi
2008-11-26 17:26   ` Tony Lindgren [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=20081126172621.GM11997@atomide.com \
    --to=tony@atomide.com \
    --cc=felipe.balbi@nokia.com \
    --cc=linux-omap@vger.kernel.org \
    --cc=roman.tereshonkov@nokia.com \
    /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