From: Tony Dinh Date: Wed, 14 Jul 2021 04:35:46 +0000 (-0700) Subject: arm: kirkwood: Marvell Sheevaplug: Add DM SATA and remove IDE configs X-Git-Tag: v2021.10-rc1~11^2~4 X-Git-Url: http://git.openpandora.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=ba7174fc53f2bfde825eed172c581be4f3e9bae0;p=pandora-u-boot.git arm: kirkwood: Marvell Sheevaplug: Add DM SATA and remove IDE configs Enable DM SATA, removed IDE driver, and add SATA MV driver. Signed-off-by: Tony Dinh --- diff --git a/include/configs/sheevaplug.h b/include/configs/sheevaplug.h index 41ba7996593..e28f98458e6 100644 --- a/include/configs/sheevaplug.h +++ b/include/configs/sheevaplug.h @@ -53,10 +53,9 @@ /* * SATA driver configuration */ -#ifdef CONFIG_IDE -#define __io -#define CONFIG_SYS_ATA_IDE0_OFFSET MV_SATA_PORT0_OFFSET -#define CONFIG_SYS_ATA_IDE1_OFFSET MV_SATA_PORT1_OFFSET -#endif /* CONFIG_IDE */ +#ifdef CONFIG_SATA +#define CONFIG_SYS_SATA_MAX_DEVICE 2 +#define CONFIG_LBA48 +#endif /* CONFIG_SATA */ #endif /* _CONFIG_SHEEVAPLUG_H */