mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-06 05:04:26 +00:00
17b7efe25b
Add support for the Amlogic G12A SoC, which is a mix between the new physical memory mapping of AXG and the functionnalities of the previous Amlogic GXL/GXM SoCs. To handle the internal ethernet PHY, the Amlogic G12A SoCs now embeds a dedicated PLL to feed the internal PHY. Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
8 lines
259 B
Makefile
8 lines
259 B
Makefile
# SPDX-License-Identifier: GPL-2.0+
|
|
#
|
|
# Copyright (c) 2016 Beniamino Galvani <b.galvani@gmail.com>
|
|
|
|
obj-y += board-common.o sm.o board-info.o
|
|
obj-$(CONFIG_MESON_GX) += board-gx.o
|
|
obj-$(CONFIG_MESON_AXG) += board-axg.o
|
|
obj-$(CONFIG_MESON_G12A) += board-g12a.o
|