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 EE8DB2AD0C; Fri, 30 Jan 2026 16:16:08 +0000 (UTC) Authentication-Results: smtp.subspace.kernel.org; arc=none smtp.client-ip=10.30.226.201 ARC-Seal:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769789769; cv=none; b=Yr0oG72RykLi5NCQXe9XL5pBG5d0ypQP0KJkawr1l/dPy03WWV6tHecwPnt5HgnijNiKxyJl+Sua43wWCil/zzZAWwiNJHC9AUplfcr82YORVWG8XQeHWCTLVKwooiO6cmIKbJVj5Y3//g9asFRUB3HOs2zvKP+ZykoPARHSZZc= ARC-Message-Signature:i=1; a=rsa-sha256; d=subspace.kernel.org; s=arc-20240116; t=1769789769; c=relaxed/simple; bh=zmT6OjQUa2TS7MtZr7MQ+G04gSyQhzjannkAFVQoleA=; h=Message-ID:Date:MIME-Version:Subject:To:References:From: In-Reply-To:Content-Type; b=d2GK828fKHx9nA8qdIvJXsGSYSld5VWnH2wi4QJIH6LQGC/keIc+t4FCzfXFaBkSqpjeAUTGzJmxHNKFMZF71jAXhx6a3ib+qA4meg2c1Bx6bElAXHOOA6oplq+pj4/s0nP9hbX3K+Qt07A+U36Pe1j+ndJxt0Ob7AIozQZ3oR0= ARC-Authentication-Results:i=1; smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b=YODOXMXm; arc=none smtp.client-ip=10.30.226.201 Authentication-Results: smtp.subspace.kernel.org; dkim=pass (2048-bit key) header.d=kernel.org header.i=@kernel.org header.b="YODOXMXm" Received: by smtp.kernel.org (Postfix) with ESMTPSA id 1972DC4CEF7; Fri, 30 Jan 2026 16:16:07 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1769789768; bh=zmT6OjQUa2TS7MtZr7MQ+G04gSyQhzjannkAFVQoleA=; h=Date:Subject:To:References:From:In-Reply-To:From; b=YODOXMXm4lvnD2HehtSbvyybpPy2Z6scor2ksHJ4CfoYMY5uvOpkPdLdjQo+ohT9W lzym7r3CoEBjyDbZqFp6kg3JfIJjKzkeFwGcvVpWt+UW4qi3x46bsfQh/BmqYGIQE8 BRt3yvRqKtNnvmigwu+YqeGOLU+KzCJiymShXtS5aJMO0CK9ci3GKU1t/aMLRzD2FI LxI26EwG9l+WeKPWF5ujS6206tPjDANzBWAz//jfT1S9jGtD+1QjugOxnvncQg0L/Q U7fmFRVf7uDkBaodtuqZ168a8J7N2gzGb5WVInsm5OyZnIHhceUvGSV9teiw4c2ifw cxfRKT81qT9Bw== Message-ID: <5be5e1e2-d9aa-4236-8bcf-68c9821ad82e@kernel.org> Date: Fri, 30 Jan 2026 10:16:03 -0600 Precedence: bulk X-Mailing-List: linux-kernel@vger.kernel.org List-Id: List-Subscribe: List-Unsubscribe: MIME-Version: 1.0 User-Agent: Mozilla Thunderbird Subject: Re: [PATCH v3 0/2] Add Agilex eMMC daughter card support Content-Language: en-US To: tzeyee.ng@altera.com, Rob Herring , Krzysztof Kozlowski , Conor Dooley , devicetree@vger.kernel.org, linux-kernel@vger.kernel.org References: From: Dinh Nguyen In-Reply-To: Content-Type: text/plain; charset=UTF-8; format=flowed Content-Transfer-Encoding: 7bit On 1/26/26 00:42, tzeyee.ng@altera.com wrote: > From: Ng Tze Yee > > The Agilex SoCDK supports interchangeable daughter cards for different > storage configurations. This series adds support for the eMMC daughter > card variant. > > The eMMC daughter card is mutually exclusive with the default SDMMC > daughter card as it occupies the same physical slot on the SoCDK. > Therefore, a separate device tree is required to properly configure > the system when using the eMMC variant. > > This series: > - Documents the new compatible string for the eMMC daughter card > - Adds a new DTS file based on the existing NAND variant with eMMC- > specific MMC controller configuration > > Changes in v3: > - Update copyright from Altera to Intel > - Append "eMMC daughter board" to model string for clarity > - Fix ethernet-phy@0 to ethernet-phy@4 address > socfpga_agilex_socdk_emmc.dts > > Changes in v2: > - Add new compatible string for the eMMC daughter card in the binding file > - Fix space indentation in socfpga_agilex_socdk_emmc.dts > - Fix compatible string in socfpga_agilex_socdk_emmc.dts > - Rephase commit messages for clarity > > Ng Tze Yee (2): > dt-bindings: intel: Add Agilex eMMC support > arm64: dts: socfpga: agilex: add emmc support > > .../bindings/arm/intel,socfpga.yaml | 1 + > arch/arm64/boot/dts/intel/Makefile | 1 + > .../dts/intel/socfpga_agilex_socdk_emmc.dts | 105 ++++++++++++++++++ > 3 files changed, 107 insertions(+) > create mode 100644 arch/arm64/boot/dts/intel/socfpga_agilex_socdk_emmc.dts > Applied! Thanks, Dinh