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 Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id 9F146C77B60 for ; Fri, 28 Apr 2023 18:38:49 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 82E6E85EEB; Fri, 28 Apr 2023 20:38:47 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=debian.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; secure) header.d=debian.org header.i=@debian.org header.b="MBndt0HB"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 89E5F85E7B; Fri, 28 Apr 2023 20:38:46 +0200 (CEST) Received: from cascadia.aikidev.net (cascadia.aikidev.net [IPv6:2600:3c01:e000:267:0:a171:de7:c]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id CA27985EEB for ; Fri, 28 Apr 2023 20:38:42 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=debian.org Authentication-Results: phobos.denx.de; spf=none smtp.mailfrom=vagrant@debian.org Received: from localhost (unknown [IPv6:2600:3c01:e000:21:7:77:0:50]) (Authenticated sender: vagrant@cascadia.debian.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id 8BC8B1ACE4; Fri, 28 Apr 2023 11:38:37 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=debian.org; s=1.vagrant.user; t=1682707117; bh=iJeVSndWLzaOv5teMLxijJKJekXGxdYIZRLtHWh51bQ=; h=From:To:Cc:Subject:In-Reply-To:References:Date:From; b=MBndt0HBqxSrNnxEG7afi0r6+07ik99AfA1+5m0xxLYsM8N+z/jz9s+dS8JaTj/aS tKICf9i4QMf7Cj76m9hvjy3EMao9uMqM4hyyABLfrjEwW7v578EUJHvGuVK8d7dzWJ 8pq7SYFBTNmr3DrckqDMNzLka2x8sz56IGo7+d/bhvae8gbPZ95jR/gQKoq3gp0Y1E FFtotPkewm/+dTiSY5+hV9o0HOjNuVOXqZPadDa9aXpYQ+2zFs2jNyPAXsUj3gL9NG cKJPadJuQEM2Nc5tBpIL9k4ZBmZ22kXwOCtYqKdAE84sAW/aJpEl+F5qWGGQt9ApBh Vc0thjUnG9YIQ== From: Vagrant Cascadian To: Patrick Wildt , Stefano Babic , Fabio Estevam Cc: u-boot@lists.denx.de, "Lukas F. Hartmann" Subject: Re: [PATCH v8] board: mntre: imx8mq: Add MNT Reform 2 board support In-Reply-To: <874jrzxt1w.fsf@yucca> References: <874jrzxt1w.fsf@yucca> Date: Fri, 28 Apr 2023 11:38:30 -0700 Message-ID: <87a5yr97ix.fsf@wireframe> MIME-Version: 1.0 Content-Type: multipart/signed; boundary="=-=-="; micalg=pgp-sha512; protocol="application/pgp-signature" X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 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" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean --=-=-= Content-Type: text/plain On 2023-02-05, Vagrant Cascadian wrote: > On 2023-02-06, Patrick Wildt wrote: >> The MNT Reform 2 is a modular DIY laptop. In its initial version it >> is based on the BoundaryDevices i.MX8MQ SoM. Some parts have been >> lifted from BoundaryDevices official U-Boot downstream project. >> >> Signed-off-by: Patrick Wildt > > Tested booting Debian with a 6.1.x linux kernel on a mnt/reform2 using > nvme rootfs and microsd /boot. Some oddities with video and wifi that do > not occur with the vendor u-boot, but seems like huge progress. The patch still applies to master; could this be considered for merging soon? live well, vagrant >> --- >> Changes since v7: >> - Re-added lost ramdisk_addr_r. >> Changes since v6: >> - Cleaned up some CONFIG_* pollution. >> Changes since v5: >> - Adjusted to further Binman changes. >> - Adjusted to further Kconfig conversions. >> - Removed some phy init in favor of DM. >> - Removed some pinmux which are now handled by DM_SERIAL. >> - Compared with Librem5/EVK and adjusted for similarity. >> Changes since v4: >> - Adjusted to Kconfig conversions. >> - Removed U-Boot-specific device tree changes. >> - Synced device tree to Linux v5.19-rc3. >> Changes since v3: >> - Adjusted to Binman changes in main branch. >> - Cleaned up environment variables akin to i.MX8MM. >> - Added vendor-prefix to device tree filename. >> - Provided ramdisk_addr_r. >> Changes since v2: >> - Switched to Binman. >> Changes since v1: >> - Synced DTS with files in Linux git repo. >> - Added support for USB host ports. >> >> arch/arm/dts/imx8mq-mnt-reform2-u-boot.dtsi | 11 + >> arch/arm/mach-imx/imx8m/Kconfig | 7 + >> board/mntre/imx8mq_reform2/Kconfig | 15 + >> board/mntre/imx8mq_reform2/MAINTAINERS | 7 + >> board/mntre/imx8mq_reform2/Makefile | 12 + >> board/mntre/imx8mq_reform2/imx8mq_reform2.c | 171 +++ >> board/mntre/imx8mq_reform2/lpddr4_timing.c | 1014 +++++++++++++++++ >> .../mntre/imx8mq_reform2/lpddr4_timing_ch2.h | 95 ++ >> board/mntre/imx8mq_reform2/spl.c | 260 +++++ >> configs/imx8mq_reform2_defconfig | 107 ++ >> include/configs/imx8mq_reform2.h | 67 ++ >> 11 files changed, 1766 insertions(+) >> create mode 100644 arch/arm/dts/imx8mq-mnt-reform2-u-boot.dtsi >> create mode 100644 board/mntre/imx8mq_reform2/Kconfig >> create mode 100644 board/mntre/imx8mq_reform2/MAINTAINERS >> create mode 100644 board/mntre/imx8mq_reform2/Makefile >> create mode 100644 board/mntre/imx8mq_reform2/imx8mq_reform2.c >> create mode 100644 board/mntre/imx8mq_reform2/lpddr4_timing.c >> create mode 100644 board/mntre/imx8mq_reform2/lpddr4_timing_ch2.h >> create mode 100644 board/mntre/imx8mq_reform2/spl.c >> create mode 100644 configs/imx8mq_reform2_defconfig >> create mode 100644 include/configs/imx8mq_reform2.h --=-=-= Content-Type: application/pgp-signature; name="signature.asc" -----BEGIN PGP SIGNATURE----- iHUEARYKAB0WIQRlgHNhO/zFx+LkXUXcUY/If5cWqgUCZEwSpwAKCRDcUY/If5cW qtD/AQDtsXkK9LvcVOUdff7dGrLAAyvXMg7//kbmwKtxWzlu2AD/WGn+OsjN6cIB KX7EWHw4yXKkbaDb7hwqTrRckmOyHAM= =ftSu -----END PGP SIGNATURE----- --=-=-=--