blob: 191fd4900589813316ac36264ad3afd01263fa75 [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>
Simon Glass9b4a2052019-12-28 10:45:05 -07008#include <init.h>
Neil Armstrongd96a7822018-07-27 14:10:00 +02009#include <asm/arch/boot.h>
Jerome Brunet33e33782018-10-05 17:00:37 +020010#include <asm/arch/eth.h>
Neil Armstrongf0f37622018-04-11 17:13:45 +020011#include <asm/arch/gx.h>
Jerome Brunet33e33782018-10-05 17:00:37 +020012#include <asm/arch/mem.h>
Maxime Jourdan0cc53fa2018-12-11 12:52:04 +010013#include <asm/arch/meson-vpu.h>
Neil Armstrongc7be3e52017-11-27 10:35:46 +010014#include <asm/io.h>
Jerome Brunet33e33782018-10-05 17:00:37 +020015#include <asm/armv8/mmu.h>
16#include <linux/sizes.h>
17#include <phy.h>
Beniamino Galvanibfcef282016-05-08 08:30:16 +020018
19DECLARE_GLOBAL_DATA_PTR;
20
Neil Armstrongd96a7822018-07-27 14:10:00 +020021int meson_get_boot_device(void)
22{
23 return readl(GX_AO_SEC_GP_CFG0) & GX_AO_BOOT_DEVICE;
24}
25
Jerome Brunet33e33782018-10-05 17:00:37 +020026/* Configure the reserved memory zones exported by the secure registers
27 * into EFI and DTB reserved memory entries.
28 */
29void meson_init_reserved_memory(void *fdt)
Neil Armstrongc7be3e52017-11-27 10:35:46 +010030{
31 u64 bl31_size, bl31_start;
32 u64 bl32_size, bl32_start;
33 u32 reg;
34
35 /*
36 * Get ARM Trusted Firmware reserved memory zones in :
37 * - AO_SEC_GP_CFG3: bl32 & bl31 size in KiB, can be 0
38 * - AO_SEC_GP_CFG5: bl31 physical start address, can be NULL
39 * - AO_SEC_GP_CFG4: bl32 physical start address, can be NULL
40 */
Neil Armstrongf0f37622018-04-11 17:13:45 +020041 reg = readl(GX_AO_SEC_GP_CFG3);
Neil Armstrongc7be3e52017-11-27 10:35:46 +010042
Neil Armstrongf0f37622018-04-11 17:13:45 +020043 bl31_size = ((reg & GX_AO_BL31_RSVMEM_SIZE_MASK)
44 >> GX_AO_BL31_RSVMEM_SIZE_SHIFT) * SZ_1K;
45 bl32_size = (reg & GX_AO_BL32_RSVMEM_SIZE_MASK) * SZ_1K;
Neil Armstrongc7be3e52017-11-27 10:35:46 +010046
Neil Armstrongf0f37622018-04-11 17:13:45 +020047 bl31_start = readl(GX_AO_SEC_GP_CFG5);
48 bl32_start = readl(GX_AO_SEC_GP_CFG4);
Neil Armstrongc7be3e52017-11-27 10:35:46 +010049
50 /*
Neil Armstrongf0f37622018-04-11 17:13:45 +020051 * Early Meson GX Firmware revisions did not provide the reserved
Neil Armstrongc7be3e52017-11-27 10:35:46 +010052 * memory zones in the registers, keep fixed memory zone handling.
53 */
Neil Armstrongf0f37622018-04-11 17:13:45 +020054 if (IS_ENABLED(CONFIG_MESON_GX) &&
Neil Armstrongc7be3e52017-11-27 10:35:46 +010055 !reg && !bl31_start && !bl32_start) {
56 bl31_start = 0x10000000;
57 bl31_size = 0x200000;
58 }
59
60 /* Add first 16MiB reserved zone */
Neil Armstrongf0f37622018-04-11 17:13:45 +020061 meson_board_add_reserved_memory(fdt, 0, GX_FIRMWARE_MEM_SIZE);
Neil Armstrongc7be3e52017-11-27 10:35:46 +010062
63 /* Add BL31 reserved zone */
64 if (bl31_start && bl31_size)
65 meson_board_add_reserved_memory(fdt, bl31_start, bl31_size);
66
67 /* Add BL32 reserved zone */
68 if (bl32_start && bl32_size)
69 meson_board_add_reserved_memory(fdt, bl32_start, bl32_size);
Maxime Jourdan0cc53fa2018-12-11 12:52:04 +010070
71#if defined(CONFIG_VIDEO_MESON)
72 meson_vpu_rsv_fb(fdt);
73#endif
Beniamino Galvanibfcef282016-05-08 08:30:16 +020074}
75
Jerome Brunet33e33782018-10-05 17:00:37 +020076phys_size_t get_effective_memsize(void)
Beniamino Galvanibfcef282016-05-08 08:30:16 +020077{
Jerome Brunet33e33782018-10-05 17:00:37 +020078 /* Size is reported in MiB, convert it in bytes */
79 return ((readl(GX_AO_SEC_GP_CFG0) & GX_AO_MEM_SIZE_MASK)
80 >> GX_AO_MEM_SIZE_SHIFT) * SZ_1M;
Beniamino Galvanibfcef282016-05-08 08:30:16 +020081}
82
Neil Armstrongf0f37622018-04-11 17:13:45 +020083static struct mm_region gx_mem_map[] = {
Beniamino Galvanibfcef282016-05-08 08:30:16 +020084 {
York Suncd4b0c52016-06-24 16:46:22 -070085 .virt = 0x0UL,
86 .phys = 0x0UL,
Loic Devulderc45414b2018-09-25 16:30:35 +020087 .size = 0xc0000000UL,
Beniamino Galvanibfcef282016-05-08 08:30:16 +020088 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
89 PTE_BLOCK_INNER_SHARE
90 }, {
Loic Devulderc45414b2018-09-25 16:30:35 +020091 .virt = 0xc0000000UL,
92 .phys = 0xc0000000UL,
93 .size = 0x30000000UL,
Beniamino Galvanibfcef282016-05-08 08:30:16 +020094 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
95 PTE_BLOCK_NON_SHARE |
96 PTE_BLOCK_PXN | PTE_BLOCK_UXN
97 }, {
98 /* List terminator */
99 0,
100 }
101};
102
Neil Armstrongf0f37622018-04-11 17:13:45 +0200103struct mm_region *mem_map = gx_mem_map;
Jerome Brunet33e33782018-10-05 17:00:37 +0200104
105/* Configure the Ethernet MAC with the requested interface mode
106 * with some optional flags.
107 */
108void meson_eth_init(phy_interface_t mode, unsigned int flags)
109{
110 switch (mode) {
111 case PHY_INTERFACE_MODE_RGMII:
112 case PHY_INTERFACE_MODE_RGMII_ID:
113 case PHY_INTERFACE_MODE_RGMII_RXID:
114 case PHY_INTERFACE_MODE_RGMII_TXID:
115 /* Set RGMII mode */
116 setbits_le32(GX_ETH_REG_0, GX_ETH_REG_0_PHY_INTF |
117 GX_ETH_REG_0_TX_PHASE(1) |
118 GX_ETH_REG_0_TX_RATIO(4) |
119 GX_ETH_REG_0_PHY_CLK_EN |
120 GX_ETH_REG_0_CLK_EN);
Neil Armstrong407544c2019-05-28 13:13:19 +0200121
122 /* Reset to external PHY */
123 if(!IS_ENABLED(CONFIG_MESON_GXBB))
124 writel(0x2009087f, GX_ETH_REG_3);
125
Jerome Brunet33e33782018-10-05 17:00:37 +0200126 break;
127
128 case PHY_INTERFACE_MODE_RMII:
129 /* Set RMII mode */
130 out_le32(GX_ETH_REG_0, GX_ETH_REG_0_INVERT_RMII_CLK |
131 GX_ETH_REG_0_CLK_EN);
132
Neil Armstrong407544c2019-05-28 13:13:19 +0200133 /* Use GXL RMII Internal PHY (also on GXM) */
134 if (!IS_ENABLED(CONFIG_MESON_GXBB)) {
135 if ((flags & MESON_USE_INTERNAL_RMII_PHY)) {
136 writel(0x10110181, GX_ETH_REG_2);
137 writel(0xe40908ff, GX_ETH_REG_3);
138 } else
139 writel(0x2009087f, GX_ETH_REG_3);
Jerome Brunet33e33782018-10-05 17:00:37 +0200140 }
141
142 break;
143
144 default:
145 printf("Invalid Ethernet interface mode\n");
146 return;
147 }
148
149 /* Enable power gate */
150 clrbits_le32(GX_MEM_PD_REG_0, GX_MEM_PD_REG_0_ETH_MASK);
151}