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 B754DC433F5 for ; Fri, 17 Dec 2021 15:21:34 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id ACFCF8309F; Fri, 17 Dec 2021 16:21:21 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=akkea.ca Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (1024-bit key; unprotected) header.d=akkea.ca header.i=@akkea.ca header.b="gXS7JN6x"; dkim=pass (1024-bit key) header.d=akkea.ca header.i=@akkea.ca header.b="Wh8UJKF2"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id D4AF18304A; Fri, 17 Dec 2021 16:21:15 +0100 (CET) Received: from node.akkea.ca (li1434-30.members.linode.com [45.33.107.30]) (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 698828304C for ; Fri, 17 Dec 2021 16:21:09 +0100 (CET) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=akkea.ca Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=angus@akkea.ca Received: from localhost (localhost [127.0.0.1]) by node.akkea.ca (Postfix) with ESMTP id 54F0D4E201D; Fri, 17 Dec 2021 15:21:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=akkea.ca; s=mail; t=1639754467; bh=DqMEYoAv3wzB7ZVBfiXuvNdxuunYnaCQQDJN56jl2KE=; h=From:To:Cc:Subject:Date; b=gXS7JN6xc3TNYhJqilNfh1CUMT25fpm2STNlKJAFbHqgLvLHGZEHD2G83fmOwRUfm ShCkrjTd/pktwyMCnk7calo5U1Qi1Cw2XHQAVPriNh8PqUtjvl6yM+GzFG8CkR6cyO /VLFi0W8E/mQnegXP3ybvmKXxELcwlCLcaWCa/Lg= 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 hQ_TJdj2gIJR; Fri, 17 Dec 2021 15:21:02 +0000 (UTC) Received: from midas.localdomain (S0106788a2041785e.gv.shawcable.net [24.108.106.191]) by node.akkea.ca (Postfix) with ESMTPSA id 395B34E2003; Fri, 17 Dec 2021 15:21:02 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=akkea.ca; s=mail; t=1639754462; bh=DqMEYoAv3wzB7ZVBfiXuvNdxuunYnaCQQDJN56jl2KE=; h=From:To:Cc:Subject:Date; b=Wh8UJKF2ShDVnZcBFmnaAV4UjeOw1uXQShclnV2jP+PRCary2QH3wsnj2Oz3n8rBN bRwktOJQAtndPYG0o1c4bTRXxZLFqBWOIpwaTzNSLAXTDS5VKYbYdJLZv/jCzJLw2W jkfWt8LrzODKNkt0lf+nn/DU66S0a7kFQ/kJI9aQ= From: Angus Ainslie To: u-boot@lists.denx.de, "NXP i.MX U-Boot Team" Cc: Stefano Babic , Fabio Estevam , Peng Fan , Angus Ainslie , Marek Vasut , Ye Li , Alice Guo , Patrick Wildt , Simon Glass , Frieder Schrempf , =?UTF-8?q?Marek=20Beh=C3=BAn?= , "Ying-Chun Liu (PaulLiu)" , kernel@puri.sm Subject: [PATCH 0/3] add some imx8m power and clock control Date: Fri, 17 Dec 2021 07:20:37 -0800 Message-Id: <20211217152040.324803-1-angus@akkea.ca> X-Mailer: git-send-email 2.25.1 MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.38 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.2 at phobos.denx.de X-Virus-Status: Clean Enable some imx8m subsystems used when booting the librem5 phone Angus Ainslie (3): imx8m: clock_imx8mq: Add the ecspi clocks arch: imx8m: imx-regs.h add the USB regs arch: imx8m: Add USB power control arch/arm/include/asm/arch-imx8m/imx-regs.h | 14 +++++ arch/arm/include/asm/arch-imx8m/sys_proto.h | 1 + arch/arm/mach-imx/imx8m/clock_imx8mq.c | 38 ++++++++++++++ arch/arm/mach-imx/imx8m/soc.c | 57 +++++++++++++++++++++ 4 files changed, 110 insertions(+) -- 2.25.1