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 vger.kernel.org (vger.kernel.org [23.128.96.18]) by smtp.lore.kernel.org (Postfix) with ESMTP id 505F4CDB465 for ; Thu, 19 Oct 2023 17:06:56 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S233273AbjJSRG4 (ORCPT ); Thu, 19 Oct 2023 13:06:56 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:53106 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S233041AbjJSRGz (ORCPT ); Thu, 19 Oct 2023 13:06:55 -0400 Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id EE636CF; Thu, 19 Oct 2023 10:06:53 -0700 (PDT) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 09122C433C8; Thu, 19 Oct 2023 17:06:53 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=linuxfoundation.org; s=korg; t=1697735213; bh=OfIb+lpv0671Es84Qid81/qEM6OnY8JU1k800ZktAjE=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=AyztDa4xFEDQBWGj65Eny50dOxSsQ8HfVh9mGYnsfdPITjjp5TSzmd2A61j18o0dZ 0OH2NgDcKYRk70r2SWg3NAm/rOgOveahn6ZTkwcDUpjG8VVkJ9U/0uEOWnHptksytO ycG+Wl7shbxsg1ajy0vPnAk1ILawdVgiN87xg3w8= Date: Thu, 19 Oct 2023 19:06:49 +0200 From: Greg KH To: Frank Li Cc: Krzysztof Kozlowski , miquel.raynal@bootlin.com, conor.culhane@silvaco.com, alexandre.belloni@bootlin.com, robh+dt@kernel.org, krzysztof.kozlowski+dt@linaro.org, conor+dt@kernel.org, corbet@lwn.net, joe@perches.com, linux-i3c@lists.infradead.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org, linux-doc@vger.kernel.org, imx@lists.linux.dev, jirislaby@kernel.org, linux-serial@vger.kernel.org Subject: Re: [PATCH 1/5] i3c: add slave mode support Message-ID: <2023101959-smile-oxidizing-7010@gregkh> References: <20231018215809.3477437-1-Frank.Li@nxp.com> <20231018215809.3477437-2-Frank.Li@nxp.com> <2023101935-papaya-legible-5849@gregkh> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <2023101935-papaya-legible-5849@gregkh> Precedence: bulk List-ID: X-Mailing-List: linux-serial@vger.kernel.org On Thu, Oct 19, 2023 at 05:46:42PM +0200, Greg KH wrote: > On Thu, Oct 19, 2023 at 11:02:10AM -0400, Frank Li wrote: > > On Thu, Oct 19, 2023 at 09:00:05AM +0200, Krzysztof Kozlowski wrote: > > > On 18/10/2023 23:58, Frank Li wrote: > > > > Introduce a new slave core layer in order to support slave functions in > > > > linux kernel. This comprises the controller library and function library. > > > > Controller library implements functions specific to an slave controller > > > > and function library implements functions specific to an slave function. > > > > > > > > Introduce a new configfs entry to configure the slave function configuring > > > > and bind the slave function with slave controller. > > > > > > > > Signed-off-by: Frank Li > > > > --- > > > > drivers/i3c/Kconfig | 26 ++ > > > > drivers/i3c/Makefile | 2 + > > > > drivers/i3c/i3c-cfs.c | 389 +++++++++++++++++++++++++++++ > > > > drivers/i3c/slave.c | 453 ++++++++++++++++++++++++++++++++++ > > > > include/linux/i3c/slave.h | 503 ++++++++++++++++++++++++++++++++++++++ > > > > 5 files changed, 1373 insertions(+) > > > > create mode 100644 drivers/i3c/i3c-cfs.c > > > > create mode 100644 drivers/i3c/slave.c > > > > create mode 100644 include/linux/i3c/slave.h > > > > > > > > diff --git a/drivers/i3c/Kconfig b/drivers/i3c/Kconfig > > > > index 30a441506f61c..d5f5ca7cd6a56 100644 > > > > --- a/drivers/i3c/Kconfig > > > > +++ b/drivers/i3c/Kconfig > > > > @@ -22,3 +22,29 @@ menuconfig I3C > > > > if I3C > > > > source "drivers/i3c/master/Kconfig" > > > > endif # I3C > > > > + > > > > +config I3C_SLAVE > > > > > > It doesn't look like you follow Kernel naming convention (see coding style). > > > > I checked I3C spec. It use words 'target'. > > Is it okay using I3C_TARGET? > > Why wouldn't it be? Sorry, that was snotty of me, long day of driving, my apologies. Yes, please use "target" and the other terminology to reflect this, and not the ones you used in your driver as it is against the current kernel coding style rules. thanks, greg k-h