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=-8.6 required=3.0 tests=DKIM_INVALID,DKIM_SIGNED, HEADER_FROM_DIFFERENT_DOMAINS,MAILING_LIST_MULTI,MENTIONS_GIT_HOSTING, SPF_HELO_NONE,SPF_PASS,USER_AGENT_GIT autolearn=unavailable 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 96D33CA9EBD for ; Sat, 26 Oct 2019 19:58:25 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [209.132.180.67]) by mail.kernel.org (Postfix) with ESMTP id 6C5EF21655 for ; Sat, 26 Oct 2019 19:58:25 +0000 (UTC) Authentication-Results: mail.kernel.org; dkim=fail reason="signature verification failed" (1024-bit key) header.d=kemnade.info header.i=@kemnade.info header.b="NtdFBzmU" Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S1726527AbfJZT6I (ORCPT ); Sat, 26 Oct 2019 15:58:08 -0400 Received: from mail.andi.de1.cc ([85.214.55.253]:50038 "EHLO mail.andi.de1.cc" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S1726463AbfJZT6I (ORCPT ); Sat, 26 Oct 2019 15:58:08 -0400 DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=kemnade.info; s=20180802; h=Content-Transfer-Encoding:MIME-Version: Message-Id:Date:Subject:Cc:To:From:Sender:Reply-To:Content-Type:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:In-Reply-To:References:List-Id:List-Help:List-Unsubscribe: List-Subscribe:List-Post:List-Owner:List-Archive; bh=MQYRheoq8kp41zbJw1RTKir7qxVJ+jzxSDKzGZgQqFM=; b=NtdFBzmUapL3+gcLQuTuXMe1E3 VW/jHGS1wvnIabtSmGP66fv2aKqA4WJ79Do5B+JIOpUhQEi5B5au6soQM/7SJp/qlBx+JfH08+9SY gLod2oHaAW4ad6wVWn5/04cnyUsF25iF6KG+O9/f2RkCgpqROTJxEYN0TI1yzCGLxdkI=; Received: from p5dc580b6.dip0.t-ipconnect.de ([93.197.128.182] helo=aktux) by mail.andi.de1.cc with esmtpsa (TLS1.2:ECDHE_RSA_AES_256_GCM_SHA384:256) (Exim 4.89) (envelope-from ) id 1iOSC9-0006sE-5H; Sat, 26 Oct 2019 21:57:53 +0200 Received: from andi by aktux with local (Exim 4.92) (envelope-from ) id 1iOSC8-0003pB-90; Sat, 26 Oct 2019 21:57:52 +0200 From: Andreas Kemnade To: robh+dt@kernel.org, mark.rutland@arm.com, shawnguo@kernel.org, s.hauer@pengutronix.de, kernel@pengutronix.de, festevam@gmail.com, linux-imx@nxp.com, manivannan.sadhasivam@linaro.org, andrew.smirnov@gmail.com, marex@denx.de, angus@akkea.ca, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-arm-kernel@lists.infradead.org, j.neuschaefer@gmx.net, Discussions about the Letux Kernel , Marco Felsch Cc: Andreas Kemnade Subject: [PATCH v4 0/3] dts: ARM: add Kobo Clara HD eBook reader Date: Sat, 26 Oct 2019 21:57:45 +0200 Message-Id: <20191026195748.14562-1-andreas@kemnade.info> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit Sender: devicetree-owner@vger.kernel.org Precedence: bulk List-ID: X-Mailing-List: devicetree@vger.kernel.org This adds a device tree for the Kobo Clara HD eBook reader. Name on mainboard is: 37NB-E60K00+4A4 Serials start with: E60K02 (a number also seen in vendor kernel sources) These boards are also found in the Tolino Shine 3 reader but equipped with a i.MX6SL processor. Support for that device is planned to be added in a later patch series. To prepare for that the device tree is split up into a board file containing SoC-independent stuff and a file containing the SoC-dependent stuff. Work is based on code from the vendor kernel at https://github.com/kobolabs/Kobo-Reader/blob/master/hw/imx6sll-clara/kernel.tar.bz2 but things need to be heavily reworked due to incompatible bindings and to prepare for Tolino Shine 3 Changes in v2: - reordered patches - various cleanups as suggested by Marco Felsch Changes in v3: - correct memory size - better name for led - comments about missing i2c devices Changes in v4: - various cleanups as requested by Shawn Guo Andreas Kemnade (3): dt-bindings: arm: fsl: add compatible string for Kobo Clara HD ARM: dts: add Netronix E60K02 board common file ARM: dts: imx: add devicetree for Kobo Clara HD .../devicetree/bindings/arm/fsl.yaml | 1 + arch/arm/boot/dts/Makefile | 3 +- arch/arm/boot/dts/e60k02.dtsi | 305 +++++++++++++++++ arch/arm/boot/dts/imx6sll-kobo-clarahd.dts | 324 ++++++++++++++++++ 4 files changed, 632 insertions(+), 1 deletion(-) create mode 100644 arch/arm/boot/dts/e60k02.dtsi create mode 100644 arch/arm/boot/dts/imx6sll-kobo-clarahd.dts -- 2.20.1