1 /* 2 * (C) Copyright 2017 Linaro 3 * Jorge Ramirez-Ortiz <jorge.ramirez-ortiz@linaro.org> 4 * 5 * SPDX-License-Identifier: GPL-2.0+ 6 */ 7 8 #include <dm.h> 9 #include <common.h> 10 #include <asm/io.h> 11 #include <dm/platform_data/serial_pl01x.h> 12 #include <asm/arch/hi3798cv200.h> 13 #include <asm/arch/dwmmc.h> 14 #include <asm/armv8/mmu.h> 15 16 DECLARE_GLOBAL_DATA_PTR; 17 18 static struct mm_region poplar_mem_map[] = { 19 { 20 .virt = 0x0UL, 21 .phys = 0x0UL, 22 .size = 0x80000000UL, 23 .attrs = PTE_BLOCK_MEMTYPE(MT_NORMAL) | 24 PTE_BLOCK_INNER_SHARE 25 }, { 26 .virt = 0x80000000UL, 27 .phys = 0x80000000UL, 28 .size = 0x80000000UL, 29 .attrs = PTE_BLOCK_MEMTYPE(MT_DEVICE_NGNRNE) | 30 PTE_BLOCK_NON_SHARE | 31 PTE_BLOCK_PXN | PTE_BLOCK_UXN 32 }, { 33 0, 34 } 35 }; 36 37 struct mm_region *mem_map = poplar_mem_map; 38 39 static const struct pl01x_serial_platdata serial_platdata = { 40 .base = REG_BASE_UART0, 41 .type = TYPE_PL010, 42 .clock = 75000000, 43 }; 44 45 U_BOOT_DEVICE(poplar_serial) = { 46 .name = "serial_pl01x", 47 .platdata = &serial_platdata, 48 }; 49 50 int checkboard(void) 51 { 52 puts("BOARD: Hisilicon HI3798cv200 Poplar\n"); 53 54 return 0; 55 } 56 57 void reset_cpu(ulong addr) 58 { 59 psci_system_reset(); 60 } 61 62 int dram_init(void) 63 { 64 gd->ram_size = get_ram_size(NULL, 0x80000000); 65 66 return 0; 67 } 68 69 /* 70 * Some linux kernel versions don't use memory before its load address, so to 71 * be generic we just pretend it isn't there. In previous uboot versions we 72 * carved the space used by BL31 (runs in DDR on this platfomr) so the PSCI code 73 * could persist in memory and be left alone by the kernel. 74 * 75 * That led to a problem when mapping memory in older kernels. That PSCI code 76 * now lies in memory below the kernel load offset; it therefore won't be 77 * touched by the kernel, and by not specially reserving it we avoid the mapping 78 * problem as well. 79 * 80 */ 81 #define KERNEL_TEXT_OFFSET 0x00080000 82 83 int dram_init_banksize(void) 84 { 85 gd->bd->bi_dram[0].start = KERNEL_TEXT_OFFSET; 86 gd->bd->bi_dram[0].size = gd->ram_size - gd->bd->bi_dram[0].start; 87 88 return 0; 89 } 90 91 static void usb2_phy_config(void) 92 { 93 const u32 config[] = { 94 /* close EOP pre-emphasis. open data pre-emphasis */ 95 0xa1001c, 96 /* Rcomp = 150mW, increase DC level */ 97 0xa00607, 98 /* keep Rcomp working */ 99 0xa10700, 100 /* Icomp = 212mW, increase current drive */ 101 0xa00aab, 102 /* EMI fix: rx_active not stay 1 when error packets received */ 103 0xa11140, 104 /* Comp mode select */ 105 0xa11041, 106 /* adjust eye diagram */ 107 0xa0098c, 108 /* adjust eye diagram */ 109 0xa10a0a, 110 }; 111 int i; 112 113 for (i = 0; i < ARRAY_SIZE(config); i++) { 114 writel(config[i], PERI_CTRL_USB0); 115 clrsetbits_le32(PERI_CTRL_USB0, BIT(21), BIT(20) | BIT(22)); 116 udelay(20); 117 } 118 } 119 120 static void usb2_phy_init(void) 121 { 122 /* reset usb2 controller bus/utmi/roothub */ 123 setbits_le32(PERI_CRG46, USB2_BUS_SRST_REQ | USB2_UTMI0_SRST_REQ | 124 USB2_HST_PHY_SYST_REQ | USB2_OTG_PHY_SYST_REQ); 125 udelay(200); 126 127 /* reset usb2 phy por/utmi */ 128 setbits_le32(PERI_CRG47, USB2_PHY01_SRST_REQ | USB2_PHY01_SRST_TREQ1); 129 udelay(200); 130 131 /* open usb2 ref clk */ 132 setbits_le32(PERI_CRG47, USB2_PHY01_REF_CKEN); 133 udelay(300); 134 135 /* cancel usb2 power on reset */ 136 clrbits_le32(PERI_CRG47, USB2_PHY01_SRST_REQ); 137 udelay(500); 138 139 usb2_phy_config(); 140 141 /* cancel usb2 port reset, wait comp circuit stable */ 142 clrbits_le32(PERI_CRG47, USB2_PHY01_SRST_TREQ1); 143 mdelay(10); 144 145 /* open usb2 controller clk */ 146 setbits_le32(PERI_CRG46, USB2_BUS_CKEN | USB2_OHCI48M_CKEN | 147 USB2_OHCI12M_CKEN | USB2_OTG_UTMI_CKEN | 148 USB2_HST_PHY_CKEN | USB2_UTMI0_CKEN); 149 udelay(200); 150 151 /* cancel usb2 control reset */ 152 clrbits_le32(PERI_CRG46, USB2_BUS_SRST_REQ | USB2_UTMI0_SRST_REQ | 153 USB2_HST_PHY_SYST_REQ | USB2_OTG_PHY_SYST_REQ); 154 udelay(200); 155 } 156 157 int board_mmc_init(bd_t *bis) 158 { 159 int ret; 160 161 ret = hi6220_dwmci_add_port(0, REG_BASE_MCI, 8); 162 if (ret) 163 printf("mmc init error (%d)\n", ret); 164 165 return ret; 166 } 167 168 int board_init(void) 169 { 170 usb2_phy_init(); 171 172 return 0; 173 } 174 175