From patchwork Sun Apr 27 01:14:30 2014 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Andrey Danin X-Patchwork-Id: 343139 X-Patchwork-Delegate: twarren@nvidia.com 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 239341400A6 for ; Sun, 27 Apr 2014 20:39:05 +1000 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9492A4BB72; Sun, 27 Apr 2014 12:39:01 +0200 (CEST) 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 Y78HIwag-1Ty; Sun, 27 Apr 2014 12:39:01 +0200 (CEST) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 745A24BB75; Sun, 27 Apr 2014 12:38:58 +0200 (CEST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 9660D4BB75 for ; Sun, 27 Apr 2014 12:38:53 +0200 (CEST) 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 gxFCtdCUVhA5 for ; Sun, 27 Apr 2014 12:38:51 +0200 (CEST) X-Greylist: delayed 347 seconds by postgrey-1.27 at theia; Sun, 27 Apr 2014 12:38:48 CEST 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 fallback6.mail.ru (fallback2.mail.ru [94.100.176.87]) by theia.denx.de (Postfix) with ESMTP id 258AD4BB72 for ; Sun, 27 Apr 2014 12:38:48 +0200 (CEST) Received: from smtp33.i.mail.ru (smtp33.i.mail.ru [94.100.177.93]) by fallback6.mail.ru (mPOP.Fallback_MX) with ESMTP id 7DA4037AD059 for ; Sun, 27 Apr 2014 14:33:00 +0400 (MSK) DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=mail.ru; s=mail2; h=References:In-Reply-To:Message-Id:Date:Subject:Cc:To:From; bh=aLkJ72HYT4vHuY8KbXM6Z+E1gXmFARWYoT2z5QVspAk=; b=OCVzHG1t05VKgRuy/C7RIBriqN6zMTv8lB4oKGlPukvtVbUaYmlp3ZU0q8YSIrKIxGoKZgNUOfzI3TVJOrm7Gz8Ygik0C7n6IVv3xoJTEJyfz51E3lwO3JCTCA9PgmL6/+PYTywcy/8MGSrGdWzYuOhS0EfC/EDdL18CdNuF390=; Received: from [87.255.14.112] (port=50586 helo=localhost.localdomain) by smtp33.i.mail.ru with esmtpa (envelope-from ) id 1WeMOH-00061u-DS; Sun, 27 Apr 2014 14:32:57 +0400 From: Andrey Danin To: Tom Warren , u-boot@lists.denx.de Date: Sun, 27 Apr 2014 05:14:30 +0400 Message-Id: <1398561270-25091-7-git-send-email-danindrey@mail.ru> X-Mailer: git-send-email 1.7.9.5 In-Reply-To: <1398561270-25091-1-git-send-email-danindrey@mail.ru> References: <[PATCH 0/3] ARM: tegra: add nvec keyboard support for paz00> <1398561270-25091-1-git-send-email-danindrey@mail.ru> X-Spam: Not detected X-Mras: Ok Cc: Julian Andres Klode , Stephen Warren , ac100@lists.launchpad.net Subject: [U-Boot] [PATCH v2 6/6] ARM: tegra: paz00: enable nvec keyboard X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.11 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 Signed-off-by: Andrey Danin CC: Stephen Warren CC: Marc Dietrich CC: Julian Andres Klode CC: ac100@lists.launchpad.net --- Changes for v2: - device tree part moved to separate patch - added I2C specific defines for initialization include/configs/paz00.h | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/include/configs/paz00.h b/include/configs/paz00.h index 9e2686a..39dbe1e 100644 --- a/include/configs/paz00.h +++ b/include/configs/paz00.h @@ -72,6 +72,15 @@ #define CONFIG_SYS_WHITE_ON_BLACK #define CONFIG_CONSOLE_SCROLL_LINES 10 +/* Keyboard support */ +#define CONFIG_KEYBOARD +#define CONFIG_TEGRA_NVEC_KEYBOARD +/* NVEC support */ +#define CONFIG_SYS_I2C +#define CONFIG_SYS_I2C_TEGRA +#define CONFIG_SYS_I2C_INIT_BOARD +#define CONFIG_SYS_I2C_TEGRA_NVEC + #include "tegra-common-post.h" #endif /* __CONFIG_H */