Re: [RFC PATCH 09/19] powerpc: gamecube/wii: udbg support for usbgecko

2009-11-26 Thread Albert Herranz
Benjamin Herrenschmidt wrote:
 On Sun, 2009-11-22 at 23:01 +0100, Albert Herranz wrote:
 Add support for using the USB Gecko adapter via the udbg facility on
 the Nintendo GameCube and Wii video game consoles.
 The USB Gecko is a 3rd party memory card interface adapter that provides
 a EXI (External Interface) to USB serial converter.
 
 The main issue here is that the gecko is supposed to be something you
 can plug or unplug no ? Is it hotswap or only at boot ? In the later
 case, maybe the node should be created by the boot wrapper when
 detecting the presence of the device. If it's hotplug, then we need
 something smarter...
 

The usbgecko is hotplugable and hotswappable.
But as this is mostly a developer feature, not normaly used by end users, I 
think that we can just let it be as it is: autodetect it on boot (now probing 
for it instead of using information from the device tree).
If you unplug it later it causes no errors, you just miss whatever data is sent 
to it.

 Cheers,
 Ben.
 

Thanks,
Albert


___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


Re: [RFC PATCH 09/19] powerpc: gamecube/wii: udbg support for usbgecko

2009-11-26 Thread Benjamin Herrenschmidt
On Thu, 2009-11-26 at 16:28 +0100, Albert Herranz wrote:
 Benjamin Herrenschmidt wrote:
  On Sun, 2009-11-22 at 23:01 +0100, Albert Herranz wrote:
  Add support for using the USB Gecko adapter via the udbg facility on
  the Nintendo GameCube and Wii video game consoles.
  The USB Gecko is a 3rd party memory card interface adapter that provides
  a EXI (External Interface) to USB serial converter.
  
  The main issue here is that the gecko is supposed to be something you
  can plug or unplug no ? Is it hotswap or only at boot ? In the later
  case, maybe the node should be created by the boot wrapper when
  detecting the presence of the device. If it's hotplug, then we need
  something smarter...
  
 
 The usbgecko is hotplugable and hotswappable.
 But as this is mostly a developer feature, not normaly used by end users,
 I think that we can just let it be as it is: autodetect it on boot (now 
 probing
 for it instead of using information from the device tree).
 If you unplug it later it causes no errors, you just miss whatever data is 
 sent to it.

Ack. We may still went ultimately to have some kind of nice hotplug
driver for that connector and we may even have a usbgecko driver for
that things after boot that creates areal tty etc... but for now, just
a hard probe will do just fine.

Of course a real OF implemention is welcome to create a device node for
it if it was indeed present at boot time.

Cheers,
Ben.

  Cheers,
  Ben.
  
 
 Thanks,
 Albert
 


___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


Re: [RFC PATCH 09/19] powerpc: gamecube/wii: udbg support for usbgecko

2009-11-26 Thread Segher Boessenkool

The usbgecko is hotplugable and hotswappable.
But as this is mostly a developer feature, not normaly used by end  
users, I think that we can just let it be as it is: autodetect it  
on boot (now probing for it instead of using information from the  
device tree).
If you unplug it later it causes no errors, you just miss whatever  
data is sent to it.


You can get interrupts when an EXI device is plugged or unplugged; the
normal driver should use that.  But you haven't posted that yet.

The early debug driver can just assume the user doesn't like to hurt
himself, and provide pain when the user does, there's no problem with
that :-)


Segher

___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


Re: [RFC PATCH 09/19] powerpc: gamecube/wii: udbg support for usbgecko

2009-11-25 Thread Albert Herranz
Segher Boessenkool wrote:
 Surely there is something called something like of_node_is_compatible()
 you can use here?  You already have the node pointer, there is no need
 to look at all other nodes.


 I see the point.
 I didn't find of_node_is_compatible() but I'll look what's available
 here.
 
 int of_device_is_compatible(const struct device_node *device,
 const char *compat)
 

Thanks. I'll pick that.

Cheers,
Albert

___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


Re: [RFC PATCH 09/19] powerpc: gamecube/wii: udbg support for usbgecko

2009-11-25 Thread Benjamin Herrenschmidt
On Sun, 2009-11-22 at 23:01 +0100, Albert Herranz wrote:
 Add support for using the USB Gecko adapter via the udbg facility on
 the Nintendo GameCube and Wii video game consoles.
 The USB Gecko is a 3rd party memory card interface adapter that provides
 a EXI (External Interface) to USB serial converter.

The main issue here is that the gecko is supposed to be something you
can plug or unplug no ? Is it hotswap or only at boot ? In the later
case, maybe the node should be created by the boot wrapper when
detecting the presence of the device. If it's hotplug, then we need
something smarter...

Cheers,
Ben.

 Signed-off-by: Albert Herranz albert_herr...@yahoo.es
 ---
  arch/powerpc/platforms/embedded6xx/Kconfig |   13 +
  arch/powerpc/platforms/embedded6xx/Makefile|1 +
  arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c |  285 
 
  arch/powerpc/platforms/embedded6xx/usbgecko_udbg.h |   30 ++
  4 files changed, 329 insertions(+), 0 deletions(-)
  create mode 100644 arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c
  create mode 100644 arch/powerpc/platforms/embedded6xx/usbgecko_udbg.h
 
 diff --git a/arch/powerpc/platforms/embedded6xx/Kconfig 
 b/arch/powerpc/platforms/embedded6xx/Kconfig
 index 31487e4..bfd88be 100644
 --- a/arch/powerpc/platforms/embedded6xx/Kconfig
 +++ b/arch/powerpc/platforms/embedded6xx/Kconfig
 @@ -95,3 +95,16 @@ config GAMECUBE_COMMON
   bool
   select NOT_COHERENT_CACHE
  
 +config USBGECKO_UDBG
 + bool USB Gecko udbg console for the Nintendo GameCube/Wii
 + depends on GAMECUBE_COMMON
 + help
 +   If you say yes to this option, support will be included for the
 +   USB Gecko adapter as an udbg console.
 +   The USB Gecko is a EXI to USB Serial converter that can be plugged
 +   into a memcard slot in the Nintendo GameCube/Wii.
 +
 +   This driver bypasses the EXI layer completely.
 +
 +   If in doubt, say N here.
 +
 diff --git a/arch/powerpc/platforms/embedded6xx/Makefile 
 b/arch/powerpc/platforms/embedded6xx/Makefile
 index 0773c08..0ab7492 100644
 --- a/arch/powerpc/platforms/embedded6xx/Makefile
 +++ b/arch/powerpc/platforms/embedded6xx/Makefile
 @@ -7,3 +7,4 @@ obj-$(CONFIG_STORCENTER)  += storcenter.o
  obj-$(CONFIG_PPC_HOLLY)  += holly.o
  obj-$(CONFIG_PPC_PRPMC2800)  += prpmc2800.o
  obj-$(CONFIG_PPC_C2K)+= c2k.o
 +obj-$(CONFIG_USBGECKO_UDBG)  += usbgecko_udbg.o
 diff --git a/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c 
 b/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c
 new file mode 100644
 index 000..49f86e8
 --- /dev/null
 +++ b/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c
 @@ -0,0 +1,285 @@
 +/*
 + * arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c
 + *
 + * udbg serial input/output routines for the USB Gecko adapter.
 + * Copyright (C) 2008-2009 The GameCube Linux Team
 + * Copyright (C) 2008,2009 Albert Herranz
 + *
 + * This program is free software; you can redistribute it and/or
 + * modify it under the terms of the GNU General Public License
 + * as published by the Free Software Foundation; either version 2
 + * of the License, or (at your option) any later version.
 + *
 + */
 +
 +#include asm/io.h
 +#include asm/prom.h
 +#include asm/udbg.h
 +
 +#include mm/mmu_decl.h
 +
 +#include usbgecko_udbg.h
 +
 +
 +#define EXI_CLK_32MHZ   5
 +
 +#define EXI_CSR 0x00
 +#define   EXI_CSR_CLKMASK   (0x74)
 +#define EXI_CSR_CLK_32MHZ   (EXI_CLK_32MHZ4)
 +#define   EXI_CSR_CSMASK(0x77)
 +#define EXI_CSR_CS_0(0x17)  /* Chip Select 001 */
 +
 +#define EXI_CR  0x0c
 +#define   EXI_CR_TSTART (10)
 +#define   EXI_CR_WRITE   (12)
 +#define   EXI_CR_READ_WRITE (22)
 +#define   EXI_CR_TLEN(len)  (((len)-1)4)
 +
 +#define EXI_DATA0x10
 +
 +#define UG_READ_ATTEMPTS 100
 +#define UG_WRITE_ATTEMPTS100
 +
 +
 +static void __iomem *ug_io_base;
 +
 +/*
 + * Performs one input/output transaction between the exi host and the 
 usbgecko.
 + */
 +static u32 ug_io_transaction(u32 in)
 +{
 + u32 __iomem *csr_reg = ug_io_base + EXI_CSR;
 + u32 __iomem *data_reg = ug_io_base + EXI_DATA;
 + u32 __iomem *cr_reg = ug_io_base + EXI_CR;
 + u32 csr, data, cr;
 +
 + /* select */
 + csr = EXI_CSR_CLK_32MHZ | EXI_CSR_CS_0;
 + out_be32(csr_reg, csr);
 +
 + /* read/write */
 + data = in;
 + out_be32(data_reg, data);
 + cr = EXI_CR_TLEN(2) | EXI_CR_READ_WRITE | EXI_CR_TSTART;
 + out_be32(cr_reg, cr);
 +
 + while (in_be32(cr_reg)  EXI_CR_TSTART)
 + barrier();
 +
 + /* deselect */
 + out_be32(csr_reg, 0);
 +
 + /* result */
 + data = in_be32(data_reg);
 +
 + return data;
 +}
 +
 +/*
 + * Returns true if an usbgecko adapter is found.
 + */
 +static int ug_is_adapter_present(void)
 +{
 + if (!ug_io_base)
 + return 0;
 +
 + return 

Re: [RFC PATCH 09/19] powerpc: gamecube/wii: udbg support for usbgecko

2009-11-24 Thread Albert Herranz
Segher Boessenkool wrote:
 +  If you say yes to this option, support will be included for the
 +  USB Gecko adapter as an udbg console.
 +  The USB Gecko is a EXI to USB Serial converter that can be plugged
 +  into a memcard slot in the Nintendo GameCube/Wii.
 
 Not a memcard slot, only the first one, you have it hardcoded.
 

No. It's not hardcoded in the code. It's specified in the device tree source.
The hardcoded one is just the early udbg, not the normal udbg.

 +#if 0
 +/*
 + * Trasmits a null terminated character string.
 + */
 +static void ug_puts(char *s)
 +{
 +while (*s)
 +ug_putc(*s++);
 +}
 +#endif
 
 Remove?
 

Ok :)

 +stdout = of_find_node_by_path(path);
 +if (!stdout) {
 +udbg_printf(%s: missing path %s, __func__, path);
 +goto done;
 +}
 +
 +for (np = NULL;
 +(np = of_find_compatible_node(np, NULL, usbgecko,usbgecko));)
 +if (np == stdout)
 +break;
 +
 +of_node_put(stdout);
 +if (!np) {
 +udbg_printf(%s: stdout is not an usbgecko, __func__);
 +goto done;
 +}
 
 Surely there is something called something like of_node_is_compatible()
 you can use here?  You already have the node pointer, there is no need
 to look at all other nodes.
 

I see the point.
I didn't find of_node_is_compatible() but I'll look what's available here.

Thanks,
Albert
___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


Re: [RFC PATCH 09/19] powerpc: gamecube/wii: udbg support for usbgecko

2009-11-24 Thread Segher Boessenkool
+  If you say yes to this option, support will be included  
for the

+  USB Gecko adapter as an udbg console.
+  The USB Gecko is a EXI to USB Serial converter that can be  
plugged

+  into a memcard slot in the Nintendo GameCube/Wii.


Not a memcard slot, only the first one, you have it hardcoded.



No. It's not hardcoded in the code. It's specified in the device  
tree source.

The hardcoded one is just the early udbg, not the normal udbg.


Ah I misread the code then.

Surely there is something called something like  
of_node_is_compatible()
you can use here?  You already have the node pointer, there is no  
need

to look at all other nodes.



I see the point.
I didn't find of_node_is_compatible() but I'll look what's  
available here.


int of_device_is_compatible(const struct device_node *device,
const char *compat)


Segher

___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


Re: [RFC PATCH 09/19] powerpc: gamecube/wii: udbg support for usbgecko

2009-11-23 Thread Segher Boessenkool

+ If you say yes to this option, support will be included for the
+ USB Gecko adapter as an udbg console.
+ The USB Gecko is a EXI to USB Serial converter that can be plugged
+ into a memcard slot in the Nintendo GameCube/Wii.


Not a memcard slot, only the first one, you have it hardcoded.


+#if 0
+/*
+ * Trasmits a null terminated character string.
+ */
+static void ug_puts(char *s)
+{
+   while (*s)
+   ug_putc(*s++);
+}
+#endif


Remove?


+   stdout = of_find_node_by_path(path);
+   if (!stdout) {
+   udbg_printf(%s: missing path %s, __func__, path);
+   goto done;
+   }
+
+   for (np = NULL;
+   (np = of_find_compatible_node(np, NULL, usbgecko,usbgecko));)
+   if (np == stdout)
+   break;
+
+   of_node_put(stdout);
+   if (!np) {
+   udbg_printf(%s: stdout is not an usbgecko, __func__);
+   goto done;
+   }


Surely there is something called something like of_node_is_compatible()
you can use here?  You already have the node pointer, there is no need
to look at all other nodes.


Segher

___
Linuxppc-dev mailing list
Linuxppc-dev@lists.ozlabs.org
https://lists.ozlabs.org/listinfo/linuxppc-dev


Re: [RFC PATCH 09/19] powerpc: gamecube/wii: udbg support for usbgecko

2009-11-22 Thread Grant Likely
On Sun, Nov 22, 2009 at 3:01 PM, Albert Herranz albert_herr...@yahoo.es wrote:
 Add support for using the USB Gecko adapter via the udbg facility on
 the Nintendo GameCube and Wii video game consoles.
 The USB Gecko is a 3rd party memory card interface adapter that provides
 a EXI (External Interface) to USB serial converter.

 Signed-off-by: Albert Herranz albert_herr...@yahoo.es

Acked-by: Grant Likely grant.lik...@secretlab.ca

 ---
  arch/powerpc/platforms/embedded6xx/Kconfig         |   13 +
  arch/powerpc/platforms/embedded6xx/Makefile        |    1 +
  arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c |  285 
 
  arch/powerpc/platforms/embedded6xx/usbgecko_udbg.h |   30 ++
  4 files changed, 329 insertions(+), 0 deletions(-)
  create mode 100644 arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c
  create mode 100644 arch/powerpc/platforms/embedded6xx/usbgecko_udbg.h

 diff --git a/arch/powerpc/platforms/embedded6xx/Kconfig 
 b/arch/powerpc/platforms/embedded6xx/Kconfig
 index 31487e4..bfd88be 100644
 --- a/arch/powerpc/platforms/embedded6xx/Kconfig
 +++ b/arch/powerpc/platforms/embedded6xx/Kconfig
 @@ -95,3 +95,16 @@ config GAMECUBE_COMMON
        bool
        select NOT_COHERENT_CACHE

 +config USBGECKO_UDBG
 +       bool USB Gecko udbg console for the Nintendo GameCube/Wii
 +       depends on GAMECUBE_COMMON
 +       help
 +         If you say yes to this option, support will be included for the
 +         USB Gecko adapter as an udbg console.
 +         The USB Gecko is a EXI to USB Serial converter that can be plugged
 +         into a memcard slot in the Nintendo GameCube/Wii.
 +
 +         This driver bypasses the EXI layer completely.
 +
 +         If in doubt, say N here.
 +
 diff --git a/arch/powerpc/platforms/embedded6xx/Makefile 
 b/arch/powerpc/platforms/embedded6xx/Makefile
 index 0773c08..0ab7492 100644
 --- a/arch/powerpc/platforms/embedded6xx/Makefile
 +++ b/arch/powerpc/platforms/embedded6xx/Makefile
 @@ -7,3 +7,4 @@ obj-$(CONFIG_STORCENTER)        += storcenter.o
  obj-$(CONFIG_PPC_HOLLY)                += holly.o
  obj-$(CONFIG_PPC_PRPMC2800)    += prpmc2800.o
  obj-$(CONFIG_PPC_C2K)          += c2k.o
 +obj-$(CONFIG_USBGECKO_UDBG)    += usbgecko_udbg.o
 diff --git a/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c 
 b/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c
 new file mode 100644
 index 000..49f86e8
 --- /dev/null
 +++ b/arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c
 @@ -0,0 +1,285 @@
 +/*
 + * arch/powerpc/platforms/embedded6xx/usbgecko_udbg.c
 + *
 + * udbg serial input/output routines for the USB Gecko adapter.
 + * Copyright (C) 2008-2009 The GameCube Linux Team
 + * Copyright (C) 2008,2009 Albert Herranz
 + *
 + * This program is free software; you can redistribute it and/or
 + * modify it under the terms of the GNU General Public License
 + * as published by the Free Software Foundation; either version 2
 + * of the License, or (at your option) any later version.
 + *
 + */
 +
 +#include asm/io.h
 +#include asm/prom.h
 +#include asm/udbg.h
 +
 +#include mm/mmu_decl.h
 +
 +#include usbgecko_udbg.h
 +
 +
 +#define EXI_CLK_32MHZ           5
 +
 +#define EXI_CSR                 0x00
 +#define   EXI_CSR_CLKMASK       (0x74)
 +#define     EXI_CSR_CLK_32MHZ   (EXI_CLK_32MHZ4)
 +#define   EXI_CSR_CSMASK        (0x77)
 +#define     EXI_CSR_CS_0        (0x17)  /* Chip Select 001 */
 +
 +#define EXI_CR                  0x0c
 +#define   EXI_CR_TSTART         (10)
 +#define   EXI_CR_WRITE         (12)
 +#define   EXI_CR_READ_WRITE     (22)
 +#define   EXI_CR_TLEN(len)      (((len)-1)4)
 +
 +#define EXI_DATA                0x10
 +
 +#define UG_READ_ATTEMPTS       100
 +#define UG_WRITE_ATTEMPTS      100
 +
 +
 +static void __iomem *ug_io_base;
 +
 +/*
 + * Performs one input/output transaction between the exi host and the 
 usbgecko.
 + */
 +static u32 ug_io_transaction(u32 in)
 +{
 +       u32 __iomem *csr_reg = ug_io_base + EXI_CSR;
 +       u32 __iomem *data_reg = ug_io_base + EXI_DATA;
 +       u32 __iomem *cr_reg = ug_io_base + EXI_CR;
 +       u32 csr, data, cr;
 +
 +       /* select */
 +       csr = EXI_CSR_CLK_32MHZ | EXI_CSR_CS_0;
 +       out_be32(csr_reg, csr);
 +
 +       /* read/write */
 +       data = in;
 +       out_be32(data_reg, data);
 +       cr = EXI_CR_TLEN(2) | EXI_CR_READ_WRITE | EXI_CR_TSTART;
 +       out_be32(cr_reg, cr);
 +
 +       while (in_be32(cr_reg)  EXI_CR_TSTART)
 +               barrier();
 +
 +       /* deselect */
 +       out_be32(csr_reg, 0);
 +
 +       /* result */
 +       data = in_be32(data_reg);
 +
 +       return data;
 +}
 +
 +/*
 + * Returns true if an usbgecko adapter is found.
 + */
 +static int ug_is_adapter_present(void)
 +{
 +       if (!ug_io_base)
 +               return 0;
 +
 +       return ug_io_transaction(0x9000) == 0x0470;
 +}
 +
 +/*
 + * Returns true if the TX fifo is ready for transmission.
 + */
 +static int ug_is_txfifo_ready(void)
 +{
 +       return