diff options
author | Jerome Brunet | 2018-10-05 17:00:37 +0200 |
---|---|---|
committer | Neil Armstrong | 2018-11-26 14:40:52 +0100 |
commit | 33e3378091391c90a110d93f4c89044b4461fb99 (patch) | |
tree | 19d0cc19223d939243a1ec926ea4df915c00f075 /board/amlogic/q200 | |
parent | 572aeb5338131484eb72d9ca9e6dd982d840dbf8 (diff) |
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.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/board/amlogic/q200/q200.c b/board/amlogic/q200/q200.c index ff56569f171..b59c11bd35f 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; } |