blob: ab8f1a81f832d687531e4a2e3d249067b68fd823 [file] [log] [blame]
Tom Rini83d290c2018-05-06 17:58:06 -04001// SPDX-License-Identifier: GPL-2.0+
Beniamino Galvanibfcef282016-05-08 08:30:16 +02002/*
3 * (C) Copyright 2016 Beniamino Galvani <b.galvani@gmail.com>
Jerome Brunet33e33782018-10-05 17:00:37 +02004 * (C) Copyright 2018 Neil Armstrong <narmstrong@baylibre.com>
Beniamino Galvanibfcef282016-05-08 08:30:16 +02005 */
6
7#include <common.h>
Neil Armstrongd96a7822018-07-27 14:10:00 +02008#include <asm/arch/boot.h>
Jerome Brunet33e33782018-10-05 17:00:37 +02009#include <asm/arch/eth.h>
Neil Armstrongf0f37622018-04-11 17:13:45 +020010#include <asm/arch/gx.h>
Jerome Brunet33e33782018-10-05 17:00:37 +020011#include <asm/arch/mem.h>
Maxime Jourdan0cc53fa2018-12-11 12:52:04 +010012#include <asm/arch/meson-vpu.h>
Neil Armstrongc7be3e52017-11-27 10:35:46 +010013#include <asm/io.h>
Jerome Brunet33e33782018-10-05 17:00:37 +020014#include <asm/armv8/mmu.h>
15#include <linux/sizes.h>
16#include <phy.h>
Beniamino Galvanibfcef282016-05-08 08:30:16 +020017
18DECLARE_GLOBAL_DATA_PTR;
19
Neil Armstrongd96a7822018-07-27 14:10:00 +020020int meson_get_boot_device(void)
21{
22 return readl(GX_AO_SEC_GP_CFG0) & GX_AO_BOOT_DEVICE;
23}
24
Jerome Brunet33e33782018-10-05 17:00:37 +020025/* Configure the reserved memory zones exported by the secure registers
26 * into EFI and DTB reserved memory entries.
27 */
28void meson_init_reserved_memory(void *fdt)
Neil Armstrongc7be3e52017-11-27 10:35:46 +010029{
30 u64 bl31_size, bl31_start;
31 u64 bl32_size, bl32_start;
32 u32 reg;
33
34 /*
35 * Get ARM Trusted Firmware reserved memory zones in :
36 * - AO_SEC_GP_CFG3: bl32 & bl31 size in KiB, can be 0
37 * - AO_SEC_GP_CFG5: bl31 physical start address, can be NULL
38 * - AO_SEC_GP_CFG4: bl32 physical start address, can be NULL
39 */
Neil Armstrongf0f37622018-04-11 17:13:45 +020040 reg = readl(GX_AO_SEC_GP_CFG3);
Neil Armstrongc7be3e52017-11-27 10:35:46 +010041
Neil Armstrongf0f37622018-04-11 17:13:45 +020042 bl31_size = ((reg & GX_AO_BL31_RSVMEM_SIZE_MASK)
43 >> GX_AO_BL31_RSVMEM_SIZE_SHIFT) * SZ_1K;
44 bl32_size = (reg & GX_AO_BL32_RSVMEM_SIZE_MASK) * SZ_1K;
Neil Armstrongc7be3e52017-11-27 10:35:46 +010045
Neil Armstrongf0f37622018-04-11 17:13:45 +020046 bl31_start = readl(GX_AO_SEC_GP_CFG5);
47 bl32_start = readl(GX_AO_SEC_GP_CFG4);
Neil Armstrongc7be3e52017-11-27 10:35:46 +010048
49 /*
Neil Armstrongf0f37622018-04-11 17:13:45 +020050 * Early Meson GX Firmware revisions did not provide the reserved
Neil Armstrongc7be3e52017-11-27 10:35:46 +010051 * memory zones in the registers, keep fixed memory zone handling.
52 */
Neil Armstrongf0f37622018-04-11 17:13:45 +020053 if (IS_ENABLED(CONFIG_MESON_GX) &&
Neil Armstrongc7be3e52017-11-27 10:35:46 +010054 !reg && !bl31_start && !bl32_start) {
55 bl31_start = 0x10000000;
56 bl31_size = 0x200000;
57 }
58
59 /* Add first 16MiB reserved zone */
Neil Armstrongf0f37622018-04-11 17:13:45 +020060 meson_board_add_reserved_memory(fdt, 0, GX_FIRMWARE_MEM_SIZE);
Neil Armstrongc7be3e52017-11-27 10:35:46 +010061
62 /* Add BL31 reserved zone */
63 if (bl31_start && bl31_size)
64 meson_board_add_reserved_memory(fdt, bl31_start, bl31_size);
65
66 /* Add BL32 reserved zone */
67 if (bl32_start && bl32_size)
68 meson_board_add_reserved_memory(fdt, bl32_start, bl32_size);
Maxime Jourdan0cc53fa2018-12-11 12:52:04 +010069
70#if defined(CONFIG_VIDEO_MESON)
71 meson_vpu_rsv_fb(fdt);
72#endif
Beniamino Galvanibfcef282016-05-08 08:30:16 +020073}
74
Jerome Brunet33e33782018-10-05 17:00:37 +020075phys_size_t get_effective_memsize(void)
Beniamino Galvanibfcef282016-05-08 08:30:16 +020076{
Jerome Brunet33e33782018-10-05 17:00:37 +020077 /* Size is reported in MiB, convert it in bytes */
78 return ((readl(GX_AO_SEC_GP_CFG0) & GX_AO_MEM_SIZE_MASK)
79 >> GX_AO_MEM_SIZE_SHIFT) * SZ_1M;
Beniamino Galvanibfcef282016-05-08 08:30:16 +020080}
81
Neil Armstrongf0f37622018-04-11 17:13:45 +020082static struct mm_region gx_mem_map[] = {
Beniamino Galvanibfcef282016-05-08 08:30:16 +020083 {
York Suncd4b0c52016-06-24 16:46:22 -070084 .virt = 0x0UL,
85 .phys = 0x0UL,
Loic Devulderc45414b2018-09-25 16:30:35 +020086 .size = 0xc0000000UL,
Beniamino Galvanibfcef282016-05-08 08:30:16 +020087 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
88 PTE_BLOCK_INNER_SHARE
89 }, {
Loic Devulderc45414b2018-09-25 16:30:35 +020090 .virt = 0xc0000000UL,
91 .phys = 0xc0000000UL,
92 .size = 0x30000000UL,
Beniamino Galvanibfcef282016-05-08 08:30:16 +020093 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
94 PTE_BLOCK_NON_SHARE |
95 PTE_BLOCK_PXN | PTE_BLOCK_UXN
96 }, {
97 /* List terminator */
98 0,
99 }
100};
101
Neil Armstrongf0f37622018-04-11 17:13:45 +0200102struct mm_region *mem_map = gx_mem_map;
Jerome Brunet33e33782018-10-05 17:00:37 +0200103
104/* Configure the Ethernet MAC with the requested interface mode
105 * with some optional flags.
106 */
107void meson_eth_init(phy_interface_t mode, unsigned int flags)
108{
109 switch (mode) {
110 case PHY_INTERFACE_MODE_RGMII:
111 case PHY_INTERFACE_MODE_RGMII_ID:
112 case PHY_INTERFACE_MODE_RGMII_RXID:
113 case PHY_INTERFACE_MODE_RGMII_TXID:
114 /* Set RGMII mode */
115 setbits_le32(GX_ETH_REG_0, GX_ETH_REG_0_PHY_INTF |
116 GX_ETH_REG_0_TX_PHASE(1) |
117 GX_ETH_REG_0_TX_RATIO(4) |
118 GX_ETH_REG_0_PHY_CLK_EN |
119 GX_ETH_REG_0_CLK_EN);
Neil Armstrong407544c2019-05-28 13:13:19 +0200120
121 /* Reset to external PHY */
122 if(!IS_ENABLED(CONFIG_MESON_GXBB))
123 writel(0x2009087f, GX_ETH_REG_3);
124
Jerome Brunet33e33782018-10-05 17:00:37 +0200125 break;
126
127 case PHY_INTERFACE_MODE_RMII:
128 /* Set RMII mode */
129 out_le32(GX_ETH_REG_0, GX_ETH_REG_0_INVERT_RMII_CLK |
130 GX_ETH_REG_0_CLK_EN);
131
Neil Armstrong407544c2019-05-28 13:13:19 +0200132 /* Use GXL RMII Internal PHY (also on GXM) */
133 if (!IS_ENABLED(CONFIG_MESON_GXBB)) {
134 if ((flags & MESON_USE_INTERNAL_RMII_PHY)) {
135 writel(0x10110181, GX_ETH_REG_2);
136 writel(0xe40908ff, GX_ETH_REG_3);
137 } else
138 writel(0x2009087f, GX_ETH_REG_3);
Jerome Brunet33e33782018-10-05 17:00:37 +0200139 }
140
141 break;
142
143 default:
144 printf("Invalid Ethernet interface mode\n");
145 return;
146 }
147
148 /* Enable power gate */
149 clrbits_le32(GX_MEM_PD_REG_0, GX_MEM_PD_REG_0_ETH_MASK);
150}