From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: X-Spam-Checker-Version: SpamAssassin 3.4.0 (2014-02-07) on aws-us-west-2-korg-lkml-1.web.codeaurora.org X-Spam-Level: X-Spam-Status: No, score=-3.1 required=3.0 tests=DKIM_SIGNED,DKIM_VALID, DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,SPF_PASS, USER_AGENT_GIT autolearn=ham autolearn_force=no version=3.4.0 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) by smtp.lore.kernel.org (Postfix) with ESMTP id DFA11C282DA for ; Wed, 17 Apr 2019 16:55:26 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id AC43A20835 for ; Wed, 17 Apr 2019 16:55:26 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=pass (1024-bit key) header.d=akkea.ca header.i=@akkea.ca header.b="hgRh1mps"; dkim=pass (1024-bit key) header.d=akkea.ca header.i=@akkea.ca header.b="WaXPPY3b" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1732907AbfDQQzZ (ORCPT ); Wed, 17 Apr 2019 12:55:25 -0400 Received: from node.akkea.ca ([192.155.83.177]:45172 "EHLO node.akkea.ca" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1729641AbfDQQzZ (ORCPT ); Wed, 17 Apr 2019 12:55:25 -0400 Received: from localhost (localhost [127.0.0.1]) by node.akkea.ca (Postfix) with ESMTP id 1AAFE4E204E; Wed, 17 Apr 2019 16:55:24 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=akkea.ca; s=mail; t=1555520124; bh=1yUusGBdcu5BEoPIKK0Fan8/wFVNluzZyLTp08YWMeY=; h=From:To:Cc:Subject:Date; b=hgRh1mpsRxpg5ENqByC5HqzLfs/Ht+pZ+kAyrP4WkgXXgecF3rSnsqgDl+CCDO9sU irF6y627X2aGN6xLKFeTdVtuTAseVDmOkv34e2lynSguwnF0QPMdcFsw7X3Jt7B8Tt XeEHRPdob6+LyZXP0wlJYrtd9t64lXna//kcPiXI= X-Virus-Scanned: Debian amavisd-new at mail.akkea.ca Received: from node.akkea.ca ([127.0.0.1]) by localhost (mail.akkea.ca [127.0.0.1]) (amavisd-new, port 10024) with ESMTP id I2ScYVgCG2q8; Wed, 17 Apr 2019 16:55:23 +0000 (UTC) Received: from midas.localdomain (S0106788a2041785e.gv.shawcable.net [70.66.86.75]) by node.akkea.ca (Postfix) with ESMTPSA id 90D7B4E204B; Wed, 17 Apr 2019 16:55:22 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=akkea.ca; s=mail; t=1555520123; bh=1yUusGBdcu5BEoPIKK0Fan8/wFVNluzZyLTp08YWMeY=; h=From:To:Cc:Subject:Date; b=WaXPPY3bDvMxkhFHrJNy9UIpKSU5lK/PN83HNu6/dpcY3KCClrLqdlxoB4b4D2xHc rGYCVdaPDzDGorxCFwpvRLTUawGvS94EpH5FwHijlRY+I2N3B+kR9NOEWaU747RABB l/HFEybDwQWgq4VAsAca3VFH3V9mywFPz6M4vyBI= From: "Angus Ainslie (Purism)" To: angus.ainslie@puri.sm Cc: m.felsch@pengutronix.de, Rob Herring , Mark Rutland , Shawn Guo , Sascha Hauer , Pengutronix Kernel Team , Fabio Estevam , NXP Linux Team , Palmer Dabbelt , Albert Ou , Paul Walmsley , Matthias Brugger , Guo Ren , "Angus Ainslie (Purism)" , Thierry Reding , Jonathan Cameron , Kevin Hilman , Manivannan Sadhasivam , Andrey Smirnov , =?UTF-8?q?Jonathan=20Neusch=C3=A4fer?= , Jacky Bai , Aisheng Dong , Bruno Thomsen , devicetree@vger.kernel.org, linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, linux-riscv@lists.infradead.org, linux-mediatek@lists.infradead.org Subject: [PATCH v5 0/3] Add support for the Purism Librem5 devkit Date: Wed, 17 Apr 2019 09:55:11 -0700 Message-Id: <20190417165514.18689-1-angus@akkea.ca> X-Mailer: git-send-email 2.17.1 Sender: linux-kernel-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org The Librem5 devkit is based on the imx8mq from NXP. This is a default devicetree to boot the board to a command prompt. Changes since v4: Compiled against linux-next next-20190415. Added imx8mq to the arm yaml file. Re-arrange regulator nodes to dropp undefined supplies. Additional ordering for aesthetics. Split some long lines. Added lots of blank lines. Moved pinctl muxes to where they are used. Cleaned out reg defintions from regulator nodes. Changes since v3: Freshly sorted and pressed nodes. Change the backlight to an interpolated scale. Dropped i2c2. Dropped devkit version number to match debian MR. Changes since v2: Fixed incorrect phy-supply for the fsl-fec. Dropped unused regulator property. Fixup Makefile for linux-next. Changes since v1: Dropped config file. Updated the board compatible label. Changed node names to follow naming conventions. Added a more complete regulator hierachy. Removed unused nodes. Removed unknown devices. Fixed comment style. Dropped undocumented properties. Angus Ainslie (Purism) (3): arm64: dts: fsl: librem5: Add a device tree for the Librem5 devkit dt-bindings: Add an entry for Purism SPC dt-bindings: arm: fsl: Add the imx8mq boards .../devicetree/bindings/arm/fsl.yaml | 7 + .../devicetree/bindings/vendor-prefixes.txt | 1 + arch/arm64/boot/dts/freescale/Makefile | 1 + .../dts/freescale/imx8mq-librem5-devkit.dts | 833 ++++++++++++++++++ 4 files changed, 842 insertions(+) create mode 100644 arch/arm64/boot/dts/freescale/imx8mq-librem5-devkit.dts -- 2.17.1