public inbox for linux-sh@vger.kernel.org
 help / color / mirror / Atom feed
From: Nobuhiro Iwamatsu <iwamatsu.nobuhiro@renesas.com>
To: linux-sh@vger.kernel.org
Subject: Re: Question about sh-sci on SH7723
Date: Thu, 09 Apr 2009 02:51:26 +0000	[thread overview]
Message-ID: <49DD62AE.2090700@renesas.com> (raw)
In-Reply-To: <uk55vvebh.wl%morimoto.kuninori@renesas.com>

[-- Attachment #1: Type: text/plain, Size: 1028 bytes --]

morimoto.kuninori@renesas.com wrote:
> Dear yoshii
> 
> Thank you for comment
> 
>>> I have question about sh-sci on SH7723.
>> ...
>>> seems return SCIF0_TXD value.
>> At least, old chips like 7709/7750 have SCPTR bit multiplexed.
>> It returns RXD when read, sets TxD when write.
> 
> Hmm.
> At least 7786/7785/7763 have SCSPTR register.
> It indicates RXD/TXD for me.
> 
> May be it is same as  7709/7750's SCPTR.
> (I don't have these manual)

You can get these from renesas website.

> 
>> What are SCPTR bits on SH7723 like?
> 
> But SH7723 doesn't have SCPTR/SCSPTR register.
> Therefore, I thought that it used IO port.
> 
> So, I thought that it should read RXD pin if it use IO port.
> 
>> # I think you would better asking your boss to put the HW manual on WWW.
> 
> Oops !
> Is SH7723's manual un-public one ?
> 

I think that this is coding miss.
If you check implemenation of other SH CPU's(e.g. SH7722),
you can understand that other CPU checked RXD bit.

I attached patch to fix this.

Best regards,
  Nobuhiro


[-- Attachment #2: 0001-sh-Fix-rxd-check-bit-of-sci_rxd_in-for-sh7723.patch --]
[-- Type: text/plain, Size: 1798 bytes --]

From 9dcbe0f455229250daa353d6b199d6f41b457e05 Mon Sep 17 00:00:00 2001
From: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
Date: Wed, 8 Apr 2009 16:10:19 +0900
Subject: [PATCH] sh: Fix rxd check bit of sci_rxd_in for sh7723

Reported-by: Kuninori Morimoto <morimoto.kuninori@renesas.com>
Signed-off-by: Nobuhiro Iwamatsu <iwamatsu@nigauri.org>
---
 drivers/serial/sh-sci.h |   10 +++++-----
 1 files changed, 5 insertions(+), 5 deletions(-)

diff --git a/drivers/serial/sh-sci.h b/drivers/serial/sh-sci.h
index d0aa82d..cc51500 100644
--- a/drivers/serial/sh-sci.h
+++ b/drivers/serial/sh-sci.h
@@ -591,15 +591,15 @@ static inline int sci_rxd_in(struct uart_port *port)
 static inline int sci_rxd_in(struct uart_port *port)
 {
         if (port->mapbase == 0xffe00000)
-                return ctrl_inb(SCSPTR0) & 0x0008 ? 1 : 0; /* SCIF0 */
+                return ctrl_inb(SCSPTR0) & 0x0010 ? 1 : 0; /* SCIF0 */
         if (port->mapbase == 0xffe10000)
-                return ctrl_inb(SCSPTR1) & 0x0020 ? 1 : 0; /* SCIF1 */
+                return ctrl_inb(SCSPTR1) & 0x0040 ? 1 : 0; /* SCIF1 */
         if (port->mapbase == 0xffe20000)
-                return ctrl_inb(SCSPTR2) & 0x0001 ? 1 : 0; /* SCIF2 */
+                return ctrl_inb(SCSPTR2) & 0x0002 ? 1 : 0; /* SCIF2 */
         if (port->mapbase == 0xa4e30000)
-                return ctrl_inb(SCSPTR3) & 0x0001 ? 1 : 0; /* SCIF3 */
+                return ctrl_inb(SCSPTR3) & 0x0002 ? 1 : 0; /* SCIF3 */
         if (port->mapbase == 0xa4e40000)
-                return ctrl_inb(SCSPTR4) & 0x0001 ? 1 : 0; /* SCIF4 */
+                return ctrl_inb(SCSPTR4) & 0x0002 ? 1 : 0; /* SCIF4 */
         if (port->mapbase == 0xa4e50000)
                 return ctrl_inb(SCSPTR5) & 0x0008 ? 1 : 0; /* SCIF5 */
         return 1;
-- 
1.6.2.2


  parent reply	other threads:[~2009-04-09  2:51 UTC|newest]

Thread overview: 11+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2009-04-08  6:40 Question about sh-sci on SH7723 morimoto.kuninori
2009-04-08 13:32 ` takasi-y
2009-04-09  2:03 ` morimoto.kuninori
2009-04-09  2:51 ` Nobuhiro Iwamatsu [this message]
2009-04-09  4:03 ` morimoto.kuninori
2009-04-09  4:25 ` morimoto.kuninori
2009-04-09  5:53 ` Nobuhiro Iwamatsu
2009-04-09  7:42 ` morimoto.kuninori
2009-04-10  5:24 ` morimoto.kuninori
2009-04-15  2:52 ` Nobuhiro Iwamatsu
2009-04-16  2:56 ` Kuninori Morimoto

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=49DD62AE.2090700@renesas.com \
    --to=iwamatsu.nobuhiro@renesas.com \
    --cc=linux-sh@vger.kernel.org \
    /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