From patchwork Mon Feb 6 09:36:07 2017 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Roger Quadros X-Patchwork-Id: 93388 Delivered-To: patch@linaro.org Received: by 10.140.20.99 with SMTP id 90csp1630081qgi; Mon, 6 Feb 2017 01:37:20 -0800 (PST) X-Received: by 10.223.135.201 with SMTP id c9mr8411507wrc.139.1486373840261; Mon, 06 Feb 2017 01:37:20 -0800 (PST) Return-Path: Received: from theia.denx.de (theia.denx.de. [85.214.87.163]) by mx.google.com with ESMTP id 67si219666wra.172.2017.02.06.01.37.18; Mon, 06 Feb 2017 01:37:19 -0800 (PST) Received-SPF: pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) client-ip=85.214.87.163; Authentication-Results: mx.google.com; spf=pass (google.com: best guess record for domain of u-boot-bounces@lists.denx.de designates 85.214.87.163 as permitted sender) smtp.mailfrom=u-boot-bounces@lists.denx.de; dmarc=fail (p=NONE sp=NONE dis=NONE) header.from=ti.com Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id DC8324B68A; Mon, 6 Feb 2017 10:37:14 +0100 (CET) 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 mtD4E78Ph6Al; Mon, 6 Feb 2017 10:37:14 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 5C3724B656; Mon, 6 Feb 2017 10:36:53 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 59BBA4B0A7 for ; Mon, 6 Feb 2017 10:36:34 +0100 (CET) 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 Q_nHhDtFSKhu for ; Mon, 6 Feb 2017 10:36:31 +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 lelnx194.ext.ti.com (lelnx194.ext.ti.com [198.47.27.80]) by theia.denx.de (Postfix) with ESMTPS id 643784B15F for ; Mon, 6 Feb 2017 10:36:24 +0100 (CET) Received: from dlelxv90.itg.ti.com ([172.17.2.17]) by lelnx194.ext.ti.com (8.15.1/8.15.1) with ESMTP id v169aKeB029185; Mon, 6 Feb 2017 03:36:20 -0600 Received: from DFLE73.ent.ti.com (dfle73.ent.ti.com [128.247.5.110]) by dlelxv90.itg.ti.com (8.14.3/8.13.8) with ESMTP id v169aK2I023063; Mon, 6 Feb 2017 03:36:20 -0600 Received: from dflp33.itg.ti.com (10.64.6.16) by DFLE73.ent.ti.com (128.247.5.110) with Microsoft SMTP Server id 14.3.294.0; Mon, 6 Feb 2017 03:36:19 -0600 Received: from lta0400828d.ti.com (ileax41-snat.itg.ti.com [10.172.224.153]) by dflp33.itg.ti.com (8.14.3/8.13.8) with ESMTP id v169aH0x000892; Mon, 6 Feb 2017 03:36:18 -0600 From: Roger Quadros To: , Date: Mon, 6 Feb 2017 11:36:07 +0200 Message-ID: <1486373775-29580-1-git-send-email-rogerq@ti.com> X-Mailer: git-send-email 2.7.4 MIME-Version: 1.0 Cc: u-boot@lists.denx.de Subject: [U-Boot] [u-boot PATCH v3 0/8] am57xx-idk LCD and am571x-idk 6 port ethernet pinmux X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.15 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" Hi, This series contains - Support am571x-idk LCD vs 6 port ethernet pinmux configuration. - AM57xx-idk LCD detection support. - K2G: pick up PRUSS ethernet MAC addresses from board EEPROM. Build tests: https://travis-ci.org/rogerq/u-boot/builds/198773695 Changelog: v3: - moved EEPROM options to board/ti/common/Kconfig. - Don't explicitly set EEPROM CONFIG addresses in defconfig if board is using the default addresses. v2: - avoid using __maybe_unused. - moved EEPROM address configuration to Kconfig. - LCD detection patch no longer update device tree. cheers, -roger Lokesh Vutla (1): ti: common: board_detect: Rename EEPROM scratch start macro Nishanth Menon (1): board: ti: am57xx-idk: Auto detect LCD Panel Roger Quadros (6): ARM: OMAP5+: GPIO: Add GPIO_TO_PIN() macro ti: common: board_detect: commodify ethaddr environment setting code board: ti: am571x-idk: Support 6 port Ethernet or 4 port Ethernet with LCD board: ti: am571x-idk: Update pinmux for ICSS2 Ethernet ARM: Use Kconfig for board EEPROM's I2C bus and chip address ARM: k2g: setup PRU ethernet MAC addresses arch/arm/include/asm/arch-omap5/gpio.h | 4 + arch/arm/include/asm/omap_common.h | 8 +- board/ti/am57xx/board.c | 102 ++++++++++++++++++++ board/ti/am57xx/mux_data.h | 166 ++++++++++++++++++++------------- board/ti/common/Kconfig | 14 +++ board/ti/common/board_detect.c | 57 +++++++++++ board/ti/common/board_detect.h | 14 ++- board/ti/ks2_evm/Kconfig | 2 + board/ti/ks2_evm/board_k2g.c | 19 ++++ include/configs/am57xx_evm.h | 4 - include/configs/dra7xx_evm.h | 4 - 11 files changed, 316 insertions(+), 78 deletions(-) -- 2.7.4 _______________________________________________ U-Boot mailing list U-Boot@lists.denx.de http://lists.denx.de/mailman/listinfo/u-boot