From patchwork Tue May 11 08:30:38 2021 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Tero Kristo X-Patchwork-Id: 1476924 Return-Path: X-Original-To: incoming@patchwork.ozlabs.org Delivered-To: patchwork-incoming@bilbo.ozlabs.org Authentication-Results: ozlabs.org; spf=pass (sender SPF authorized) smtp.mailfrom=lists.denx.de (client-ip=85.214.62.61; helo=phobos.denx.de; envelope-from=u-boot-bounces@lists.denx.de; receiver=) Authentication-Results: ozlabs.org; dkim=pass (2048-bit key; unprotected) header.d=kernel.org header.i=@kernel.org header.a=rsa-sha256 header.s=k20201202 header.b=Z1mf07Ni; dkim-atps=neutral Received: from phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) by ozlabs.org (Postfix) with ESMTPS id 4FfWNd4SBNz9sW1 for ; Tue, 11 May 2021 18:31:29 +1000 (AEST) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 2A34982F28; Tue, 11 May 2021 10:31:23 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.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; unprotected) header.d=kernel.org header.i=@kernel.org header.b="Z1mf07Ni"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id 8408F82F21; Tue, 11 May 2021 10:31:21 +0200 (CEST) X-Spam-Checker-Version: SpamAssassin 3.4.2 (2018-09-13) on phobos.denx.de X-Spam-Level: X-Spam-Status: No, score=-2.7 required=5.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,SPF_HELO_NONE autolearn=ham autolearn_force=no version=3.4.2 Received: from mail.kernel.org (mail.kernel.org [198.145.29.99]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id E0E2C82EDB for ; Tue, 11 May 2021 10:31:18 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=none dis=none) header.from=kernel.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=kristo@kernel.org Received: by mail.kernel.org (Postfix) with ESMTPSA id BB0C361107; Tue, 11 May 2021 08:31:15 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1620721877; bh=CMhSVQNTNgdRUr7YAL54CmIo9n4WdiFBfLg3qxO6Qa4=; h=From:To:Cc:Subject:Date:From; b=Z1mf07NiJWYK2HSbJkxXOOrQlWSo7D3eeRjwYUUJLeEBzF1+jzpDNlhNRGTdbEFT2 HEd54xvGi0mDb/VmePtKf9Y1eWnq+x0LjFc7Y8Q19JOYE9rD5Bj484+XTC46JlJ63h o5TMm43b3eIERqJySrjpwbK2aS2VlCfd3fQHoVJ4DkwRiZ/SicsMtSKbk5I7zYUdHM wsiw1B/rA6eqBLr76AciP0Z0YjZNxU2wh5fX93jqHXtLxTlksT/2ltcr6MU67aXx71 bFexb5d3wXHOkZcF+7HRL6WWkNmiqpj/PkvE6R8UO3ikGZHTe1qFjUL2x5IdLqTbpD VMCQ72GzmKOUA== From: Tero Kristo To: u-boot@lists.denx.de, lokeshvutla@ti.com Cc: trini@konsulko.com, praneeth@ti.com, d-gerlach@ti.com Subject: [PATCHv4 00/26] J72xx: HSM rearch support series Date: Tue, 11 May 2021 11:30:38 +0300 Message-Id: <20210511083104.10868-1-kristo@kernel.org> X-Mailer: git-send-email 2.17.1 X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.34 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.102.4 at phobos.denx.de X-Virus-Status: Clean Hello, Couple of small changes in v4: - re-worked patch #14 to include review comments from Jaehoon Chung * changed code to use iopoll version instead of hand crafted loops for timeout handling * other mostly cosmetic changes - patch #19/#21 changed to allow RM init to happen based on comment from Vignesh -Tero