All of lore.kernel.org
 help / color / mirror / Atom feed
* [PATCH 0/8] ARM: mach-shmobile: armadillo800eva: USB/SDHI/MMIF support patch set
@ 2012-04-24  9:07 Kuninori Morimoto
  2012-04-25  8:24 ` Simon Horman
                   ` (3 more replies)
  0 siblings, 4 replies; 5+ messages in thread
From: Kuninori Morimoto @ 2012-04-24  9:07 UTC (permalink / raw)
  To: linux-sh


Hi Rafael, Magnus
Cc Simon

These are incremental patch set for armadillo800eva.

Kuninori Morimoto (8):
      ARM: mach-shmobile: clock-r8a7740: add USB clock
      ARM: mach-shmobile: clock-r8a7740: add SDHI clock
      ARM: mach-shmobile: clock-r8a7740: add MMCIF clock
      ARM: mach-shmobile: armadillo800eva: add USB function support
      ARM: mach-shmobile: armadillo800eva: add SDHI0 support
      ARM: mach-shmobile: armadillo800eva: add SDHI1 support
      ARM: mach-shmobile: armadillo800eva: add MMCIF support
      ARM: mach-shmobile: r8a7740: Reserve DMA memory for the frame buffer

This patch set include v3 of USB support.
Some R8A7740 clocks, for example, SUB/SPU/CEU/ clocks, use "usb24s" clock as parent.
"usb24s" clock is parent clock of "usb24", and this "usb24" is the main clock for USB.
These are very confusing naming, but based on R8A7740 chip datasheet.

#5 support SDHI0, but it use polling mode.
Because CD (Êrd Detect) pin didn't connected to SDHI0_CD pin, but connected IRQ31.
We can use IRQ31 for CD, but it needs chattering removal operation.
So, I selected very simple solution (= polling mode).
But polling mode is very enough at this point.

If you use USB function, please select

CONFIG_USB_RENESAS_USBHS=y
CONFIG_USB_RENESAS_USBHS_UDC=y

and select USB Gadget driver.
I used CONFIG_USB_ETH for test.

And set SW1.6 ON, then you can use CN24.

# insmod g_ether.ko
# ifconfig usb0 xxx.xxx.xxx.xxx up


Best regards
---
Kuninori Morimoto

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

* Re: [PATCH 0/8] ARM: mach-shmobile: armadillo800eva: USB/SDHI/MMIF support patch set
  2012-04-24  9:07 [PATCH 0/8] ARM: mach-shmobile: armadillo800eva: USB/SDHI/MMIF support patch set Kuninori Morimoto
@ 2012-04-25  8:24 ` Simon Horman
  2012-04-25 21:13 ` Rafael J. Wysocki
                   ` (2 subsequent siblings)
  3 siblings, 0 replies; 5+ messages in thread
From: Simon Horman @ 2012-04-25  8:24 UTC (permalink / raw)
  To: linux-sh

On Tue, Apr 24, 2012 at 02:07:05AM -0700, Kuninori Morimoto wrote:
> 
> Hi Rafael, Magnus
> Cc Simon
> 
> These are incremental patch set for armadillo800eva.
> 
> Kuninori Morimoto (8):
>       ARM: mach-shmobile: clock-r8a7740: add USB clock
>       ARM: mach-shmobile: clock-r8a7740: add SDHI clock
>       ARM: mach-shmobile: clock-r8a7740: add MMCIF clock
>       ARM: mach-shmobile: armadillo800eva: add USB function support
>       ARM: mach-shmobile: armadillo800eva: add SDHI0 support
>       ARM: mach-shmobile: armadillo800eva: add SDHI1 support
>       ARM: mach-shmobile: armadillo800eva: add MMCIF support
>       ARM: mach-shmobile: r8a7740: Reserve DMA memory for the frame buffer

All 8 patches

Tested-by: Simon Horman <horms@verge.net.au>

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

* Re: [PATCH 0/8] ARM: mach-shmobile: armadillo800eva: USB/SDHI/MMIF support patch set
  2012-04-24  9:07 [PATCH 0/8] ARM: mach-shmobile: armadillo800eva: USB/SDHI/MMIF support patch set Kuninori Morimoto
  2012-04-25  8:24 ` Simon Horman
@ 2012-04-25 21:13 ` Rafael J. Wysocki
  2012-04-26  0:04 ` Kuninori Morimoto
  2012-04-26 20:13 ` Rafael J. Wysocki
  3 siblings, 0 replies; 5+ messages in thread
From: Rafael J. Wysocki @ 2012-04-25 21:13 UTC (permalink / raw)
  To: linux-sh

On Wednesday, April 25, 2012, Simon Horman wrote:
> On Tue, Apr 24, 2012 at 02:07:05AM -0700, Kuninori Morimoto wrote:
> > 
> > Hi Rafael, Magnus
> > Cc Simon
> > 
> > These are incremental patch set for armadillo800eva.
> > 
> > Kuninori Morimoto (8):
> >       ARM: mach-shmobile: clock-r8a7740: add USB clock
> >       ARM: mach-shmobile: clock-r8a7740: add SDHI clock
> >       ARM: mach-shmobile: clock-r8a7740: add MMCIF clock
> >       ARM: mach-shmobile: armadillo800eva: add USB function support
> >       ARM: mach-shmobile: armadillo800eva: add SDHI0 support
> >       ARM: mach-shmobile: armadillo800eva: add SDHI1 support
> >       ARM: mach-shmobile: armadillo800eva: add MMCIF support
> >       ARM: mach-shmobile: r8a7740: Reserve DMA memory for the frame buffer
> 
> All 8 patches
> 
> Tested-by: Simon Horman <horms@verge.net.au>

Patches [1-3/8] applied to the r8a7740 branch of the renesas.git tree.
However, I had to handle several merge conflicts with the FSI clock patch
applied previously, so please check if everything is correct in the tree.

Patches [4-8/8] applied to the armadillo800eva branch of the renesas.git tree,
on top of the r8a7740 branch.

Thanks,
Rafael

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

* Re: [PATCH 0/8] ARM: mach-shmobile: armadillo800eva: USB/SDHI/MMIF support patch set
  2012-04-24  9:07 [PATCH 0/8] ARM: mach-shmobile: armadillo800eva: USB/SDHI/MMIF support patch set Kuninori Morimoto
  2012-04-25  8:24 ` Simon Horman
  2012-04-25 21:13 ` Rafael J. Wysocki
@ 2012-04-26  0:04 ` Kuninori Morimoto
  2012-04-26 20:13 ` Rafael J. Wysocki
  3 siblings, 0 replies; 5+ messages in thread
From: Kuninori Morimoto @ 2012-04-26  0:04 UTC (permalink / raw)
  To: linux-sh


Hi Rafael

> > > Kuninori Morimoto (8):
> > >       ARM: mach-shmobile: clock-r8a7740: add USB clock
> > >       ARM: mach-shmobile: clock-r8a7740: add SDHI clock
> > >       ARM: mach-shmobile: clock-r8a7740: add MMCIF clock
> > >       ARM: mach-shmobile: armadillo800eva: add USB function support
> > >       ARM: mach-shmobile: armadillo800eva: add SDHI0 support
> > >       ARM: mach-shmobile: armadillo800eva: add SDHI1 support
> > >       ARM: mach-shmobile: armadillo800eva: add MMCIF support
> > >       ARM: mach-shmobile: r8a7740: Reserve DMA memory for the frame buffer
> > 
> > All 8 patches
> > 
> > Tested-by: Simon Horman <horms@verge.net.au>
> 
> Patches [1-3/8] applied to the r8a7740 branch of the renesas.git tree.
> However, I had to handle several merge conflicts with the FSI clock patch
> applied previously, so please check if everything is correct in the tree.

Thank you for accepting these.
I checked it, and it seems OK.

Best regards
---
Kuninori Morimoto

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

* Re: [PATCH 0/8] ARM: mach-shmobile: armadillo800eva: USB/SDHI/MMIF support patch set
  2012-04-24  9:07 [PATCH 0/8] ARM: mach-shmobile: armadillo800eva: USB/SDHI/MMIF support patch set Kuninori Morimoto
                   ` (2 preceding siblings ...)
  2012-04-26  0:04 ` Kuninori Morimoto
@ 2012-04-26 20:13 ` Rafael J. Wysocki
  3 siblings, 0 replies; 5+ messages in thread
From: Rafael J. Wysocki @ 2012-04-26 20:13 UTC (permalink / raw)
  To: linux-sh

On Thursday, April 26, 2012, Kuninori Morimoto wrote:
> 
> Hi Rafael
> 
> > > > Kuninori Morimoto (8):
> > > >       ARM: mach-shmobile: clock-r8a7740: add USB clock
> > > >       ARM: mach-shmobile: clock-r8a7740: add SDHI clock
> > > >       ARM: mach-shmobile: clock-r8a7740: add MMCIF clock
> > > >       ARM: mach-shmobile: armadillo800eva: add USB function support
> > > >       ARM: mach-shmobile: armadillo800eva: add SDHI0 support
> > > >       ARM: mach-shmobile: armadillo800eva: add SDHI1 support
> > > >       ARM: mach-shmobile: armadillo800eva: add MMCIF support
> > > >       ARM: mach-shmobile: r8a7740: Reserve DMA memory for the frame buffer
> > > 
> > > All 8 patches
> > > 
> > > Tested-by: Simon Horman <horms@verge.net.au>
> > 
> > Patches [1-3/8] applied to the r8a7740 branch of the renesas.git tree.
> > However, I had to handle several merge conflicts with the FSI clock patch
> > applied previously, so please check if everything is correct in the tree.
> 
> Thank you for accepting these.
> I checked it, and it seems OK.

Good, thanks!

Best,
Rafael

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

end of thread, other threads:[~2012-04-26 20:13 UTC | newest]

Thread overview: 5+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2012-04-24  9:07 [PATCH 0/8] ARM: mach-shmobile: armadillo800eva: USB/SDHI/MMIF support patch set Kuninori Morimoto
2012-04-25  8:24 ` Simon Horman
2012-04-25 21:13 ` Rafael J. Wysocki
2012-04-26  0:04 ` Kuninori Morimoto
2012-04-26 20:13 ` Rafael J. Wysocki

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.