From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-1.web.codeaurora.org [10.30.226.201]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by smtp.subspace.kernel.org (Postfix) with ESMTPS id 21E392FE2B; Thu, 19 Oct 2023 17:06:53 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dkim=pass (1024-bit key) header.d=linuxfoundation.org header.i=@linuxfoundation.org header.b="AyztDa4x" 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> 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: <2023101935-papaya-legible-5849@gregkh> 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