mirror of
https://github.com/Stichting-MINIX-Research-Foundation/u-boot.git
synced 2025-09-10 12:39:22 -04:00
mpc8349itx: allow SATA boot from the onboard SIL1334
This patch allows using of SATA devices connected to the onboard PCI SIL1334 SATA controller. Signed-off-by: Valeriy Glushkov <gvv@lstec.com> Signed-off-by: Kim Phillips <kim.phillips@freescale.com>
This commit is contained in:
parent
e1ac387f46
commit
c9e34fe2e8
@ -78,6 +78,7 @@
|
|||||||
#ifdef CONFIG_MPC8349ITX
|
#ifdef CONFIG_MPC8349ITX
|
||||||
#define CONFIG_COMPACT_FLASH /* The CF card interface on the back of the board */
|
#define CONFIG_COMPACT_FLASH /* The CF card interface on the back of the board */
|
||||||
#define CONFIG_VSC7385_ENET /* VSC7385 ethernet support */
|
#define CONFIG_VSC7385_ENET /* VSC7385 ethernet support */
|
||||||
|
#define CONFIG_SATA_SIL3114 /* SIL3114 SATA controller */
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#define CONFIG_PCI
|
#define CONFIG_PCI
|
||||||
@ -141,7 +142,16 @@
|
|||||||
|
|
||||||
#define ATA_RESET_TIME 1 /* If a CF card is not inserted, time out quickly */
|
#define ATA_RESET_TIME 1 /* If a CF card is not inserted, time out quickly */
|
||||||
|
|
||||||
#define CONFIG_DOS_PARTITION
|
#endif
|
||||||
|
|
||||||
|
/*
|
||||||
|
* SATA
|
||||||
|
*/
|
||||||
|
#ifdef CONFIG_SATA_SIL3114
|
||||||
|
|
||||||
|
#define CONFIG_SYS_SATA_MAX_DEVICE 4
|
||||||
|
#define CONFIG_LIBATA
|
||||||
|
#define CONFIG_LBA48
|
||||||
|
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
@ -449,9 +459,18 @@ boards, we say we have two, but don't display a message if we find only one. */
|
|||||||
#define CONFIG_CMD_PING
|
#define CONFIG_CMD_PING
|
||||||
#define CONFIG_CMD_SDRAM
|
#define CONFIG_CMD_SDRAM
|
||||||
|
|
||||||
|
#if defined(CONFIG_COMPACT_FLASH) || defined(CONFIG_SATA_SIL3114)
|
||||||
|
#define CONFIG_DOS_PARTITION
|
||||||
|
#define CONFIG_CMD_FAT
|
||||||
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_COMPACT_FLASH
|
#ifdef CONFIG_COMPACT_FLASH
|
||||||
#define CONFIG_CMD_IDE
|
#define CONFIG_CMD_IDE
|
||||||
#define CONFIG_CMD_FAT
|
#endif
|
||||||
|
|
||||||
|
#ifdef CONFIG_SATA_SIL3114
|
||||||
|
#define CONFIG_CMD_SATA
|
||||||
|
#define CONFIG_CMD_EXT2
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
#ifdef CONFIG_PCI
|
#ifdef CONFIG_PCI
|
||||||
|
Loading…
x
Reference in New Issue
Block a user