Re: [PATCH 1/7] smc911x: move register define to smc911x.h

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:19 Tue 14 Aug , Sascha Hauer wrote: > On Tue, Aug 14, 2012 at 07:32:14PM +0200, Jean-Christophe PLAGNIOL-VILLARD > wrote: > > this make the driver more readable > > > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > > --- > > drivers/net/smc911x.c| 329 +---

Re: [for master PATCH 1/2] miidev: add phy_addr detection support

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
On 21:58 Tue 14 Aug , Sascha Hauer wrote: > On Tue, Aug 14, 2012 at 05:48:55PM +0200, Jean-Christophe PLAGNIOL-VILLARD > wrote: > > export via param the phy_addr and the phy_id detected > > > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > > --- > > Hi, > > > > this is need to fix t

Re: [PATCH 3/7] smc911x: add 16bit bus width support

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
On 22:21 Tue 14 Aug , Sascha Hauer wrote: > On Tue, Aug 14, 2012 at 07:32:16PM +0200, Jean-Christophe PLAGNIOL-VILLARD > wrote: > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > > --- > > drivers/net/smc911x.c | 20 ++-- > > 1 file changed, 18 insertions(+), 2 deletions

vacation

2012-08-14 Thread Sascha Hauer
Hi all, I am on vacation for the next week and won't have internet connection until August 24. Have fun! Sascha -- Pengutronix e.K. | | Industrial Linux Solutions | http://www.pengutronix.de/ | Peiner Str. 6-8, 31137 Hildes

Re: [PATCH 3/7] smc911x: add 16bit bus width support

2012-08-14 Thread Sascha Hauer
On Tue, Aug 14, 2012 at 07:32:16PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote: > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > --- > drivers/net/smc911x.c | 20 ++-- > 1 file changed, 18 insertions(+), 2 deletions(-) > > diff --git a/drivers/net/smc911x.c b/drivers/net/

Re: [PATCH 1/7] smc911x: move register define to smc911x.h

2012-08-14 Thread Sascha Hauer
On Tue, Aug 14, 2012 at 07:32:14PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote: > this make the driver more readable > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > --- > drivers/net/smc911x.c| 329 +-- > drivers/net/{smc911x.c => smc911x.h} | 4

Re: [PATCH 0/3 v2] omap: 4460 support

2012-08-14 Thread Sascha Hauer
On Tue, Aug 14, 2012 at 09:04:30AM +0200, Jan Weitzel wrote: > Add support for OMAP4460 cpu > on top of ed358834 (next) > > v2: merge usage of omap4_scale_vcores to 1/3 > avoid volatile int* Applied, thanks Sascha > > > Jan Weitzel (3): > Add support for OMAP4460 TPS62361 > OMAP4460:

Re: [for master PATCH 1/2] miidev: add phy_addr detection support

2012-08-14 Thread Sascha Hauer
On Tue, Aug 14, 2012 at 05:48:55PM +0200, Jean-Christophe PLAGNIOL-VILLARD wrote: > export via param the phy_addr and the phy_id detected > > Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD > --- > Hi, > > this is need to fix the calao board support since the introduction of > the g

[PATCH 1/7] smc911x: move register define to smc911x.h

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
this make the driver more readable Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- drivers/net/smc911x.c| 329 +-- drivers/net/{smc911x.c => smc911x.h} | 406 -- 2 files changed, 2 insertions(+), 733 deletions(-) copy

[PATCH 4/7] smc911x: add support to pass the shift via platform data

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
switch ipe337: to it at the same time to do not brake it Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- arch/blackfin/boards/ipe337/ipe337.c |7 +++- drivers/net/Kconfig |6 drivers/net/smc911x.c| 44 +--- drivers/net/smc91

[PATCH 3/7] smc911x: add 16bit bus width support

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- drivers/net/smc911x.c | 20 ++-- 1 file changed, 18 insertions(+), 2 deletions(-) diff --git a/drivers/net/smc911x.c b/drivers/net/smc911x.c index 2583235..c74ed52 100644 --- a/drivers/net/smc911x.c +++ b/drivers/net/smc911x.c

[PATCH 7/7] smm911x: check if the device is ready before using it

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
poll the READY bit in PMT_CTRL. Any other access to the device is forbidden while this bit isn't set. Try for 100ms Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- drivers/net/smc911x.c | 12 1 file changed, 12 insertions(+) diff --git a/drivers/net/smc911x.c b/drivers/net/sm

[PATCH 6/7] smc911x: update chip detection

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
Use linux kernel chip detection from 3.5 Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- drivers/net/smc911x.c | 59 +++-- drivers/net/smc911x.h | 33 +-- 2 files changed, 54 insertions(+), 38 deletions(-) diff --git a/

[PATCH 2/7] smc911x: introduce read/write ops

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
This will allow to replace them depending on the platform data. So we can specify shift and reg io witdh (16bit/32bit) Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- drivers/net/smc911x.c | 101 ++--- 1 file changed, 63 insertions(+), 38 deletion

[PATCH 5/7] smc911x: improve detection handle

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
detect if the bus is swapped and report a 32bit drivers is used on a 16bit bus Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- drivers/net/smc911x.c | 20 +++- drivers/net/smc911x.h |2 ++ 2 files changed, 21 insertions(+), 1 deletion(-) diff --git a/drivers/net/smc911

[PATCH 0/7] smsc911x: runtime configuration improvement

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
Hi, please pull The following changes since commit 3f96b4938c4046590be8a38fb114148c4bf1ca8e: Merge tag 'bootm_fix' of git://git.jcrosoft.org/barebox (2012-08-13 20:37:53 +0200) are available in the git repository at: git://git.jcrosoft.org/barebox.git tags/smc911x_improve for you to fetc

[for master PATCH 1/2] miidev: add phy_addr detection support

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
export via param the phy_addr and the phy_id detected Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- Hi, this is need to fix the calao board support since the introduction of the gigabit phy detection support Best Regards, J. drivers/net/miidev.c | 76 +++

[for master PATCH 2/2] calao: at91 qil/tny/usb auto detect the phy addr

2012-08-14 Thread Jean-Christophe PLAGNIOL-VILLARD
Signed-off-by: Jean-Christophe PLAGNIOL-VILLARD --- arch/arm/boards/qil-a9260/init.c |2 +- arch/arm/boards/tny-a926x/init.c |2 +- arch/arm/boards/usb-a926x/init.c |2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/arch/arm/boards/qil-a9260/init.c b/arch/arm/boards

[PATCH 1/3] Add support for OMAP4460 TPS62361

2012-08-14 Thread Jan Weitzel
based on: [U-Boot] [PATCH v 4/5] omap4: support TPS programming TPS62361 is the new power supply used in OMAP4460 that supplies vdd_mpu. VCORE1 from Phoenix supplies vdd_core and VCORE2 supplies vdd_iva. VCORE3 is not used in OMAP4460. Signed-off-by: F. Gasnier fabrice.gasn...@cenosys.com Signed-

[PATCH 0/3 v2] omap: 4460 support

2012-08-14 Thread Jan Weitzel
Add support for OMAP4460 cpu on top of ed358834 (next) v2: merge usage of omap4_scale_vcores to 1/3 avoid volatile int* Jan Weitzel (3): Add support for OMAP4460 TPS62361 OMAP4460: ram init changes OMAP4460: clock init arch/arm/boards/panda/lowlevel.c|4 +- arch/a

[PATCH 3/3] OMAP4460: clock init

2012-08-14 Thread Jan Weitzel
Change clock init to allow early gpio access. Add support for 4460 clocks. Signed-off-by: Jan Weitzel --- arch/arm/boards/panda/mux.c |8 + arch/arm/boards/pcm049/lowlevel.c | 11 +-- arch/arm/boards/pcm049/mux.c |8 + arch/arm

[PATCH 2/3] OMAP4460: ram init changes

2012-08-14 Thread Jan Weitzel
configure Memory Adapter for 4460 Signed-off-by: Jan Weitzel --- arch/arm/mach-omap/include/mach/omap4-silicon.h |4 arch/arm/mach-omap/omap4_generic.c | 21 +++-- 2 files changed, 23 insertions(+), 2 deletions(-) diff --git a/arch/arm/mach-omap/include/