blob: e41552db523c5923b03d066eaf28a3d0bbe885de [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>
Neil Armstrongc7be3e52017-11-27 10:35:46 +010012#include <asm/io.h>
Jerome Brunet33e33782018-10-05 17:00:37 +020013#include <asm/armv8/mmu.h>
14#include <linux/sizes.h>
15#include <phy.h>
Beniamino Galvanibfcef282016-05-08 08:30:16 +020016
17DECLARE_GLOBAL_DATA_PTR;
18
Neil Armstrongd96a7822018-07-27 14:10:00 +020019int meson_get_boot_device(void)
20{
21 return readl(GX_AO_SEC_GP_CFG0) & GX_AO_BOOT_DEVICE;
22}
23
Jerome Brunet33e33782018-10-05 17:00:37 +020024/* Configure the reserved memory zones exported by the secure registers
25 * into EFI and DTB reserved memory entries.
26 */
27void meson_init_reserved_memory(void *fdt)
Neil Armstrongc7be3e52017-11-27 10:35:46 +010028{
29 u64 bl31_size, bl31_start;
30 u64 bl32_size, bl32_start;
31 u32 reg;
32
33 /*
34 * Get ARM Trusted Firmware reserved memory zones in :
35 * - AO_SEC_GP_CFG3: bl32 & bl31 size in KiB, can be 0
36 * - AO_SEC_GP_CFG5: bl31 physical start address, can be NULL
37 * - AO_SEC_GP_CFG4: bl32 physical start address, can be NULL
38 */
Neil Armstrongf0f37622018-04-11 17:13:45 +020039 reg = readl(GX_AO_SEC_GP_CFG3);
Neil Armstrongc7be3e52017-11-27 10:35:46 +010040
Neil Armstrongf0f37622018-04-11 17:13:45 +020041 bl31_size = ((reg & GX_AO_BL31_RSVMEM_SIZE_MASK)
42 >> GX_AO_BL31_RSVMEM_SIZE_SHIFT) * SZ_1K;
43 bl32_size = (reg & GX_AO_BL32_RSVMEM_SIZE_MASK) * SZ_1K;
Neil Armstrongc7be3e52017-11-27 10:35:46 +010044
Neil Armstrongf0f37622018-04-11 17:13:45 +020045 bl31_start = readl(GX_AO_SEC_GP_CFG5);
46 bl32_start = readl(GX_AO_SEC_GP_CFG4);
Neil Armstrongc7be3e52017-11-27 10:35:46 +010047
48 /*
Neil Armstrongf0f37622018-04-11 17:13:45 +020049 * Early Meson GX Firmware revisions did not provide the reserved
Neil Armstrongc7be3e52017-11-27 10:35:46 +010050 * memory zones in the registers, keep fixed memory zone handling.
51 */
Neil Armstrongf0f37622018-04-11 17:13:45 +020052 if (IS_ENABLED(CONFIG_MESON_GX) &&
Neil Armstrongc7be3e52017-11-27 10:35:46 +010053 !reg && !bl31_start && !bl32_start) {
54 bl31_start = 0x10000000;
55 bl31_size = 0x200000;
56 }
57
58 /* Add first 16MiB reserved zone */
Neil Armstrongf0f37622018-04-11 17:13:45 +020059 meson_board_add_reserved_memory(fdt, 0, GX_FIRMWARE_MEM_SIZE);
Neil Armstrongc7be3e52017-11-27 10:35:46 +010060
61 /* Add BL31 reserved zone */
62 if (bl31_start && bl31_size)
63 meson_board_add_reserved_memory(fdt, bl31_start, bl31_size);
64
65 /* Add BL32 reserved zone */
66 if (bl32_start && bl32_size)
67 meson_board_add_reserved_memory(fdt, bl32_start, bl32_size);
Beniamino Galvanibfcef282016-05-08 08:30:16 +020068}
69
Jerome Brunet33e33782018-10-05 17:00:37 +020070phys_size_t get_effective_memsize(void)
Beniamino Galvanibfcef282016-05-08 08:30:16 +020071{
Jerome Brunet33e33782018-10-05 17:00:37 +020072 /* Size is reported in MiB, convert it in bytes */
73 return ((readl(GX_AO_SEC_GP_CFG0) & GX_AO_MEM_SIZE_MASK)
74 >> GX_AO_MEM_SIZE_SHIFT) * SZ_1M;
Beniamino Galvanibfcef282016-05-08 08:30:16 +020075}
76
Neil Armstrongf0f37622018-04-11 17:13:45 +020077static struct mm_region gx_mem_map[] = {
Beniamino Galvanibfcef282016-05-08 08:30:16 +020078 {
York Suncd4b0c52016-06-24 16:46:22 -070079 .virt = 0x0UL,
80 .phys = 0x0UL,
Loic Devulderc45414b2018-09-25 16:30:35 +020081 .size = 0xc0000000UL,
Beniamino Galvanibfcef282016-05-08 08:30:16 +020082 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) |
83 PTE_BLOCK_INNER_SHARE
84 }, {
Loic Devulderc45414b2018-09-25 16:30:35 +020085 .virt = 0xc0000000UL,
86 .phys = 0xc0000000UL,
87 .size = 0x30000000UL,
Beniamino Galvanibfcef282016-05-08 08:30:16 +020088 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) |
89 PTE_BLOCK_NON_SHARE |
90 PTE_BLOCK_PXN | PTE_BLOCK_UXN
91 }, {
92 /* List terminator */
93 0,
94 }
95};
96
Neil Armstrongf0f37622018-04-11 17:13:45 +020097struct mm_region *mem_map = gx_mem_map;
Jerome Brunet33e33782018-10-05 17:00:37 +020098
99/* Configure the Ethernet MAC with the requested interface mode
100 * with some optional flags.
101 */
102void meson_eth_init(phy_interface_t mode, unsigned int flags)
103{
104 switch (mode) {
105 case PHY_INTERFACE_MODE_RGMII:
106 case PHY_INTERFACE_MODE_RGMII_ID:
107 case PHY_INTERFACE_MODE_RGMII_RXID:
108 case PHY_INTERFACE_MODE_RGMII_TXID:
109 /* Set RGMII mode */
110 setbits_le32(GX_ETH_REG_0, GX_ETH_REG_0_PHY_INTF |
111 GX_ETH_REG_0_TX_PHASE(1) |
112 GX_ETH_REG_0_TX_RATIO(4) |
113 GX_ETH_REG_0_PHY_CLK_EN |
114 GX_ETH_REG_0_CLK_EN);
115 break;
116
117 case PHY_INTERFACE_MODE_RMII:
118 /* Set RMII mode */
119 out_le32(GX_ETH_REG_0, GX_ETH_REG_0_INVERT_RMII_CLK |
120 GX_ETH_REG_0_CLK_EN);
121
122 /* Use GXL RMII Internal PHY */
123 if (IS_ENABLED(CONFIG_MESON_GXL) &&
124 (flags & MESON_USE_INTERNAL_RMII_PHY)) {
125 writel(0x10110181, GX_ETH_REG_2);
126 writel(0xe40908ff, GX_ETH_REG_3);
127 }
128
129 break;
130
131 default:
132 printf("Invalid Ethernet interface mode\n");
133 return;
134 }
135
136 /* Enable power gate */
137 clrbits_le32(GX_MEM_PD_REG_0, GX_MEM_PD_REG_0_ETH_MASK);
138}