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 8000AC433F5 for ; Sun, 1 May 2022 12:21:57 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 5B2E783BBF; Sun, 1 May 2022 14:21:54 +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="pVaYMfk9"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id ACCC683C8C; Sun, 1 May 2022 14:21:52 +0200 (CEST) Received: from dfw.source.kernel.org (dfw.source.kernel.org [139.178.84.217]) (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 2D9DB834AD for ; Sun, 1 May 2022 14:21:50 +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=pali@kernel.org Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 85B1D60EA1; Sun, 1 May 2022 12:21:48 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id C46E1C385AA; Sun, 1 May 2022 12:21:47 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1651407707; bh=VLe0Ihn6b436r9b+mXQpbvnDytfztnjzhcIxXWwlu9E=; h=From:To:Cc:Subject:Date:From; b=pVaYMfk9kASQIZXK0uICIQpSSTiTx7ooJdyDeNrSZaKL+cDPdfUTRi41vzNycY+Ml OCppsTcLVYA2pEFt8ccbSbBmr+Y7rYv7my5gsgGRZFvKSaSug+PnpcA+YDkkZiSSkZ Tv75PHJ9pez1527ESQdDVsZDBZyLGYb+t1RNidxuCPjPtCC6yMFqGVjBcKq9GLwI75 I4jMig/iJmnmnvSt/Axv9K8PZRsrj7bF2UzgvM0ENGYn8vEDYJDB0lQhQuPMAtmhZK Mss75ZA5NykSjUxTvDvZBVcz8aXnZgEXJ3rqN8w8LGEHlhUFdroRu3Md/mXCw5H83u /UoOC6hBgcTvw== Received: by pali.im (Postfix) id 09163942; Sun, 1 May 2022 14:21:45 +0200 (CEST) From: =?UTF-8?q?Pali=20Roh=C3=A1r?= To: Priyanka Jain , Sinan Akman Cc: u-boot@lists.denx.de Subject: [PATCH] board: freescale: p1_p2_rdb_pc: Enable TDM function only for P1010 Date: Sun, 1 May 2022 14:20:48 +0200 Message-Id: <20220501122048.32535-1-pali@kernel.org> X-Mailer: git-send-email 2.20.1 MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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.5 at phobos.denx.de X-Virus-Status: Clean TDM function is supported only on P1010. P2020 does not have PMUXCR_TDM_ENA register, so do not enable it. Signed-off-by: Pali Rohár --- board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c | 2 ++ 1 file changed, 2 insertions(+) diff --git a/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c b/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c index e559a77b2dac..2e1aff59b15b 100644 --- a/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c +++ b/board/freescale/p1_p2_rdb_pc/p1_p2_rdb_pc.c @@ -154,7 +154,9 @@ int board_early_init_f(void) clrbits_be32(&gur->sdhcdcr, SDHCDCR_CD_INV); clrbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_SD_DATA); +#if defined(CONFIG_TARGET_P1020RDB_PD) || defined(CONFIG_TARGET_P1020RDB_PC) setbits_be32(&gur->pmuxcr, MPC85xx_PMUXCR_TDM_ENA); +#endif board_gpio_init(); board_cpld_init(); -- 2.20.1