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 E9E64C001B0 for ; Tue, 18 Jul 2023 01:59:27 +0000 (UTC) Received: (majordomo@vger.kernel.org) by vger.kernel.org via listexpand id S230317AbjGRB70 (ORCPT ); Mon, 17 Jul 2023 21:59:26 -0400 Received: from lindbergh.monkeyblade.net ([23.128.96.19]:38142 "EHLO lindbergh.monkeyblade.net" rhost-flags-OK-OK-OK-OK) by vger.kernel.org with ESMTP id S229827AbjGRB7Y (ORCPT ); Mon, 17 Jul 2023 21:59:24 -0400 Received: from dfw.source.kernel.org (dfw.source.kernel.org [IPv6:2604:1380:4641:c500::1]) by lindbergh.monkeyblade.net (Postfix) with ESMTPS id 1D557E6F; Mon, 17 Jul 2023 18:59:23 -0700 (PDT) Received: from smtp.kernel.org (relay.kernel.org [52.25.139.140]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (2048 bits)) (No client certificate requested) by dfw.source.kernel.org (Postfix) with ESMTPS id 8EB206137C; Tue, 18 Jul 2023 01:59:22 +0000 (UTC) Received: by smtp.kernel.org (Postfix) with ESMTPSA id 3A91DC433C8; Tue, 18 Jul 2023 01:59:17 +0000 (UTC) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=kernel.org; s=k20201202; t=1689645562; bh=aHdplcdMtBAJ468vhdNcbjiNXN7woPwz8Wety4Mnnlc=; h=Date:From:To:Cc:Subject:References:In-Reply-To:From; b=HLXwaovj1bouynuG/zVj6QLPPiHpMqkWiBj787TnHpjYtq9xRvQLGV5TtvCBUTAaO StNnJIlONKUxRHAtwg/fPZ/4iMjLg3hm52tN9WHcZbbMQ9ubiXEhVytZnxocsyeLw4 3TKJivUYYwGU5ykRrYUJU2vMuW10PlxgFDDFxIjTuH39QhBk0vbXwbqPsbZg3GM9f0 G5Au4mbJZZYMfH8fjpXIxqo7oVFIwjqWQQE7/7fOdwzR0U3PagNEsiNh5XXcpZzCoV gBlG0UIFdFU4A7dXXMQfylUC8ml2UrZwO7o9WXrOgqg7ywyIFoaOGqC3h2I6ScwcyF nh6ncxdZjGrNg== Date: Tue, 18 Jul 2023 09:59:12 +0800 From: Shawn Guo To: Michael Walle Cc: Catalin Marinas , Will Deacon , Li Yang , Rob Herring , Krzysztof Kozlowski , Conor Dooley , linux-arm-kernel@lists.infradead.org, linux-kernel@vger.kernel.org, devicetree@vger.kernel.org Subject: Re: [PATCH 0/2] arm64: sl28: fetch the ethernet addresses from its EEPROM Message-ID: <20230718015912.GV9559@dragon> References: <20230616-feature-sl28-vpd-dt-v1-0-c5458016ba85@kernel.org> MIME-Version: 1.0 Content-Type: text/plain; charset=us-ascii Content-Disposition: inline In-Reply-To: <20230616-feature-sl28-vpd-dt-v1-0-c5458016ba85@kernel.org> Precedence: bulk List-ID: X-Mailing-List: linux-kernel@vger.kernel.org On Fri, Jun 16, 2023 at 01:11:20PM +0200, Michael Walle wrote: > After years, NVMEM layouts finally made it into the kernel. The network > devices on the Kontron sl28 boards can now fetch their MAC addresses by > reading the onboard VPD EEPROM. Yay :) > > First enable the layout driver (as a module) in the defconfig and then > add the dt fragments. > > The second commit was already applied once in commit b203e6f1e833 > ("arm64: dts: ls1028a: sl28: get MAC addresses from VPD") but had to be > reverted in commit 916508c30e22 ("Revert "arm64: dts: ls1028a: sl28: get > MAC addresses from VPD") because the NVMEM layouts series was dropped. > NVMEM layouts will be included in v6.4, so we can now safely add the > device tree fragments for v6.5. > > Signed-off-by: Michael Walle > --- > Michael Walle (2): > arm64: defconfig: enable SL28VPD NVMEM layout > arm64: dts: ls1028a: sl28: get MAC addresses from VPD Applied both, thanks!