Re: [PATCH 2/2] USB: musb: omap2430: add mode change from A to B

2010-07-22 Thread Kan-Ru Chen
On Thu, 22 Jul 2010 19:40:44 +0300, Felipe Balbi wrote: > On 07/22/2010 06:16 PM, Kan-Ru Chen wrote: > > Just curious about how to do this in a more automatic way. > > > > I think setup a daemon to monitor the musb_hdrc mode and try to alter > > it's state via s

Re: [PATCH 2/2] USB: musb: omap2430: add mode change from A to B

2010-07-22 Thread Kan-Ru Chen
--text follows this line-- Hi, On Mon, 15 Mar 2010 18:23:42 +0800, Wang Hui wrote: > On omap2/3 series platforms, the musb can't raise id pin change > detection interrupt, so we must change otg mode through sysfs > interface manually. Currently when the musb is in B mode, if we > want musb to be

[PATCHv2 1/3] omap: Add new interface omap_get_die_id

2010-07-05 Thread Kan-Ru Chen
Allow DIE id to be get and used by others. Signed-off-by: Kan-Ru Chen --- arch/arm/mach-omap2/id.c | 10 ++ arch/arm/mach-omap2/include/mach/id.h | 22 ++ 2 files changed, 32 insertions(+), 0 deletions(-) create mode 100644 arch/arm/mach-omap2

[PATCHv2 3/3] omap: Devkit8000: Use DIE id to initialize dm9000 MAC address

2010-07-05 Thread Kan-Ru Chen
The devkit8000 boards often come with empty EEPROM thus without valid ethernet MAC address. The DIE id to MAC formula is copied from u-boot. Signed-off-by: Kan-Ru Chen --- arch/arm/mach-omap2/board-devkit8000.c | 14 ++ 1 files changed, 14 insertions(+), 0 deletions(-) diff --git

[PATCHv2 2/3] omap: Use omap_get_die_id() to get the DIE ids

2010-07-05 Thread Kan-Ru Chen
Signed-off-by: Kan-Ru Chen --- arch/arm/mach-omap2/id.c | 14 ++ 1 files changed, 6 insertions(+), 8 deletions(-) diff --git a/arch/arm/mach-omap2/id.c b/arch/arm/mach-omap2/id.c index 80bd1cd..4e11801 100644 --- a/arch/arm/mach-omap2/id.c +++ b/arch/arm/mach-omap2/id.c

[PATCHv2 0/3] Devkit8000: Use DIE id to initialize dm9000 MAC address

2010-07-05 Thread Kan-Ru Chen
This patch series add the omap_get_die_id interface and use that function to construct a MAC address for use by dm9000. Kan-Ru Chen (3): omap: Add new interface omap_get_die_id omap: Use omap_get_die_id() to get the DIE ids omap: Devkit8000: Use DIE id to initialize dm9000 MAC address

Re: [PATCH] omap: Devkit8000: Use DIE id to initialize dm9000 MAC address

2010-07-05 Thread Kan-Ru Chen
On Mon, Jul 5, 2010 at 5:44 PM, Tony Lindgren wrote: > * Kan-Ru Chen [100705 09:27]: >> The devkit8000 debug boards often come with empty EEPROM thus without >> valid ethernet MAC address. The DIE id to MAC formula is copied from >> u-boot. >> >> Signed-off-by:

[PATCH] omap: Devkit8000: Use DIE id to initialize dm9000 MAC address

2010-07-04 Thread Kan-Ru Chen
The devkit8000 debug boards often come with empty EEPROM thus without valid ethernet MAC address. The DIE id to MAC formula is copied from u-boot. Signed-off-by: Kan-Ru Chen --- arch/arm/mach-omap2/board-devkit8000.c | 17 + 1 files changed, 17 insertions(+), 0 deletions

Re: [PATCH 00/14] Multiple fixes for Devkit8000

2010-05-18 Thread Kan-Ru Chen
f the supplies are changed to use the new REGULATOR_SUPPLY > macro. > The pins for lcd and dvi powerdown are corrected. > > > Kan-Ru Chen (1): > OMAP2: Devkit8000: Setup LCD reset > > Thomas Weber (13): > OMAP2: Devkit8000: Cleanup for supplies > OMAP2: Devkit

[RFC] [PATCH] Devkit8000: Use generic panel driver instead of new driver for every panel

2010-04-16 Thread Kan-Ru Chen
Instead of use special driver for every new panel, we can use the generic driver and modedb database to specify the timing information. Now supports 4.3, 5.6 and 7 inch panel. Signed-off-by: Kan-Ru Chen --- Hi! Some time ago there was a discussion about implementing a common driver for

[PATCH 2/2] Setup LCD reset for Devkit8000

2010-04-07 Thread Kan-Ru Chen
-by: Kan-Ru Chen --- arch/arm/mach-omap2/board-devkit8000.c | 22 +++--- 1 files changed, 11 insertions(+), 11 deletions(-) diff --git a/arch/arm/mach-omap2/board-devkit8000.c b/arch/arm/mach-omap2/board-devkit8000.c index fd4454a..e38a669 100644 --- a/arch/arm/mach-omap2/board

[PATCH 1/2] Enable DVI-D output for Devkit8000

2010-04-07 Thread Kan-Ru Chen
This patch corrects the DVI-D output setup of Devkit8000 Devkit8000 has different DVI reset pin with the BeagleBoard. On Devkit8000 the TWL4030 GPIO_7 is assigned to do the job. Signed-off-by: Kan-Ru Chen --- arch/arm/mach-omap2/board-devkit8000.c | 20 +--- 1 files changed

Re: [PATCH 1/2] Enable DVI-D output for Devkit8000

2010-04-07 Thread Kan-Ru Chen
On Wed, 7 Apr 2010 12:09:29 +0800, Kan-Ru Chen wrote: > @@ -283,6 +289,12 @@ static int devkit8000_twl_gpio_setup(struct device *dev, > /* TWL4030_GPIO_MAX + 1 == ledB, PMU_STAT (out, active low LED) */ > gpio_leds[2].gpio = gpio + TWL4030_GPIO_MAX + 1; > > +

[PATCH 1/2] Enable DVI-D output for Devkit8000

2010-04-06 Thread Kan-Ru Chen
This patch corrects the DVI-D output setup of Devkit8000 Devkit8000 has different DVI reset pin with the BeagleBoard. On Devkit8000 the TWL4030 GPIO_7 is assigned to do the job. Signed-off-by: Kan-Ru Chen --- arch/arm/mach-omap2/board-devkit8000.c | 20 +--- 1 files changed

[PATCH 2/2] Setup LCD reset for Devkit8000

2010-04-06 Thread Kan-Ru Chen
-by: Kan-Ru Chen --- arch/arm/mach-omap2/board-devkit8000.c | 24 1 files changed, 12 insertions(+), 12 deletions(-) diff --git a/arch/arm/mach-omap2/board-devkit8000.c b/arch/arm/mach-omap2/board-devkit8000.c index 2e7a539..b744433 100644 --- a/arch/arm/mach-omap2