From patchwork Sat Dec 11 16:08:10 2010 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Sandeep Paulraj X-Patchwork-Id: 75198 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Received: from theia.denx.de (theia.denx.de [85.214.87.163]) by ozlabs.org (Postfix) with ESMTP id C35D6B70A5 for ; Sun, 12 Dec 2010 03:08:25 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 1FB35280A4; Sat, 11 Dec 2010 17:08:24 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id vOhK3hlzH08u; Sat, 11 Dec 2010 17:08:24 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 981DE2807D; Sat, 11 Dec 2010 17:08:22 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 10CE128071 for ; Sat, 11 Dec 2010 17:08:21 +0100 (CET) X-Virus-Scanned: Debian amavisd-new at theia.denx.de Received: from theia.denx.de ([127.0.0.1]) by localhost (theia.denx.de [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id PwbOTCtD+Gda for ; Sat, 11 Dec 2010 17:08:19 +0100 (CET) X-policyd-weight: NOT_IN_SBL_XBL_SPAMHAUS=-1.5 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from bear.ext.ti.com (bear.ext.ti.com [192.94.94.41]) by theia.denx.de (Postfix) with ESMTPS id 0ABDB280C2 for ; Sat, 11 Dec 2010 17:08:17 +0100 (CET) Received: from dlep33.itg.ti.com ([157.170.170.112]) by bear.ext.ti.com (8.13.7/8.13.7) with ESMTP id oBBG8CZU023368 (version=TLSv1/SSLv3 cipher=DHE-RSA-AES256-SHA bits=256 verify=NO); Sat, 11 Dec 2010 10:08:12 -0600 Received: from legion.dal.design.ti.com (localhost [127.0.0.1]) by dlep33.itg.ti.com (8.13.7/8.13.7) with ESMTP id oBBG8BDE026300; Sat, 11 Dec 2010 10:08:12 -0600 (CST) Received: from gt5d9d821.telogy.design.ti.com (gt5d9d821.telogy.design.ti.com [158.218.100.23]) by legion.dal.design.ti.com (8.11.7p1+Sun/8.11.7) with ESMTP id oBBG8Bf09297; Sat, 11 Dec 2010 10:08:11 -0600 (CST) Received: from gt5d9d821.telogy.design.ti.com (localhost [127.0.0.1] (may be forged)) by gt5d9d821.telogy.design.ti.com (8.13.1/8.13.1) with ESMTP id oBBG8BB4017681; Sat, 11 Dec 2010 11:08:11 -0500 Received: (from a0866907@localhost) by gt5d9d821.telogy.design.ti.com (8.13.1/8.13.1/Submit) id oBBG8AUd017678; Sat, 11 Dec 2010 11:08:11 -0500 From: s-paulraj@ti.com To: u-boot@lists.denx.de, wd@denx.de, albert.aribaud@free.fr Date: Sat, 11 Dec 2010 11:08:10 -0500 Message-Id: <1292083690-17647-1-git-send-email-s-paulraj@ti.com> X-Mailer: git-send-email 1.6.0.4 Subject: [U-Boot] Please pull u-boot-ti/next X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , MIME-Version: 1.0 Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de Wolfgang, Please pull u-boot-ti/next After adding the twl6030 patch i realized that Albert delegated this patch to himself. But i have seen no comments from him. So i did not ammend the pull request. If he has issues with this patch, we can drop it. Thanks, Sandeep The following changes since commit 917a62c0d292d9da45100a76151a9fa2d13a9cdc: Sandeep Paulraj (1): Merge branch 'next' of git://git.denx.de/u-boot into next are available in the git repository at: git://git.denx.de/u-boot-ti.git next Balaji T K (1): ARMV7: OMAP4: twl6030 add battery charging support Dirk Behme (1): OMAP3: SPI driver board/ti/sdp4430/Makefile | 2 +- board/ti/sdp4430/cmd_bat.c | 58 +++++++ board/ti/sdp4430/sdp.c | 4 + drivers/power/twl6030.c | 124 ++++++++++++++- drivers/spi/Makefile | 1 + drivers/spi/omap3_spi.c | 352 +++++++++++++++++++++++++++++++++++++++ drivers/spi/omap3_spi.h | 117 +++++++++++++ include/configs/omap3_beagle.h | 2 + include/configs/omap4_sdp4430.h | 1 + include/twl6030.h | 45 +++++- 10 files changed, 701 insertions(+), 5 deletions(-) create mode 100644 board/ti/sdp4430/cmd_bat.c create mode 100644 drivers/spi/omap3_spi.c create mode 100644 drivers/spi/omap3_spi.h