summaryrefslogtreecommitdiff
path: root/board/amlogic/q200
diff options
context:
space:
mode:
authorJerome Brunet <jbrunet@baylibre.com>2018-10-05 18:00:37 +0300
committerNeil Armstrong <narmstrong@baylibre.com>2018-11-26 16:40:52 +0300
commit33e3378091391c90a110d93f4c89044b4461fb99 (patch)
tree19d0cc19223d939243a1ec926ea4df915c00f075 /board/amlogic/q200
parent572aeb5338131484eb72d9ca9e6dd982d840dbf8 (diff)
downloadu-boot-33e3378091391c90a110d93f4c89044b4461fb99.tar.xz
ARM: meson: rework soc arch file to prepare for new SoC
We are about to add support for the Amlogic AXG SoC. While very close to the Gx SoC family, we will need to handle a few thing which are different in this SoC. Rework the meson arch directory to prepare for this. Signed-off-by: Jerome Brunet <jbrunet@baylibre.com> Signed-off-by: Neil Armstrong <narmstrong@baylibre.com>
Diffstat (limited to 'board/amlogic/q200')
-rw-r--r--board/amlogic/q200/q200.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/board/amlogic/q200/q200.c b/board/amlogic/q200/q200.c
index ff56569f17..b59c11bd35 100644
--- a/board/amlogic/q200/q200.c
+++ b/board/amlogic/q200/q200.c
@@ -29,7 +29,7 @@ int misc_init_r(void)
char serial[EFUSE_SN_SIZE];
ssize_t len;
- meson_gx_eth_init(PHY_INTERFACE_MODE_RGMII, 0);
+ meson_eth_init(PHY_INTERFACE_MODE_RGMII, 0);
/* Reset PHY on GPIOZ_14 */
clrbits_le32(GX_GPIO_EN(3), BIT(14));
@@ -56,7 +56,7 @@ int misc_init_r(void)
int ft_board_setup(void *blob, bd_t *bd)
{
- meson_gx_init_reserved_memory(blob);
+ meson_init_reserved_memory(blob);
return 0;
}