From mboxrd@z Thu Jan 1 00:00:00 1970 From: Igor Grinberg Date: Sun, 06 Jul 2014 10:35:14 +0300 Subject: [U-Boot] [PATCH v1 0/7] TI: armv7: add parallel NAND support In-Reply-To: <1404500717-775-1-git-send-email-pekon@ti.com> References: <1404500717-775-1-git-send-email-pekon@ti.com> Message-ID: <53B8FC32.2070803@compulab.co.il> List-Id: MIME-Version: 1.0 Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit To: u-boot@lists.denx.de Hi Pekon, On 07/04/14 22:05, Pekon Gupta wrote: > This patch series adds support for parallel NAND devices support connected via > GPMC chip-select on various boards belonging to AM33xx and OMAPx platforms. > This series also moves some board specific CONFIG_NAND_xx from generic files > to individual files. > > Tested using: ./MAKEALL -s am33xx -s omap3 -s oamp4 -s omap5 > works fine except for am335x_boneblack_vboot > build breaks for am335x_boneblack_vboot for un-related reasons > u-boot/scripts/dtc-version.sh: line 17: dtc: command not found This is obvious, apparently beagle bone black wants to use the DT for U-Boot and you don't have dtc installed or it is not in your PATH. > > > Pekon Gupta (7): > TI: armv7: move board specific NAND configs out from ti_armv7_common.h > and ti_am335x_common.h > board/ti/am335x: add support for beaglebone NAND cape > arm: lib: continue board_init_r even if valid flash device is not > detected > board/ti/am335x: add support for beaglebone NOR Cape > board/ti/am335x: update configs for parallel NAND > board/ti/am43xx: add support for parallel NAND > board/ti/dra7xx: add support for parallel NAND > > arch/arm/lib/board.c | 7 +- > board/ti/am335x/mux.c | 149 ++++++++++++++++++------------------- > board/ti/am43xx/board.c | 1 + > board/ti/am43xx/mux.c | 42 +++++++++++ > board/ti/dra7xx/mux_data.h | 30 ++++++++ > boards.cfg | 4 +- > doc/README.nand | 12 +++ > include/configs/am335x_evm.h | 64 +++++++++------- > include/configs/am43xx_evm.h | 70 +++++++++++++++++ > include/configs/cm_t335.h | 10 +++ > include/configs/dra7xx_evm.h | 58 ++++++++++++++- > include/configs/omap3_beagle.h | 6 ++ > include/configs/omap3_igep00x0.h | 9 +++ > include/configs/omap3_overo.h | 8 ++ > include/configs/omap3_zoom1.h | 7 ++ > include/configs/pengwyn.h | 7 ++ > include/configs/ti_am335x_common.h | 4 - > include/configs/ti_armv7_common.h | 9 --- > 18 files changed, 369 insertions(+), 128 deletions(-) > -- Regards, Igor.