From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from foss.arm.com (foss.arm.com [217.140.110.172]) by smtp.subspace.kernel.org (Postfix) with ESMTP id 7867023F40C; Wed, 11 Jun 2025 10:09:17 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=217.140.110.172 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1749636560; cv=none; b=GWL581tj4+3owwu6MW+gUePZbo04w45vz/UuQtf1yroL9d2dSgHZx3T8xUfZ9YFiVV9+GxyR71hSscC4krHP4wLLGx2Dudjw3iUKN67i2JW7f3DfC/KsMPhN2ABu3gdVm209Aw7Ll+5NtIQRcDqz+1YFbmdExv0WCxfZvzqpQGg= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1749636560; c=relaxed/simple; bh=BJE+vMKANWhw7akf9+TmvdGPt/Ggjjf0NU6KyB4SNl4=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=jAuWVQFxrNehRP5boeIkNDTeK6PpHt9F4Q0yWZOSJE4I01Uw2YhltuxyTqPzPnrZt54V7YrCDDwMsUhi+hH7puuFvMwrrDHBIst56sfGwHoCAyBZMpflHYk8uj1OPAm6yw09u3zce8/67ozYjZ7Yoe/cjW9UgVf3vHv/aLaO6C4= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com; spf=pass smtp.mailfrom=arm.com; arc=none smtp.client-ip=217.140.110.172 Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=none dis=none) header.from=arm.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=arm.com Received: from usa-sjc-imap-foss1.foss.arm.com (unknown [10.121.207.14]) by usa-sjc-mx-foss1.foss.arm.com (Postfix) with ESMTP id 280E61596; Wed, 11 Jun 2025 03:08:57 -0700 (PDT) Received: from localhost (e132581.arm.com [10.1.196.87]) by usa-sjc-imap-foss1.foss.arm.com (Postfix) with ESMTPSA id 578FD3F673; Wed, 11 Jun 2025 03:09:16 -0700 (PDT) Date: Wed, 11 Jun 2025 11:09:11 +0100 From: Leo Yan To: Yuanfang Zhang Cc: Suzuki K Poulose , Mike Leach , James Clark , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Alexander Shishkin , kernel@oss.qualcomm.com, linux-arm-msm@vger.kernel.org, coresight@lists.linaro.org, linux-arm-kernel@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v9 2/2] coresight: add coresight Trace Network On Chip driver Message-ID: <20250611100911.GT8020@e132581.arm.com> References: <20250611-trace-noc-v9-0-4322d4cf8f4b@quicinc.com> <20250611-trace-noc-v9-2-4322d4cf8f4b@quicinc.com> Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20250611-trace-noc-v9-2-4322d4cf8f4b@quicinc.com> On Wed, Jun 11, 2025 at 04:59:47PM +0800, Yuanfang Zhang wrote: > Add a driver to support Coresight device Trace Network On Chip (TNOC), > which is an integration hierarchy integrating functionalities of TPDA > and funnels. It aggregates the trace and transports to coresight trace > bus. > > Compared to current configuration, it has the following advantages: > 1. Reduce wires between subsystems. > 2. Continue cleaning the infrastructure. > 3. Reduce Data overhead by transporting raw data from source to target. > > +------------------------+ +-------------------------+ > | Video Subsystem | |Video Subsystem | > | +-------------+ | | +------------+ | > | | Video TPDM | | | | Video TPDM | | > | +-------------+ | | +------------+ | > | | | | | | > | v | | v | > | +---------------+ | | +-----------+ | > | | Video funnel | | | |Video TNOC | | > | +---------------+ | | +-----------+ | > +------------|-----------+ +------------|------------+ > | | > v-----+ | > +--------------------|---------+ | > | Multimedia v | | > | Subsystem +--------+ | | > | | TPDA | | v > | +----|---+ | +---------------------+ > | | | | Aggregator TNOC | > | | | +----------|----------+ > | +-- | | > | | | | > | | | | > | +------v-----+ | | > | | Funnel | | | > | +------------+ | | > +----------------|-------------+ | > | | > v v > +--------------------+ +------------------+ > | Coresight Sink | | Coresight Sink | > +--------------------+ +------------------+ > > Current Configuration TNOC > > Signed-off-by: Yuanfang Zhang I observed a merging conflict. I would suggest you sticking to the coresight next branch for CoreSight related upstreaming. Please rebase this patch on it. https://git.kernel.org/pub/scm/linux/kernel/git/coresight/linux.git branch: next I also verified this patch with static checker smatch. With rebasing: Reviewed-by: Leo Yan