All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH] sh-sci h8300 fix
@ 2009-04-28  4:40 Yoshinori Sato
  2009-04-28  6:46 ` Paul Mundt
                   ` (2 more replies)
  0 siblings, 3 replies; 4+ messages in thread
From: Yoshinori Sato @ 2009-04-28  4:40 UTC (permalink / raw)
  To: linux-sh

- Dummy SCIF functions define.
- h8300 specific header include.

Signed-off-by: Yoshinori Sato <ysato@users.sourceforge.jp>

diff --git a/drivers/serial/sh-sci.c b/drivers/serial/sh-sci.c
index dbf5357..d85b2ae 100644
--- a/drivers/serial/sh-sci.c
+++ b/drivers/serial/sh-sci.c
@@ -53,6 +53,10 @@
 #include <asm/sh_bios.h>
 #endif
 
+#ifdef CONFIG_H8300
+#include <asm/gpio.h>
+#endif
+
 #include "sh-sci.h"
 
 struct sci_port {
diff --git a/drivers/serial/sh-sci.h b/drivers/serial/sh-sci.h
index d0aa82d..a9c9e56 100644
--- a/drivers/serial/sh-sci.h
+++ b/drivers/serial/sh-sci.h
@@ -314,6 +314,7 @@
     }									\
   }
 
+#ifndef CONFIG_H8300
 #define CPU_SCIF_FNS(name, scif_offset, scif_size)				\
   static inline unsigned int sci_##name##_in(struct uart_port *port)	\
   {									\
@@ -323,6 +324,17 @@
   {									\
     SCI_OUT(scif_size, scif_offset, value);				\
   }
+#else
+/* h8300 don't have SCIF */
+#define CPU_SCIF_FNS(name)						\
+  static inline unsigned int sci_##name##_in(struct uart_port *port)	\
+  {									\
+    return 0;								\
+  }									\
+  static inline void sci_##name##_out(struct uart_port *port, unsigned int value) \
+  {									\
+  }
+#endif
 
 #define CPU_SCI_FNS(name, sci_offset, sci_size)				\
   static inline unsigned int sci_##name##_in(struct uart_port* port)	\
@@ -360,7 +372,8 @@
 		 sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size, \
                  h8_sci_offset, h8_sci_size) \
   CPU_SCI_FNS(name, h8_sci_offset, h8_sci_size)
-#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size)
+#define SCIF_FNS(name, sh3_scif_offset, sh3_scif_size, sh4_scif_offset, sh4_scif_size) \
+  CPU_SCIF_FNS(name)
 #elif defined(CONFIG_CPU_SUBTYPE_SH7723)
         #define SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size, sh4_scif_offset, sh4_scif_size) \
                 CPU_SCIx_FNS(name, sh4_scifa_offset, sh4_scifa_size, sh4_scif_offset, sh4_scif_size)

-- 
Yoshinori Sato
<ysato@users.sourceforge.jp>

^ permalink raw reply related	[flat|nested] 4+ messages in thread

* Re: [PATCH] sh-sci h8300 fix
  2009-04-28  4:40 [PATCH] sh-sci h8300 fix Yoshinori Sato
@ 2009-04-28  6:46 ` Paul Mundt
  2009-04-28 20:46 ` Yoshinori Sato
  2009-05-08 14:51 ` Paul Mundt
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Mundt @ 2009-04-28  6:46 UTC (permalink / raw)
  To: linux-sh

On Tue, Apr 28, 2009 at 12:40:15AM -0400, Yoshinori Sato wrote:
> - Dummy SCIF functions define.

Why? The generic ones should work fine for you.

> - h8300 specific header include.
> 
I guess this one we have to live with. Do you have any plans to convert
the H8300 GPIO API to GENERIC_GPIO?

Also, I note that h8300 does not register an sh-sci platform driver
anywhere. How exactly are you using this driver?

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] sh-sci h8300 fix
  2009-04-28  4:40 [PATCH] sh-sci h8300 fix Yoshinori Sato
  2009-04-28  6:46 ` Paul Mundt
@ 2009-04-28 20:46 ` Yoshinori Sato
  2009-05-08 14:51 ` Paul Mundt
  2 siblings, 0 replies; 4+ messages in thread
From: Yoshinori Sato @ 2009-04-28 20:46 UTC (permalink / raw)
  To: linux-sh

At Tue, 28 Apr 2009 15:46:22 +0900,
Paul Mundt wrote:
> 
> On Tue, Apr 28, 2009 at 12:40:15AM -0400, Yoshinori Sato wrote:
> > - Dummy SCIF functions define.
> 
> Why? The generic ones should work fine for you.

SCI don't have SCFCR, SCFDR and SCLSR register.
So use dummy r/w functions.


> 
> > - h8300 specific header include.
> > 
> I guess this one we have to live with. Do you have any plans to convert
> the H8300 GPIO API to GENERIC_GPIO?

Yes.
But not working now.

> Also, I note that h8300 does not register an sh-sci platform driver
> anywhere. How exactly are you using this driver?

It's already fixed.

-- 
Yoshinori Sato
<ysato@users.sourceforge.jp>

^ permalink raw reply	[flat|nested] 4+ messages in thread

* Re: [PATCH] sh-sci h8300 fix
  2009-04-28  4:40 [PATCH] sh-sci h8300 fix Yoshinori Sato
  2009-04-28  6:46 ` Paul Mundt
  2009-04-28 20:46 ` Yoshinori Sato
@ 2009-05-08 14:51 ` Paul Mundt
  2 siblings, 0 replies; 4+ messages in thread
From: Paul Mundt @ 2009-05-08 14:51 UTC (permalink / raw)
  To: linux-sh

On Tue, Apr 28, 2009 at 04:46:09PM -0400, Yoshinori Sato wrote:
> At Tue, 28 Apr 2009 15:46:22 +0900,
> Paul Mundt wrote:
> > 
> > On Tue, Apr 28, 2009 at 12:40:15AM -0400, Yoshinori Sato wrote:
> > > - Dummy SCIF functions define.
> > 
> > Why? The generic ones should work fine for you.
> 
> SCI don't have SCFCR, SCFDR and SCLSR register.
> So use dummy r/w functions.
> 
> 
> > 
> > > - h8300 specific header include.
> > > 
> > I guess this one we have to live with. Do you have any plans to convert
> > the H8300 GPIO API to GENERIC_GPIO?
> 
> Yes.
> But not working now.
> 
> > Also, I note that h8300 does not register an sh-sci platform driver
> > anywhere. How exactly are you using this driver?
> 
> It's already fixed.
> 
Ok, applied.

I would also like to get rid of the HAVE_CLK ifdefs within the driver and
simply depend on the clock framework outright. It would be nice if h8300
could implement a trivial clock framework implementation to feed sh-sci
the uart clock definitions, then we can clean up a lot of the current
mess..

^ permalink raw reply	[flat|nested] 4+ messages in thread

end of thread, other threads:[~2009-05-08 14:51 UTC | newest]

Thread overview: 4+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2009-04-28  4:40 [PATCH] sh-sci h8300 fix Yoshinori Sato
2009-04-28  6:46 ` Paul Mundt
2009-04-28 20:46 ` Yoshinori Sato
2009-05-08 14:51 ` Paul Mundt

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.