From patchwork Wed Jan 30 14:17:24 2019 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Jonathan Gray X-Patchwork-Id: 1033574 X-Patchwork-Delegate: agraf@suse.de Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=none (mailfrom) smtp.mailfrom=lists.denx.de (client-ip=81.169.180.215; helo=lists.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dmarc=none (p=none dis=none) header.from=jsg.id.au Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 43qQS24NfGz9sBZ for ; Thu, 31 Jan 2019 01:17:38 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 4B0BCC21E07; Wed, 30 Jan 2019 14:17:34 +0000 (UTC) X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on lists.denx.de X-Spam-Level: X-Spam-Status: No, score=0.0 required=5.0 tests=none autolearn=unavailable autolearn_force=no version=3.4.0 Received: from lists.denx.de (localhost [IPv6:::1]) by lists.denx.de (Postfix) with ESMTP id 2A649C21C27; Wed, 30 Jan 2019 14:17:32 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id EAD55C21C57; Wed, 30 Jan 2019 14:17:30 +0000 (UTC) Received: from lechuck.jsg.id.au (jsg.id.au [210.15.216.215]) by lists.denx.de (Postfix) with ESMTPS id 6A614C21C2C for ; Wed, 30 Jan 2019 14:17:29 +0000 (UTC) Received: from largo.jsg.id.au (largo.jsg.id.au [192.168.1.43]) by lechuck.jsg.id.au (OpenSMTPD) with ESMTPS id 366e9e52 (TLSv1.2:ECDHE-RSA-CHACHA20-POLY1305:256:NO); Thu, 31 Jan 2019 01:17:25 +1100 (AEDT) Received: from largo.jsg.id.au (localhost [127.0.0.1]) by largo.jsg.id.au (OpenSMTPD) with ESMTP id 72e1884d; Thu, 31 Jan 2019 01:17:24 +1100 (AEDT) From: Jonathan Gray To: u-boot@lists.denx.de Date: Thu, 31 Jan 2019 01:17:24 +1100 Message-Id: <20190130141724.22574-1-jsg@jsg.id.au> X-Mailer: git-send-email 2.19.1 MIME-Version: 1.0 Cc: agraf@suse.de Subject: [U-Boot] [PATCH] rpi: add Compute Module 3+ X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.18 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" Add Raspberry Pi Compute Module 3+ to list of models, the revision code is 0x10 according to the list on raspberrypi.org. Signed-off-by: Jonathan Gray --- board/raspberrypi/rpi/rpi.c | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/board/raspberrypi/rpi/rpi.c b/board/raspberrypi/rpi/rpi.c index 153a1fdcb7..c118250740 100644 --- a/board/raspberrypi/rpi/rpi.c +++ b/board/raspberrypi/rpi/rpi.c @@ -143,6 +143,11 @@ static const struct rpi_model rpi_models_new_scheme[] = { DTB_DIR "bcm2837-rpi-3-a-plus.dtb", false, }, + [0x10] = { + "Compute Module 3+", + DTB_DIR "bcm2837-rpi-cm3-plus.dtb", + false, + }, }; static const struct rpi_model rpi_models_old_scheme[] = {