| Submitter | Thomas Chou |
|---|---|
| Date | Oct. 30, 2011, 2:21 p.m. |
| Message ID | <m3y5w2muf5.fsf@darkstar.wytron.com.tw> |
| Download | mbox |
| Permalink | /patch/122615/ |
| State | Accepted |
| Headers | show
Return-Path: <u-boot-bounces@lists.denx.de> 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 696F7B6F7B for <incoming@patchwork.ozlabs.org>; Mon, 31 Oct 2011 01:22:04 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B51A828AA3; Sun, 30 Oct 2011 15:22:02 +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 drmNajxlOoHV; Sun, 30 Oct 2011 15:22:02 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7E53B28A76; Sun, 30 Oct 2011 15:22:00 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 7DA5A2861B for <u-boot@lists.denx.de>; Sun, 30 Oct 2011 15:21:57 +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 eU-Jyasri7t5 for <u-boot@lists.denx.de>; Sun, 30 Oct 2011 15:21:56 +0100 (CET) X-Greylist: delayed 443 seconds by postgrey-1.27 at theia; Sun, 30 Oct 2011 15:21:53 CET X-policyd-weight: IN_SBL_XBL_SPAMHAUS=4.35 NOT_IN_SPAMCOP=-1.5 NOT_IN_BL_NJABL=-1.5 (only DNSBL check requested) Received: from darkstar.wytron.com.tw (unknown [219.85.123.222]) by theia.denx.de (Postfix) with ESMTP id 97C4D28AB3 for <u-boot@lists.denx.de>; Sun, 30 Oct 2011 15:21:53 +0100 (CET) Received: by darkstar.wytron.com.tw (Postfix, from userid 500) id 3A3A3104391; Sun, 30 Oct 2011 22:21:50 +0800 (CST) From: Thomas Chou <thomas@wytron.com.tw> To: Wolfgang Denk <wd@denx.de> Date: Sun, 30 Oct 2011 22:21:50 +0800 Message-ID: <m3y5w2muf5.fsf@darkstar.wytron.com.tw> MIME-Version: 1.0 Cc: u-boot@lists.denx.de Subject: [U-Boot] Pull request u-boot-nios.git X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.9 Precedence: list List-Id: U-Boot discussion <u-boot.lists.denx.de> List-Unsubscribe: <http://lists.denx.de/mailman/listinfo/u-boot>, <mailto:u-boot-request@lists.denx.de?subject=unsubscribe> List-Archive: <http://lists.denx.de/pipermail/u-boot> List-Post: <mailto:u-boot@lists.denx.de> List-Help: <mailto:u-boot-request@lists.denx.de?subject=help> List-Subscribe: <http://lists.denx.de/mailman/listinfo/u-boot>, <mailto:u-boot-request@lists.denx.de?subject=subscribe> Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: u-boot-bounces@lists.denx.de Errors-To: u-boot-bounces@lists.denx.de |
The following changes since commit ce5207e191c59b3135303fd03b98dd2ac3701ba2: e1000: Allow direct access to the E1000 SPI EEPROM device (2011-10-28 00:37:01 +0200) are available in the git repository at: git://git.denx.de/u-boot-nios.git master Joachim Foerster (4): nios2: Pseudo implement dcache_status/enable/disable() gpio: Add driver for Altera's PIO core board/nios2-generic: Use altera_pio driver and remove board specific driver nios2: Offer ft_board_setup() capability and call fdt_fixup_ethernet(). arch/nios2/cpu/Makefile | 1 + arch/nios2/cpu/cpu.c | 16 ++ arch/nios2/cpu/fdt.c | 53 +++++ arch/nios2/include/asm/gpio.h | 13 +- board/altera/nios2-generic/Makefile | 1 - board/altera/nios2-generic/custom_fpga.h | 1 + board/altera/nios2-generic/gpio.c | 71 ------- board/altera/nios2-generic/nios2-generic.c | 8 + drivers/gpio/Makefile | 1 + drivers/gpio/altera_pio.c | 299 ++++++++++++++++++++++++++++ include/configs/nios2-generic.h | 4 + 11 files changed, 394 insertions(+), 74 deletions(-) create mode 100644 arch/nios2/cpu/fdt.c delete mode 100644 board/altera/nios2-generic/gpio.c create mode 100644 drivers/gpio/altera_pio.c