From patchwork Wed Nov 21 19:31:59 2018 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Marcin Niestroj X-Patchwork-Id: 1001364 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=fail (p=none dis=none) header.from=grinn-global.com Received: from lists.denx.de (dione.denx.de [81.169.180.215]) by ozlabs.org (Postfix) with ESMTP id 430XmC5mG3z9s3l for ; Thu, 22 Nov 2018 06:32:59 +1100 (AEDT) Received: by lists.denx.de (Postfix, from userid 105) id 7634FC223D1; Wed, 21 Nov 2018 19:32:32 +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=SPF_HELO_PASS 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 1C0D7C222FD; Wed, 21 Nov 2018 19:32:30 +0000 (UTC) Received: by lists.denx.de (Postfix, from userid 105) id 3DF69C223A0; Wed, 21 Nov 2018 19:32:28 +0000 (UTC) Received: from smtp.megiteam.pl (smtp.megiteam.pl [31.186.83.105]) by lists.denx.de (Postfix) with ESMTPS id D2528C22029 for ; Wed, 21 Nov 2018 19:32:27 +0000 (UTC) Received: from [95.143.241.142] (helo=localhost.localdomain) by smtp.megiteam.pl with esmtpsa (TLS1.2:DHE_RSA_AES_256_CBC_SHA1:256) (Exim 4.82) (envelope-from ) id 1gPYEb-0003RC-VF; Wed, 21 Nov 2018 20:32:26 +0100 From: Marcin Niestroj To: Tom Rini Date: Wed, 21 Nov 2018 20:31:59 +0100 Message-Id: <20181121193203.10906-1-m.niestroj@grinn-global.com> X-Mailer: git-send-email 2.19.1 MIME-Version: 1.0 Cc: u-boot@lists.denx.de Subject: [U-Boot] [PATCH 0/4] ARM: chiliboard: move towards driver model and device-tree boot 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" Hi, Currently on master branch we are no longer able to boot Linux on chiliboard. This is due to issue described at [1]. This series makes the boot to Linux working once again. This patch moves board support code to use driver model where possible and device-tree bot. As part of that we import DTS files from Linux v4.19. [1] https://lists.denx.de/pipermail/u-boot/2018-November/348558.html Marcin Niestroj (4): ARM: dts: am335x-chili*: add chiliSOM and chiliboard DTS files ARM: dts: am335x-chiliboard: add /chosen/stdout-path ARM: chiliboard: move towards driver model and device-tree boot ARM: chiliboard: remove dead !CONFIG_DM_SERIAL code arch/arm/dts/Makefile | 3 +- arch/arm/dts/am335x-chiliboard-u-boot.dtsi | 11 ++ arch/arm/dts/am335x-chiliboard.dts | 200 +++++++++++++++++++++ arch/arm/dts/am335x-chilisom.dtsi | 178 ++++++++++++++++++ board/grinn/chiliboard/board.c | 61 ------- configs/chiliboard_defconfig | 12 +- 6 files changed, 401 insertions(+), 64 deletions(-) create mode 100644 arch/arm/dts/am335x-chiliboard-u-boot.dtsi create mode 100644 arch/arm/dts/am335x-chiliboard.dts create mode 100644 arch/arm/dts/am335x-chilisom.dtsi