mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-08 14:14:32 +00:00
805b2423b4
Enable SATA support. Although not supported by the usual SATA pins on the SMARC baseboard connector, SATA mode is supported on a PCIe lane. This way one can use a mSATA card in a Mini PCI slot. We need to invert the received data because in this mode the polarity of the SerDes lane is swapped. Provide a fixup in board_early_init_f() for the SPL. board_early_init_f() is then not common between SPL and u-boot proper anymore, thus common.c is removed, as it just contained said function. Signed-off-by: Michael Walle <michael@walle.cc> Reviewed-by: Priyanka Jain <priyanka.jain@nxp.com>
12 lines
186 B
Makefile
12 lines
186 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
|
|
ifndef CONFIG_SPL_BUILD
|
|
obj-y += sl28.o cmds.o
|
|
endif
|
|
|
|
obj-y += ddr.o
|
|
|
|
ifdef CONFIG_SPL_BUILD
|
|
obj-y += spl.o
|
|
obj-$(CONFIG_SPL_ATF) += spl_atf.o
|
|
endif
|