Re: [U-Boot] [PATCH v2 0/7] Update gdsys board support

2014-11-18 Thread Dirk Eibach
Hi Kim, Hi Stefan,

do you see any chance too get this merged soon? mpc83xx: Add gdsys
hrcon board fixes a build failure and it would be nice to get it in
before rc2.

Kim offered to ack  mpc83xx: Add gdsys hrcon board. Stefan, can you
please get this through your repo afterwards?

Cheers
Dirk
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2 0/7] Update gdsys board support

2014-11-18 Thread Stefan Roese

On 18.11.2014 13:55, Dirk Eibach wrote:

do you see any chance too get this merged soon? mpc83xx: Add gdsys
hrcon board fixes a build failure and it would be nice to get it in
before rc2.

Kim offered to ack  mpc83xx: Add gdsys hrcon board. Stefan, can you
please get this through your repo afterwards?


Kim, could you please check this patch again and let me know if you are 
okay with me pulling it with the complete patch series via my tree?


Thanks,
Stefan

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2 0/7] Update gdsys board support

2014-11-18 Thread Kim Phillips
On Tue, 18 Nov 2014 13:59:12 +0100
Stefan Roese s...@denx.de wrote:

 On 18.11.2014 13:55, Dirk Eibach wrote:
  do you see any chance too get this merged soon? mpc83xx: Add gdsys
  hrcon board fixes a build failure and it would be nice to get it in
  before rc2.
 
  Kim offered to ack  mpc83xx: Add gdsys hrcon board. Stefan, can you
  please get this through your repo afterwards?
 
 Kim, could you please check this patch again and let me know if you are 
 okay with me pulling it with the complete patch series via my tree?

Stefan, thanks - took a brief look:  Would have rather seen at least
a minimum effort at getting the code migrated to the generic PHY
layer, but I don't have time to deal, so..I'm okay if you're okay.

Thanks,

Kim
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2 0/7] Update gdsys board support

2014-11-18 Thread Dirk Eibach
Hi Kim,

thanks for having a look. As I said I am preparing a RFC for migrating
things to generic PHY, but this will be bigger step scheduled for
v2015.04.

Cheers
Dirk
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2 0/7] Update gdsys board support

2014-11-18 Thread Stefan Roese

Hi Dirk,

On 19.11.2014 07:30, Dirk Eibach wrote:

thanks for having a look. As I said I am preparing a RFC for migrating
things to generic PHY, but this will be bigger step scheduled for
v2015.04.


Thanks, that is good to know.

I'll pull all your patches into the ppc4xx repository now and push them 
to Tom.


Thanks,
Stefan

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v2 0/7] Update gdsys board support

2014-11-13 Thread dirk . eibach
From: Dirk Eibach dirk.eib...@gdsys.cc



Changes in v2:
- fix compiler warning
- fix cppcheck finding reported by Wolfgang
- move cmd_ioloop from common to board/gdsys/common
- remove debug code from hrcon.c

Dirk Eibach (7):
  board: dlvision: Reduce memory footprint
  mtd: Handle 29LV800BT
  common: Fix cmd_fpgad addressing
  board: dlvision-10g: Compile fix
  board: iocon: Fix fpga index in print_fpga_info()
  board: iocon: Fix uninitialized access
  mpc83xx: Add gdsys hrcon board

 arch/powerpc/cpu/mpc83xx/Kconfig |   4 +
 board/gdsys/405ep/iocon.c| 201 +---
 board/gdsys/common/Makefile  |   4 +-
 board/gdsys/common/cmd_ioloop.c  | 295 +
 board/gdsys/common/ihs_mdio.c|  88 +
 board/gdsys/common/ihs_mdio.h|  18 ++
 board/gdsys/common/osd.c |   7 +-
 board/gdsys/common/phy.c | 280 
 board/gdsys/common/phy.h |  14 +
 board/gdsys/mpc8308/Kconfig  |  12 +
 board/gdsys/mpc8308/MAINTAINERS  |   6 +
 board/gdsys/mpc8308/Makefile |   9 +
 board/gdsys/mpc8308/hrcon.c  | 675 +++
 board/gdsys/mpc8308/mpc8308.c| 109 +++
 board/gdsys/mpc8308/mpc8308.h|  10 +
 board/gdsys/mpc8308/sdram.c  |  82 +
 common/cmd_fpgad.c   |  32 +-
 configs/hrcon_defconfig  |   3 +
 drivers/mtd/jedec_flash.c|  51 +++
 include/configs/dlvision.h   |   9 +-
 include/configs/hrcon.h  | 614 +++
 include/flash.h  |   1 +
 include/gdsys_fpga.h |  64 +++-
 23 files changed, 2375 insertions(+), 213 deletions(-)
 create mode 100644 board/gdsys/common/cmd_ioloop.c
 create mode 100644 board/gdsys/common/ihs_mdio.c
 create mode 100644 board/gdsys/common/ihs_mdio.h
 create mode 100644 board/gdsys/common/phy.c
 create mode 100644 board/gdsys/common/phy.h
 create mode 100644 board/gdsys/mpc8308/Kconfig
 create mode 100644 board/gdsys/mpc8308/MAINTAINERS
 create mode 100644 board/gdsys/mpc8308/Makefile
 create mode 100644 board/gdsys/mpc8308/hrcon.c
 create mode 100644 board/gdsys/mpc8308/mpc8308.c
 create mode 100644 board/gdsys/mpc8308/mpc8308.h
 create mode 100644 board/gdsys/mpc8308/sdram.c
 create mode 100644 configs/hrcon_defconfig
 create mode 100644 include/configs/hrcon.h

-- 
1.8.3

___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot