From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from smtp.kernel.org (aws-us-west-2-korg-mail-alma10-1.taild15c8.ts.net [100.103.45.18]) (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 C03813BD241; Fri, 26 Jun 2026 08:31:57 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=100.103.45.18 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782462718; cv=none; b=Ug7kdIj8hDvWK0ajfx21fFK55zXVD+y7eYFZAlTqIvIyzx2QsMJdKibU7YqBM0eoEfnRfrdmissDE1zUOXulHVjMYdGuwIjL9GC2YyIZKTNrC/mj6w1G0nSSZQx80XsXg0lAcOIGrSL2pUhdV+PFwyjkwmj1tNWvadnyrZyVicE= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1782462718; c=relaxed/simple; bh=FokIJv8AfgUPd2/aIFIvPg8FRcuvZThvaCVNpsev7y0=; h=Date:From:To:Cc:Subject:Message-ID:References:MIME-Version: Content-Type:Content-Disposition:In-Reply-To; b=YJ8a/ubPMv5vrA1w4htE4jNjZQzmuwS2W3PLsjiMMg2KujSKG6yi+6IKukRvINZpoZwoj4nQWMVsp+N8Ygdu9uQhXEX3aJEcB3LDsMnDg13q019Kl7/Mwz2Ea0mjc8JbQ7rFgbzLGwFI1HmM81/i9wPy9ZyIgkWsRCfJvh0BZEk= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=KsZ9e3Bo; arc=none smtp.client-ip=100.103.45.18 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="KsZ9e3Bo" Received: by smtp.kernel.org (Postfix) with ESMTPSA id EE5D01F000E9; Fri, 26 Jun 2026 08:31:55 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/relaxed; d=kernel.org; s=k20260515; t=1782462717; bh=ETIOhQUjPQWtqaHHtPokG8x+YN/KAxvHFrTSu7Z6x+U=; h=Date:From:To:Cc:Subject:References:In-Reply-To; b=KsZ9e3BoBiBb6B/WyDZnv2wjYMXQBwMYu6PFx79wuEiXP5V9+V3vU/VnEdoId+kbU rl+AFNuGYSmgZwuqVxsLGX+9h3yXkLM0dwwUAUVmV2sBlW8pn3nsSzaDTVjqeVQPnD 1qJc0oj817Gu6wyDXZ+ZT8itig2YK0Sj784DjN5T2hOlc1T7NlmLknRAiHordm5ZQs eEz0U+A5Cx1GLeaOHotg0d086If8gCdHIxD6n6XtKaGRZSnibmpJLzj9pZm1Rfz6Ju rkcGT1yUp9eoMuLC0axDGYNR3qwhMm7f1g4VmtR+d8JOydt6oRc6UcZELgBEcZRw5T ywJhUWvYuwuOg== Date: Fri, 26 Jun 2026 10:31:52 +0200 From: Krzysztof Kozlowski To: Charan Pedumuru Cc: Uwe =?utf-8?Q?Kleine-K=C3=B6nig?= , Rob Herring , Krzysztof Kozlowski , Conor Dooley , Lee Jones , linux-pwm@vger.kernel.org, devicetree@vger.kernel.org, linux-kernel@vger.kernel.org Subject: Re: [PATCH v4] dt-bindings: pwm: st,sti-pwm: convert to DT schema Message-ID: <20260626-daring-daft-shark-d33234@quoll> References: <20260625-st-pwm-v4-1-958d7d6bdf39@gmail.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=utf-8 Content-Disposition: inline In-Reply-To: <20260625-st-pwm-v4-1-958d7d6bdf39@gmail.com> On Thu, Jun 25, 2026 at 11:24:15AM +0000, Charan Pedumuru wrote: > +maintainers: > + - Lee Jones > + > +description: > + The STiH41x PWM controller supports both PWM output and input capture > + functionality. It provides multiple PWM output channels for generating > + variable duty-cycle waveforms, and multiple input capture channels for > + measuring external signal periods and pulse widths. PWM output channels > + and input capture channels are configured independently via > + st,pwm-num-chan and st,capture-num-chan respectively. > + > +allOf: > + - $ref: pwm.yaml# > + > +properties: > + compatible: > + const: st,sti-pwm > + > + reg: > + maxItems: 1 > + > + "#pwm-cells": > + const: 2 > + > + pinctrl-names: > + const: default > + > + clock-names: items: minItems: 1 - const: pwm - const: capture > + items: > + enum: [pwm, capture] > + minItems: 1 > + maxItems: 2 > + > + clocks: > + minItems: 1 > + maxItems: 2 Best regards, Krzysztof