mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-10 23:24:38 +00:00
e08539b791
Add support for the Atheros AR934x WiSoCs. This patchs adds complete system init, including PLL and DRAM init, both of which happen from full C environment, since the AR934x has proper SRAM. Signed-off-by: Marek Vasut <marex@denx.de> Cc: Daniel Schwierzeck <daniel.schwierzeck@gmail.com> Cc: Wills Wang <wills.wang@live.com>
11 lines
200 B
Makefile
11 lines
200 B
Makefile
#
|
|
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
|
|
obj-y += reset.o
|
|
obj-y += cpu.o
|
|
obj-y += dram.o
|
|
|
|
obj-$(CONFIG_SOC_AR933X) += ar933x/
|
|
obj-$(CONFIG_SOC_AR934X) += ar934x/
|
|
obj-$(CONFIG_SOC_QCA953X) += qca953x/
|