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 D7F5FC4332F for ; Wed, 6 Apr 2022 20:42:53 +0000 (UTC) Received: from h2850616.stratoserver.net (localhost [IPv6:::1]) by phobos.denx.de (Postfix) with ESMTP id 9A9A283E2D; Wed, 6 Apr 2022 22:42:41 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=debian.org 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; secure) header.d=debian.org header.i=@debian.org header.b="OL6WgKSW"; dkim-atps=neutral Received: by phobos.denx.de (Postfix, from userid 109) id A124283E21; Wed, 6 Apr 2022 22:42:39 +0200 (CEST) Received: from cascadia.aikidev.net (cascadia.aikidev.net [173.255.214.101]) by phobos.denx.de (Postfix) with ESMTP id 6F6DB83E3F for ; Wed, 6 Apr 2022 22:42:33 +0200 (CEST) Authentication-Results: phobos.denx.de; dmarc=none (p=none dis=none) header.from=debian.org Authentication-Results: phobos.denx.de; spf=pass smtp.mailfrom=vagrant@aikidev.net Received: from localhost (unknown [IPv6:2600:3c01:e000:21:7:77:0:20]) (Authenticated sender: vagrant@aikidev.net) by cascadia.aikidev.net (Postfix) with ESMTPSA id AD03B1AC39; Wed, 6 Apr 2022 13:42:32 -0700 (PDT) DKIM-Signature: v=1; a=rsa-sha256; c=relaxed/simple; d=debian.org; s=1.vagrant.user; t=1649277752; bh=dVpl5kr8xs3VM28MZtHRh37S/wYLxTsfrv0TRBiTZ9Y=; h=From:To:Cc:Subject:Date:In-Reply-To:References:From; b=OL6WgKSW2iY8MkZu3gsJhpwkJzJUy91r2Xjx4oL0IZM7WySTp5Jn/BcIHpYtCLpuW HMUJ0wR78SQv0vbWx7yJiHNBMLLEH/FLTrDga0Qik/bwHujfPXfyWk8G6poWjkzHGk 4LuEIJGARASn9Vi5Sd+mWlTWl83WfP0YSMgsWHgfjvm7WQr2kmtrJ/xxCg06bVMgOO l0ic4M+5GiRp5b/Igp450ljCMYCseT6TVdSatZjXIcFffSggHhf5YEAeCh4oAqBPCD prNfv0VeM4qyu4/9QV+KmA3VWiSXmq4EiwmhxnFVIuebwtUtKqHW6w4eL9mC7JNSRj L4vftPbM7pA0w== From: Vagrant Cascadian To: u-boot@lists.denx.de Cc: Vagrant Cascadian , Akash Gajjar , Jagan Teki , Kever Yang , Philipp Tomsich , Simon Glass Subject: [PATCH 2/2] rockchip: Enable AHCI/SCSI/SATA on rockpro64-rk3399. Date: Wed, 6 Apr 2022 13:42:04 -0700 Message-Id: <20220406204204.60328-3-vagrant@debian.org> X-Mailer: git-send-email 2.35.1 In-Reply-To: <20220406204204.60328-1-vagrant@debian.org> References: <20220406204204.60328-1-vagrant@debian.org> 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.5 at phobos.denx.de X-Virus-Status: Clean Add options to enable AHCI, SCSI and SATA. Signed-off-by: Vagrant Cascadian --- configs/rockpro64-rk3399_defconfig | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/configs/rockpro64-rk3399_defconfig b/configs/rockpro64-rk3399_defconfig index d5e98a4f73..858410e8f7 100644 --- a/configs/rockpro64-rk3399_defconfig +++ b/configs/rockpro64-rk3399_defconfig @@ -28,6 +28,13 @@ CONFIG_CMD_GPT=y CONFIG_CMD_MMC=y CONFIG_CMD_PCI=y CONFIG_CMD_USB=y +CONFIG_AHCI=y +CONFIG_AHCI_PCI=y +CONFIG_SATA=y +CONFIG_SATA_SIL=y +CONFIG_SCSI=y +CONFIG_SCSI_AHCI=y +CONFIG_DM_SCSI=y # CONFIG_CMD_SETEXPR is not set CONFIG_CMD_TIME=y CONFIG_SPL_OF_CONTROL=y -- 2.35.1