Re: [U-Boot] [PATCH v2 0/7] palm treo 680 smartphone board support

2013-04-14 Thread Marek Vasut
Hi Mike,

 Hi,
 
 This patchset adds support for the Palm Treo 680 smartphone.  I had to make
 some minor tweaks to u-boot to get things working.  Most of these changes
 are small, and most only touch the pxa arch.
 
 Thanks for looking.

I pushed what I considered ok to u-boot-pxa/master, please start your reworks 
on 
top of that.

Thanks!

Best regards,
Marek Vasut
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


Re: [U-Boot] [PATCH v2 0/7] palm treo 680 smartphone board support

2013-04-14 Thread Mike Dunn
On 04/14/2013 10:44 AM, Marek Vasut wrote:
 Hi Mike,
 
 Hi,

 This patchset adds support for the Palm Treo 680 smartphone.  I had to make
 some minor tweaks to u-boot to get things working.  Most of these changes
 are small, and most only touch the pxa arch.

 Thanks for looking.
 
 I pushed what I considered ok to u-boot-pxa/master, please start your reworks 
 on 
 top of that.


Will do.  Thanks a lot for your time and effort in reviewing!

I forgot to add 'v3' to the subject line of patch 5/8 in the last set I sent:

[PATCH 5/8] lib: import bitrev library from the linux kernel

Don't know if that will cause problems or not.  The contents of the patch are
unchanged from v2, but the description added the HEAD commit from the kernel I
took the code from, as we discussed.

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


Re: [U-Boot] [PATCH v2 0/7] palm treo 680 smartphone board support

2013-04-14 Thread Marek Vasut
Dear Mike Dunn,

 On 04/14/2013 10:44 AM, Marek Vasut wrote:
  Hi Mike,
  
  Hi,
  
  This patchset adds support for the Palm Treo 680 smartphone.  I had to
  make some minor tweaks to u-boot to get things working.  Most of these
  changes are small, and most only touch the pxa arch.
  
  Thanks for looking.
  
  I pushed what I considered ok to u-boot-pxa/master, please start your
  reworks on top of that.
 
 Will do.  Thanks a lot for your time and effort in reviewing!
 
 I forgot to add 'v3' to the subject line of patch 5/8 in the last set I
 sent:
 
 [PATCH 5/8] lib: import bitrev library from the linux kernel
 
 Don't know if that will cause problems or not.  The contents of the patch
 are unchanged from v2, but the description added the HEAD commit from the
 kernel I took the code from, as we discussed.

Don't worry, I picked most of them already.

Best regards,
Marek Vasut
___
U-Boot mailing list
U-Boot@lists.denx.de
http://lists.denx.de/mailman/listinfo/u-boot


[U-Boot] [PATCH v2 0/7] palm treo 680 smartphone board support

2013-04-10 Thread Mike Dunn
Hi,

This patchset adds support for the Palm Treo 680 smartphone.  I had to make some
minor tweaks to u-boot to get things working.  Most of these changes are small,
and most only touch the pxa arch.

Thanks for looking.

Changelog:
v2:
  - tabs removed in #defines in palmtreo680.h
  - use '__weak' macro in pxa_lcd
  - remove externs from function prototypes in bitrev.h
  - remove commented-out code from docg4.c
  - the CONFIG_SYS_LCD_PXA_NO_L_BIAS patch was removed; the same result
is accomplished by re-configuring the L_BIAS gpio in the board-specific
lcd_enable(), which runs after the driver initialization
  - userland utility for programming u-boot to flash moved to tools/palmtreo680
  - commit message for patches that add bitrev library and docg4 driver contain
the commit and linux version for when the code was added to linux

Mike Dunn (7):
  pxa_lcd: add the ACX544AKN lcd device
  pxa_lcd: make lcd_enable() a weak pointer
  pxa27x_udc: remove call to unimplemented set_GPIO_mode()
  arm: bootm: call udc_disable()before booting linux
  lib: import bitrev library from the linux kernel
  mtd: nand: add driver for diskonchip g4 nand flash
  add support for palm treo 680 board

 CREDITS  |4 +
 MAINTAINERS  |3 +
 arch/arm/include/asm/arch-pxa/hardware.h |   11 -
 arch/arm/include/asm/bootm.h |1 +
 arch/arm/lib/bootm.c |1 +
 board/palmtreo680/Makefile   |   34 +
 board/palmtreo680/palmtreo680.c  |  179 +
 board/palmtreo680/palmtreo680_spl.lds|   51 ++
 boards.cfg   |1 +
 doc/README.palmtreo680   |  570 
 drivers/mtd/nand/Makefile|2 +
 drivers/mtd/nand/docg4.c | 1034 ++
 drivers/mtd/nand/docg4_spl.c |  221 +++
 drivers/usb/gadget/pxa27x_udc.c  |4 +-
 drivers/video/pxa_lcd.c  |   34 +-
 include/configs/palmtreo680.h|  296 +
 include/linux/bitrev.h   |   23 +
 include/linux/mtd/docg4.h|  134 
 lib/Makefile |1 +
 lib/bitrev.c |   59 ++
 tools/palmtreo680/flash_u-boot.c |  177 +
 21 files changed, 2827 insertions(+), 13 deletions(-)
 create mode 100644 board/palmtreo680/Makefile
 create mode 100644 board/palmtreo680/palmtreo680.c
 create mode 100644 board/palmtreo680/palmtreo680_spl.lds
 create mode 100644 doc/README.palmtreo680
 create mode 100644 drivers/mtd/nand/docg4.c
 create mode 100644 drivers/mtd/nand/docg4_spl.c
 create mode 100644 include/configs/palmtreo680.h
 create mode 100644 include/linux/bitrev.h
 create mode 100644 include/linux/mtd/docg4.h
 create mode 100644 lib/bitrev.c
 create mode 100644 tools/palmtreo680/flash_u-boot.c

-- 
1.7.8.6

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