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=-17.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,DKIM_VALID_AU,HEADER_FROM_DIFFERENT_DOMAINS, INCLUDES_CR_TRAILER,INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A, SPF_HELO_NONE,SPF_PASS,USER_AGENT_SANE_1 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 33774C47095 for ; Mon, 7 Jun 2021 14:28:42 +0000 (UTC) Received: from vger.kernel.org (vger.kernel.org [23.128.96.18]) by mail.kernel.org (Postfix) with ESMTP id 1D94060FEF for ; Mon, 7 Jun 2021 14:28:42 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230288AbhFGOac (ORCPT ); Mon, 7 Jun 2021 10:30:32 -0400 Received: from fllv0016.ext.ti.com ([198.47.19.142]:47594 "EHLO fllv0016.ext.ti.com" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S230203AbhFGOaa (ORCPT ); Mon, 7 Jun 2021 10:30:30 -0400 Received: from fllv0035.itg.ti.com ([10.64.41.0]) by fllv0016.ext.ti.com (8.15.2/8.15.2) with ESMTP id 157ESX5l000979; Mon, 7 Jun 2021 09:28:33 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1623076113; bh=Nhs2lIlWeop94Amwvao7E7V8u+v21TJc0yLbaW7eKJE=; h=Subject:To:CC:References:From:Date:In-Reply-To; b=GW7oEZq1Swpcelylec9UqMFBKXoPdWsaSscRMwF+7xBFQACqjczZjZR0m+TvwoH88 9VWyAfppBHAU6vAKIPesjCg+I2PARvAymCJpvnUTv3o7tMT0oO5ZDEVzI8NE5nv+sO 8GyHp+D9FOuCm+33HEDBoaGHrxgWOpkEaXvRJXB8= Received: from DLEE104.ent.ti.com (dlee104.ent.ti.com [157.170.170.34]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 157ESXbu028338 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Mon, 7 Jun 2021 09:28:33 -0500 Received: from DLEE108.ent.ti.com (157.170.170.38) by DLEE104.ent.ti.com (157.170.170.34) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2176.2; Mon, 7 Jun 2021 09:28:33 -0500 Received: from lelv0326.itg.ti.com (10.180.67.84) by DLEE108.ent.ti.com (157.170.170.38) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2176.2 via Frontend Transport; Mon, 7 Jun 2021 09:28:33 -0500 Received: from [10.250.235.117] (ileax41-snat.itg.ti.com [10.172.224.153]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 157ESRvW130926; Mon, 7 Jun 2021 09:28:29 -0500 Subject: Re: [PATCH v4 0/5] AM64: EVM/SK: Enable PCIe and USB To: Kishon Vijay Abraham I , Nishanth Menon , Tero Kristo , Rob Herring CC: , , , Lokesh Vutla References: <20210603142251.14563-1-kishon@ti.com> From: Aswath Govindraju Message-ID: Date: Mon, 7 Jun 2021 19:58:26 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20210603142251.14563-1-kishon@ti.com> Content-Type: text/plain; charset="utf-8" Content-Language: en-US Content-Transfer-Encoding: 7bit X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On 03/06/21 7:52 pm, Kishon Vijay Abraham I wrote: > AM642 EVM has one PCIe slot (no USB slot) and AM642 SK has one USB slot > (no PCIe slot). > AM64 SoC has one SERDES module which can be used by either PCIe or USB. > > Add DT nodes to represent and enable SERDES/PCIe/USB modules in EVM/SK. > > Changes from v3: > 1) Limit the lines to < 100 > > Changes from v2: > 1) Dropped "dt-bindings: mux: Convert reg-mux DT bindings to YAML" as > it's handled by a different series from Rob > 2) Rename "mux" DT node to a standard "mux-controller" DT node. > > Changes from v1: > 1) Add a patch to convert reg-mux DT bindings to YAML > 2) Use generic names for clock node names > 3) Remove redundant status = "okay" for serdes_wiz0 > > v1: http://lore.kernel.org/r/20210512150107.26793-1-kishon@ti.com > v2: http://lore.kernel.org/r/20210517061739.5762-1-kishon@ti.com > v3: http://lore.kernel.org/r/20210526142921.12127-1-kishon@ti.com > For the whole series, Reviewed-by: Aswath Govindraju Thanks, Aswath > Kishon Vijay Abraham I (5): > arm64: dts: ti: k3-am64-main: Add SERDES DT node > arm64: dts: ti: k3-am64-main: Add PCIe DT node > arm64: dts: ti: k3-am642-evm: Enable PCIe and SERDES > arm64: dts: ti: k3-am642-sk: Enable USB Super-Speed HOST port > arm64: dts: ti: k3-am642-sk: Disable PCIe > > arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 107 +++++++++++++++++++++++ > arch/arm64/boot/dts/ti/k3-am642-evm.dts | 30 +++++++ > arch/arm64/boot/dts/ti/k3-am642-sk.dts | 43 +++++++++ > 3 files changed, 180 insertions(+) > 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=-15.5 required=3.0 tests=BAYES_00,DKIMWL_WL_HIGH, DKIM_SIGNED,DKIM_VALID,HEADER_FROM_DIFFERENT_DOMAINS,INCLUDES_CR_TRAILER, INCLUDES_PATCH,MAILING_LIST_MULTI,NICE_REPLY_A,SPF_HELO_NONE,SPF_PASS, USER_AGENT_SANE_1 autolearn=ham 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 188F4C47095 for ; Mon, 7 Jun 2021 14:30:18 +0000 (UTC) Received: from bombadil.infradead.org (bombadil.infradead.org [198.137.202.133]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by mail.kernel.org (Postfix) with ESMTPS id D8101610FC for ; Mon, 7 Jun 2021 14:30:17 +0000 (UTC) DMARC-Filter: OpenDMARC Filter v1.3.2 mail.kernel.org D8101610FC Authentication-Results: mail.kernel.org; dmarc=fail (p=quarantine dis=none) header.from=ti.com Authentication-Results: mail.kernel.org; spf=none smtp.mailfrom=linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org DKIM-Signature: v=1; a=rsa-sha256; q=dns/txt; c=relaxed/relaxed; d=lists.infradead.org; s=bombadil.20210309; h=Sender: Content-Transfer-Encoding:Content-Type:List-Subscribe:List-Help:List-Post: List-Archive:List-Unsubscribe:List-Id:In-Reply-To:MIME-Version:Date: Message-ID:From:References:CC:To:Subject:Reply-To:Content-ID: Content-Description:Resent-Date:Resent-From:Resent-Sender:Resent-To:Resent-Cc :Resent-Message-ID:List-Owner; bh=hJB6RsLwhyRZX9+JZcuPlFem7vnAC9yliqibX0KFrWg=; b=ICvIQ5tUsjwr5kEt97IVpbkXhA 1zw9NuYGos/zZXqMAYG6vcebS24F86NKb+1JZRrNPORMvWSlrha/+OurmZV14X2KIfV0CHyjiH/CW ClwXamaedJZCMgojEGQJa+WGcQ4YXeem2YucJeLRmHkQvRapPenixCEuFUeZ9QQFjsmdn1UQ6GZET +DAR1Iq6U2xMUdCgTpJ1DCVxbtzk5hmsX2hia/iAvsLE2GYKz85Te+8xbWS66DC3QPyXCoMd+T5QF B/cp59+a/gN0hVybpb2JQ29APDcTeA1Jz0aHI6nDGPUc26n5O4PC7Cw6CQmTx3+ohIJgGTPe4CR6O 4clxg47Q==; Received: from localhost ([::1] helo=bombadil.infradead.org) by bombadil.infradead.org with esmtp (Exim 4.94.2 #2 (Red Hat Linux)) id 1lqGF7-0043wJ-4L; Mon, 07 Jun 2021 14:28:41 +0000 Received: from fllv0016.ext.ti.com ([198.47.19.142]) by bombadil.infradead.org with esmtps (Exim 4.94.2 #2 (Red Hat Linux)) id 1lqGF1-0043un-1Z for linux-arm-kernel@lists.infradead.org; Mon, 07 Jun 2021 14:28:38 +0000 Received: from fllv0035.itg.ti.com ([10.64.41.0]) by fllv0016.ext.ti.com (8.15.2/8.15.2) with ESMTP id 157ESX5l000979; Mon, 7 Jun 2021 09:28:33 -0500 DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=ti.com; s=ti-com-17Q1; t=1623076113; bh=Nhs2lIlWeop94Amwvao7E7V8u+v21TJc0yLbaW7eKJE=; h=Subject:To:CC:References:From:Date:In-Reply-To; b=GW7oEZq1Swpcelylec9UqMFBKXoPdWsaSscRMwF+7xBFQACqjczZjZR0m+TvwoH88 9VWyAfppBHAU6vAKIPesjCg+I2PARvAymCJpvnUTv3o7tMT0oO5ZDEVzI8NE5nv+sO 8GyHp+D9FOuCm+33HEDBoaGHrxgWOpkEaXvRJXB8= Received: from DLEE104.ent.ti.com (dlee104.ent.ti.com [157.170.170.34]) by fllv0035.itg.ti.com (8.15.2/8.15.2) with ESMTPS id 157ESXbu028338 (version=TLSv1.2 cipher=AES256-GCM-SHA384 bits=256 verify=FAIL); Mon, 7 Jun 2021 09:28:33 -0500 Received: from DLEE108.ent.ti.com (157.170.170.38) by DLEE104.ent.ti.com (157.170.170.34) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2176.2; Mon, 7 Jun 2021 09:28:33 -0500 Received: from lelv0326.itg.ti.com (10.180.67.84) by DLEE108.ent.ti.com (157.170.170.38) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_CBC_SHA256_P256) id 15.1.2176.2 via Frontend Transport; Mon, 7 Jun 2021 09:28:33 -0500 Received: from [10.250.235.117] (ileax41-snat.itg.ti.com [10.172.224.153]) by lelv0326.itg.ti.com (8.15.2/8.15.2) with ESMTP id 157ESRvW130926; Mon, 7 Jun 2021 09:28:29 -0500 Subject: Re: [PATCH v4 0/5] AM64: EVM/SK: Enable PCIe and USB To: Kishon Vijay Abraham I , Nishanth Menon , Tero Kristo , Rob Herring CC: , , , Lokesh Vutla References: <20210603142251.14563-1-kishon@ti.com> From: Aswath Govindraju Message-ID: Date: Mon, 7 Jun 2021 19:58:26 +0530 User-Agent: Mozilla/5.0 (X11; Linux x86_64; rv:68.0) Gecko/20100101 Thunderbird/68.10.0 MIME-Version: 1.0 In-Reply-To: <20210603142251.14563-1-kishon@ti.com> Content-Language: en-US X-EXCLAIMER-MD-CONFIG: e1e8a2fd-e40a-4ac6-ac9b-f7e9cc9ee180 X-CRM114-Version: 20100106-BlameMichelson ( TRE 0.8.0 (BSD) ) MR-646709E3 X-CRM114-CacheID: sfid-20210607_072835_206316_37B9D1C3 X-CRM114-Status: GOOD ( 14.29 ) X-BeenThere: linux-arm-kernel@lists.infradead.org X-Mailman-Version: 2.1.34 Precedence: list List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Content-Type: text/plain; charset="us-ascii" Content-Transfer-Encoding: 7bit Sender: "linux-arm-kernel" Errors-To: linux-arm-kernel-bounces+linux-arm-kernel=archiver.kernel.org@lists.infradead.org On 03/06/21 7:52 pm, Kishon Vijay Abraham I wrote: > AM642 EVM has one PCIe slot (no USB slot) and AM642 SK has one USB slot > (no PCIe slot). > AM64 SoC has one SERDES module which can be used by either PCIe or USB. > > Add DT nodes to represent and enable SERDES/PCIe/USB modules in EVM/SK. > > Changes from v3: > 1) Limit the lines to < 100 > > Changes from v2: > 1) Dropped "dt-bindings: mux: Convert reg-mux DT bindings to YAML" as > it's handled by a different series from Rob > 2) Rename "mux" DT node to a standard "mux-controller" DT node. > > Changes from v1: > 1) Add a patch to convert reg-mux DT bindings to YAML > 2) Use generic names for clock node names > 3) Remove redundant status = "okay" for serdes_wiz0 > > v1: http://lore.kernel.org/r/20210512150107.26793-1-kishon@ti.com > v2: http://lore.kernel.org/r/20210517061739.5762-1-kishon@ti.com > v3: http://lore.kernel.org/r/20210526142921.12127-1-kishon@ti.com > For the whole series, Reviewed-by: Aswath Govindraju Thanks, Aswath > Kishon Vijay Abraham I (5): > arm64: dts: ti: k3-am64-main: Add SERDES DT node > arm64: dts: ti: k3-am64-main: Add PCIe DT node > arm64: dts: ti: k3-am642-evm: Enable PCIe and SERDES > arm64: dts: ti: k3-am642-sk: Enable USB Super-Speed HOST port > arm64: dts: ti: k3-am642-sk: Disable PCIe > > arch/arm64/boot/dts/ti/k3-am64-main.dtsi | 107 +++++++++++++++++++++++ > arch/arm64/boot/dts/ti/k3-am642-evm.dts | 30 +++++++ > arch/arm64/boot/dts/ti/k3-am642-sk.dts | 43 +++++++++ > 3 files changed, 180 insertions(+) > _______________________________________________ linux-arm-kernel mailing list linux-arm-kernel@lists.infradead.org http://lists.infradead.org/mailman/listinfo/linux-arm-kernel