From patchwork Sat Dec 3 02:57:51 2011 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Simon Glass X-Patchwork-Id: 129038 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 1AF49B6F6B for ; Sat, 3 Dec 2011 13:58:41 +1100 (EST) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id E2536282E0; Sat, 3 Dec 2011 03:58:31 +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 Jj0mWKYdGwH2; Sat, 3 Dec 2011 03:58:31 +0100 (CET) Received: from theia.denx.de (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id 0AB9528295; Sat, 3 Dec 2011 03:58:14 +0100 (CET) Received: from localhost (localhost [127.0.0.1]) by theia.denx.de (Postfix) with ESMTP id B14272828F for ; Sat, 3 Dec 2011 03:58:08 +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 34wNtCwOZNCH for ; Sat, 3 Dec 2011 03:58:08 +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 mail-ee0-f74.google.com (mail-ee0-f74.google.com [74.125.83.74]) by theia.denx.de (Postfix) with ESMTPS id 8A15528282 for ; Sat, 3 Dec 2011 03:58:07 +0100 (CET) Received: by mail-ee0-f74.google.com with SMTP id d41so53119eek.3 for ; Fri, 02 Dec 2011 18:58:07 -0800 (PST) Received: by 10.14.45.165 with SMTP id p37mr832946eeb.5.1322881087297; Fri, 02 Dec 2011 18:58:07 -0800 (PST) Received: by 10.14.45.165 with SMTP id p37mr832931eeb.5.1322881087184; Fri, 02 Dec 2011 18:58:07 -0800 (PST) Received: from hpza10.eem.corp.google.com ([74.125.121.33]) by gmr-mx.google.com with ESMTPS id i11si6868081eea.0.2011.12.02.18.58.07 (version=TLSv1/SSLv3 cipher=AES128-SHA); Fri, 02 Dec 2011 18:58:07 -0800 (PST) Received: from wpaz1.hot.corp.google.com (wpaz1.hot.corp.google.com [172.24.198.65]) by hpza10.eem.corp.google.com (Postfix) with ESMTPS id EA7EF20004E; Fri, 2 Dec 2011 18:58:06 -0800 (PST) Received: from sglass.mtv.corp.google.com (sglass.mtv.corp.google.com [172.22.72.144]) by wpaz1.hot.corp.google.com with ESMTP id pB32w4xI028926; Fri, 2 Dec 2011 18:58:04 -0800 Received: by sglass.mtv.corp.google.com (Postfix, from userid 121222) id 1CBEC1412D0; Fri, 2 Dec 2011 18:58:03 -0800 (PST) From: Simon Glass To: U-Boot Mailing List Date: Fri, 2 Dec 2011 18:57:51 -0800 Message-Id: <1322881071-11148-7-git-send-email-sjg@chromium.org> X-Mailer: git-send-email 1.7.3.1 In-Reply-To: <1322881071-11148-1-git-send-email-sjg@chromium.org> References: <1322881071-11148-1-git-send-email-sjg@chromium.org> X-System-Of-Record: true Cc: Tom Warren Subject: [U-Boot] [PATCH 6/6] tegra: Enable keyboard for Seaboard 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 This enables the standard keyboard on Seaboard. Signed-off-by: Simon Glass --- include/configs/seaboard.h | 9 +++++++++ 1 files changed, 9 insertions(+), 0 deletions(-) diff --git a/include/configs/seaboard.h b/include/configs/seaboard.h index a105c88..4d2852e 100644 --- a/include/configs/seaboard.h +++ b/include/configs/seaboard.h @@ -87,4 +87,13 @@ #define CONFIG_USB_STORAGE #define CONFIG_CMD_USB +/* Enable keyboard */ +#define CONFIG_TEGRA2_KEYBOARD +#define CONFIG_KEYBOARD + +#undef TEGRA2_DEVICE_SETTINGS +#define TEGRA2_DEVICE_SETTINGS "stdin=serial,tegra-kbc\0" \ + "stdout=serial\0" \ + "stderr=serial\0" + #endif /* __CONFIG_H */