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 phobos.denx.de (phobos.denx.de [85.214.62.61]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.lore.kernel.org (Postfix) with ESMTPS id C0ECAC6FD18 for ; Tue, 25 Apr 2023 13:07:32 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id A670F8617A; Tue, 25 Apr 2023 15:07:18 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=collabora.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=u-boot-bounces@lists.denx.de Authentication-Results: phobos.denx.de; dkim=pass (2048-bit key; unprotected) header.d=collabora.com header.i=@collabora.com header.b="Vr76rhKW"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id AB80485BB5; Tue, 25 Apr 2023 15:07:14 +0200 (CEST) Received: from madras.collabora.co.uk (madras.collabora.co.uk [46.235.227.172]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits)) (No client certificate requested) by phobos.denx.de (Postfix) with ESMTPS id 64DAA85ED9 for ; Tue, 25 Apr 2023 15:07:10 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=pass (p=quarantine dis=none) header.from=collabora.com Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=eugen.hristev@collabora.com Received: from eugen-station.. (unknown [82.76.24.202]) (using TLSv1.3 with cipher TLS_AES_256_GCM_SHA384 (256/256 bits) key-exchange X25519 server-signature RSA-PSS (4096 bits) server-digest SHA256) (No client certificate requested) (Authenticated sender: ehristev) by madras.collabora.co.uk (Postfix) with ESMTPSA id 70DFD66032A3; Tue, 25 Apr 2023 14:07:09 +0100 (BST) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=collabora.com; s=mail; t=1682428029; bh=sdZKc6MsmOTHq8qyKTmMF63E1LF5viKXvdI4zmUp2bw=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=Vr76rhKWJFQ/IaHr6eyycKYMSw+aYB/K8jpCLw72fJsxoS8bst9t+GcsU/baATETe aDoQWVjvdFsE2aX0iZCVXIWZAGAcUSP6NrhbJAs7HFx2GXBnUfO5yhoGVuFA8aCqEM nJ5sn/2/WnbJ6WTWYFqwcmm+qJdTljjCM6ZQ7WjJkllgTgUI/XbfyRGXvGcf+1JLb6 +VyDF0AzaDhMgQ71jVRxKw2wlO7/dOLtMHYY8IomaVcVLt52ovlUy/1bEo7BR47l4M byGUFeWXjSVWmMxBybzRTkxoJb+PBXL+9JPGJoXuaDeAcfw3YLIemprAHtpN6TZOyB XEIu50/7xthyQ== From: Eugen Hristev To: u-boot@lists.denx.de, joe.hershberger@ni.com Cc: jonas@kwiboo.se, jagan@edgeble.ai, kever.yang@rock-chips.com, Eugen Hristev Subject: [PATCH 2/2] configs: rock5b-rk3588: add rtl8169 driver Date: Tue, 25 Apr 2023 16:06:59 +0300 Message-Id: <20230425130659.62361-2-eugen.hristev@collabora.com> X-Mailer: git-send-email 2.34.1 In-Reply-To: <20230425130659.62361-1-eugen.hristev@collabora.com> References: <20230425130659.62361-1-eugen.hristev@collabora.com> MIME-Version: 1.0 Content-Transfer-Encoding: 8bit X-BeenThere: u-boot@lists.denx.de X-Mailman-Version: 2.1.39 Precedence: list List-Id: U-Boot discussion List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: u-boot-bounces@lists.denx.de Sender: "U-Boot" X-Virus-Scanned: clamav-milter 0.103.8 at phobos.denx.de X-Virus-Status: Clean Add the rtl8169 driver, which supports the rtl8125b device, which is connected on the pciE bus on this board. Enable also CONFIG_SYS_HAS_NONCACHED_MEMORY to have the descriptors stored. Signed-off-by: Eugen Hristev --- configs/rock5b-rk3588_defconfig | 2 ++ 1 file changed, 2 insertions(+) diff --git a/configs/rock5b-rk3588_defconfig b/configs/rock5b-rk3588_defconfig index a14fcd2ee924..bfa48227aee2 100644 --- a/configs/rock5b-rk3588_defconfig +++ b/configs/rock5b-rk3588_defconfig @@ -1,5 +1,6 @@ CONFIG_ARM=y CONFIG_SKIP_LOWLEVEL_INIT=y +CONFIG_SYS_HAS_NONCACHED_MEMORY=y CONFIG_COUNTER_FREQUENCY=24000000 CONFIG_ARCH_ROCKCHIP=y CONFIG_TEXT_BASE=0x00a00000 @@ -71,6 +72,7 @@ CONFIG_MMC_SDHCI_SDMA=y CONFIG_MMC_SDHCI_ROCKCHIP=y CONFIG_SPI_FLASH_MACRONIX=y CONFIG_ETH_DESIGNWARE=y +CONFIG_RTL8169=y CONFIG_GMAC_ROCKCHIP=y CONFIG_PCI=y CONFIG_PCIE_DW_ROCKCHIP=y -- 2.34.1