From patchwork Tue Jan 16 11:37:57 2024 Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit X-Patchwork-Submitter: Dharma Balasubiramani X-Patchwork-Id: 763417 Received: from esa.microchip.iphmx.com (esa.microchip.iphmx.com [68.232.153.233]) (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 F2E811B800; Tue, 16 Jan 2024 11:38:39 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; dmarc=pass (p=quarantine dis=none) header.from=microchip.com Authentication-Results: smtp.subspace.kernel.org; spf=pass smtp.mailfrom=microchip.com Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=microchip.com header.i=@microchip.com header.b="rA40L7Fi" DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=microchip.com; i=@microchip.com; q=dns/txt; s=mchp; t=1705405121; x=1736941121; h=from:to:cc:subject:date:message-id:mime-version: content-transfer-encoding; bh=PQeNXtr+NkYNtKHVcFa9uvxt+sHMYxZ2puRpVAyiBNw=; b=rA40L7FiKhu5I2uM5ElUT+w46g4MM6v79FjdhrjdVBVtwqAQMrsg2Gj/ GFLrCmYQfAawyZZxofSP+rVw4Q6T0WN59jCnJ0aBOSJCxev59ltLNtxqG uCXLjGx8W0eYT4twhwiOeWLCn0IwcvB9/OC3aIUJguze/a/UnIgnGUP9A fBuQGnC9sAaSwIiT60mjpHQdWQD169dpFbuaDeU6LeBSAKsDE70xdJrgU 0YjJJfJQTReGo6TPG1EZXvHn3GOlhLL1WEQ9Q+psMRjgGZ3ecXXvyo5ir Rrwu1Enu9wIn6YLNPplZxjZlZzbgwD5iqdkypXezT27azhxbHP10x9TaZ Q==; X-CSE-ConnectionGUID: Y1TZTt6mTzupuVN87CGEZQ== X-CSE-MsgGUID: wavDEACOS9Og9sJptBYlHw== X-IronPort-AV: E=Sophos;i="6.05,199,1701154800"; d="scan'208";a="14824997" X-Amp-Result: SKIPPED(no attachment in message) Received: from unknown (HELO email.microchip.com) ([170.129.1.10]) by esa3.microchip.iphmx.com with ESMTP/TLS/ECDHE-RSA-AES128-GCM-SHA256; 16 Jan 2024 04:38:39 -0700 Received: from chn-vm-ex01.mchp-main.com (10.10.85.143) by chn-vm-ex02.mchp-main.com (10.10.85.144) with Microsoft SMTP Server (version=TLS1_2, cipher=TLS_ECDHE_RSA_WITH_AES_128_GCM_SHA256) id 15.1.2507.35; Tue, 16 Jan 2024 04:38:26 -0700 Received: from che-lt-i70843lx.amer.actel.com (10.10.85.11) by chn-vm-ex01.mchp-main.com (10.10.85.143) with Microsoft SMTP Server id 15.1.2507.35 via Frontend Transport; Tue, 16 Jan 2024 04:38:14 -0700 From: Dharma Balasubiramani To: , , , , , , , , , , , , , , , , , , , , , CC: , Dharma Balasubiramani Subject: [PATCH v2 0/3] Convert Microchip's HLCDC Text based DT bindings to JSON schema Date: Tue, 16 Jan 2024 17:07:57 +0530 Message-ID: <20240116113800.82529-1-dharma.b@microchip.com> X-Mailer: git-send-email 2.25.1 Precedence: bulk X-Mailing-List: devicetree@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 Converted the text bindings to YAML and validated them individually using following commands $ make dt_binding_check DT_SCHEMA_FILES=Documentation/devicetree/bindings/ $ make dtbs_check DT_SCHEMA_FILES=Documentation/devicetree/bindings/ changelogs are available in respective patches. Dharma Balasubiramani (3): dt-bindings: display: convert Atmel's HLCDC to DT schema dt-bindings: atmel,hlcdc: convert pwm bindings to json-schema dt-bindings: mfd: atmel,hlcdc: Convert to DT schema format .../atmel/atmel,hlcdc-display-controller.yaml | 110 ++++++++++++++++++ .../bindings/display/atmel/hlcdc-dc.txt | 75 ------------ .../devicetree/bindings/mfd/atmel,hlcdc.yaml | 105 +++++++++++++++++ .../devicetree/bindings/mfd/atmel-hlcdc.txt | 56 --------- .../bindings/pwm/atmel,hlcdc-pwm.yaml | 47 ++++++++ .../bindings/pwm/atmel-hlcdc-pwm.txt | 29 ----- 6 files changed, 262 insertions(+), 160 deletions(-) create mode 100644 Documentation/devicetree/bindings/display/atmel/atmel,hlcdc-display-controller.yaml delete mode 100644 Documentation/devicetree/bindings/display/atmel/hlcdc-dc.txt create mode 100644 Documentation/devicetree/bindings/mfd/atmel,hlcdc.yaml delete mode 100644 Documentation/devicetree/bindings/mfd/atmel-hlcdc.txt create mode 100644 Documentation/devicetree/bindings/pwm/atmel,hlcdc-pwm.yaml delete mode 100644 Documentation/devicetree/bindings/pwm/atmel-hlcdc-pwm.txt