Tom Rini | 83d290c | 2018-05-06 17:58:06 -0400 | [diff] [blame] | 1 | // SPDX-License-Identifier: GPL-2.0+ |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 2 | /* |
Haiying Wang | 4e7b25e | 2009-05-20 12:30:35 -0400 | [diff] [blame] | 3 | * Copyright (C) 2006-2009 Freescale Semiconductor, Inc. |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 4 | * |
| 5 | * Dave Liu <daveliu@freescale.com> |
| 6 | * based on source code of Shlomi Gridish |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 7 | */ |
| 8 | |
Masahiro Yamada | b5bf5cb | 2016-09-21 11:28:53 +0900 | [diff] [blame] | 9 | #include <common.h> |
Zhao Qiang | 5aa03dd | 2017-05-25 09:47:40 +0800 | [diff] [blame] | 10 | #include <malloc.h> |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 11 | #include <command.h> |
Simon Glass | 401d1c4 | 2020-10-30 21:38:53 -0600 | [diff] [blame] | 12 | #include <asm/global_data.h> |
Masahiro Yamada | 1221ce4 | 2016-09-21 11:28:55 +0900 | [diff] [blame] | 13 | #include <linux/errno.h> |
Masahiro Yamada | b5bf5cb | 2016-09-21 11:28:53 +0900 | [diff] [blame] | 14 | #include <asm/io.h> |
| 15 | #include <linux/immap_qe.h> |
Qianyu Gong | 2459afb | 2016-02-18 13:01:59 +0800 | [diff] [blame] | 16 | #include <fsl_qe.h> |
Rajesh Bhagat | c5e6637 | 2018-11-05 18:02:28 +0000 | [diff] [blame] | 17 | #include <mmc.h> |
Simon Glass | 3db7110 | 2019-11-14 12:57:16 -0700 | [diff] [blame] | 18 | #include <u-boot/crc.h> |
Rajesh Bhagat | c5e6637 | 2018-11-05 18:02:28 +0000 | [diff] [blame] | 19 | |
York Sun | 73fb583 | 2017-03-27 11:41:03 -0700 | [diff] [blame] | 20 | #ifdef CONFIG_ARCH_LS1021A |
Zhao Qiang | 9c7c86f | 2014-12-15 15:50:49 +0800 | [diff] [blame] | 21 | #include <asm/arch/immap_ls102xa.h> |
| 22 | #endif |
Rajesh Bhagat | c5e6637 | 2018-11-05 18:02:28 +0000 | [diff] [blame] | 23 | #ifdef CONFIG_ARM64 |
| 24 | #include <asm/armv8/mmu.h> |
| 25 | #include <asm/arch/cpu.h> |
Zhao Qiang | 5aa03dd | 2017-05-25 09:47:40 +0800 | [diff] [blame] | 26 | #endif |
| 27 | |
Zhao Qiang | ca721fb | 2014-04-30 16:45:31 +0800 | [diff] [blame] | 28 | #define MPC85xx_DEVDISR_QE_DISABLE 0x1 |
| 29 | |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 30 | qe_map_t *qe_immr; |
Zhao Qiang | 3bf46e6 | 2016-02-05 10:04:16 +0800 | [diff] [blame] | 31 | #ifdef CONFIG_QE |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 32 | static qe_snum_t snums[QE_NUM_OF_SNUM]; |
Zhao Qiang | 3bf46e6 | 2016-02-05 10:04:16 +0800 | [diff] [blame] | 33 | #endif |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 34 | |
Wolfgang Denk | 1218abf | 2007-09-15 20:48:41 +0200 | [diff] [blame] | 35 | DECLARE_GLOBAL_DATA_PTR; |
| 36 | |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 37 | void qe_issue_cmd(uint cmd, uint sbc, u8 mcn, u32 cmd_data) |
| 38 | { |
Wolfgang Denk | d3a6532 | 2008-01-10 00:55:14 +0100 | [diff] [blame] | 39 | u32 cecr; |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 40 | |
| 41 | if (cmd == QE_RESET) { |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 42 | out_be32(&qe_immr->cp.cecr, (u32)(cmd | QE_CR_FLG)); |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 43 | } else { |
| 44 | out_be32(&qe_immr->cp.cecdr, cmd_data); |
| 45 | out_be32(&qe_immr->cp.cecr, (sbc | QE_CR_FLG | |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 46 | ((u32)mcn << QE_CR_PROTOCOL_SHIFT) | cmd)); |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 47 | } |
| 48 | /* Wait for the QE_CR_FLG to clear */ |
| 49 | do { |
| 50 | cecr = in_be32(&qe_immr->cp.cecr); |
| 51 | } while (cecr & QE_CR_FLG); |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 52 | } |
| 53 | |
Zhao Qiang | 93d3320 | 2014-09-25 13:52:25 +0800 | [diff] [blame] | 54 | #ifdef CONFIG_QE |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 55 | uint qe_muram_alloc(uint size, uint align) |
| 56 | { |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 57 | uint retloc; |
| 58 | uint align_mask, off; |
| 59 | uint savebase; |
| 60 | |
| 61 | align_mask = align - 1; |
Simon Glass | 45bae2e | 2012-12-13 20:48:50 +0000 | [diff] [blame] | 62 | savebase = gd->arch.mp_alloc_base; |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 63 | |
Simon Glass | 45bae2e | 2012-12-13 20:48:50 +0000 | [diff] [blame] | 64 | off = gd->arch.mp_alloc_base & align_mask; |
| 65 | if (off != 0) |
| 66 | gd->arch.mp_alloc_base += (align - off); |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 67 | |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 68 | off = size & align_mask; |
| 69 | if (off != 0) |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 70 | size += (align - off); |
| 71 | |
Simon Glass | 45bae2e | 2012-12-13 20:48:50 +0000 | [diff] [blame] | 72 | if ((gd->arch.mp_alloc_base + size) >= gd->arch.mp_alloc_top) { |
| 73 | gd->arch.mp_alloc_base = savebase; |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 74 | printf("%s: ran out of ram.\n", __func__); |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 75 | } |
| 76 | |
Simon Glass | 45bae2e | 2012-12-13 20:48:50 +0000 | [diff] [blame] | 77 | retloc = gd->arch.mp_alloc_base; |
| 78 | gd->arch.mp_alloc_base += size; |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 79 | |
| 80 | memset((void *)&qe_immr->muram[retloc], 0, size); |
| 81 | |
| 82 | __asm__ __volatile__("sync"); |
| 83 | |
| 84 | return retloc; |
| 85 | } |
Zhao Qiang | 93d3320 | 2014-09-25 13:52:25 +0800 | [diff] [blame] | 86 | #endif |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 87 | |
| 88 | void *qe_muram_addr(uint offset) |
| 89 | { |
| 90 | return (void *)&qe_immr->muram[offset]; |
| 91 | } |
| 92 | |
Zhao Qiang | 3bf46e6 | 2016-02-05 10:04:16 +0800 | [diff] [blame] | 93 | #ifdef CONFIG_QE |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 94 | static void qe_sdma_init(void) |
| 95 | { |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 96 | sdma_t *p; |
| 97 | uint sdma_buffer_base; |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 98 | |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 99 | p = (sdma_t *)&qe_immr->sdma; |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 100 | |
| 101 | /* All of DMA transaction in bus 1 */ |
| 102 | out_be32(&p->sdaqr, 0); |
| 103 | out_be32(&p->sdaqmr, 0); |
| 104 | |
| 105 | /* Allocate 2KB temporary buffer for sdma */ |
Dave Liu | ff9658d | 2007-06-25 10:41:04 +0800 | [diff] [blame] | 106 | sdma_buffer_base = qe_muram_alloc(2048, 4096); |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 107 | out_be32(&p->sdwbcr, sdma_buffer_base & QE_SDEBCR_BA_MASK); |
| 108 | |
| 109 | /* Clear sdma status */ |
| 110 | out_be32(&p->sdsr, 0x03000000); |
| 111 | |
| 112 | /* Enable global mode on bus 1, and 2KB buffer size */ |
| 113 | out_be32(&p->sdmr, QE_SDMR_GLB_1_MSK | (0x3 << QE_SDMR_CEN_SHIFT)); |
| 114 | } |
| 115 | |
Haiying Wang | 4e7b25e | 2009-05-20 12:30:35 -0400 | [diff] [blame] | 116 | /* This table is a list of the serial numbers of the Threads, taken from the |
| 117 | * "SNUM Table" chart in the QE Reference Manual. The order is not important, |
| 118 | * we just need to know what the SNUMs are for the threads. |
| 119 | */ |
| 120 | static u8 thread_snum[] = { |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 121 | /* Evthreads 16-29 are not supported in MPC8309 */ |
Mario Six | 4bc97a3 | 2019-01-21 09:17:24 +0100 | [diff] [blame] | 122 | #if !defined(CONFIG_ARCH_MPC8309) |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 123 | 0x04, 0x05, 0x0c, 0x0d, |
| 124 | 0x14, 0x15, 0x1c, 0x1d, |
| 125 | 0x24, 0x25, 0x2c, 0x2d, |
Gerlando Falauto | a88731a | 2012-10-10 22:13:08 +0000 | [diff] [blame] | 126 | 0x34, 0x35, |
| 127 | #endif |
| 128 | 0x88, 0x89, 0x98, 0x99, |
| 129 | 0xa8, 0xa9, 0xb8, 0xb9, |
| 130 | 0xc8, 0xc9, 0xd8, 0xd9, |
| 131 | 0xe8, 0xe9, 0x08, 0x09, |
| 132 | 0x18, 0x19, 0x28, 0x29, |
| 133 | 0x38, 0x39, 0x48, 0x49, |
| 134 | 0x58, 0x59, 0x68, 0x69, |
| 135 | 0x78, 0x79, 0x80, 0x81 |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 136 | }; |
| 137 | |
| 138 | static void qe_snums_init(void) |
| 139 | { |
| 140 | int i; |
| 141 | |
| 142 | for (i = 0; i < QE_NUM_OF_SNUM; i++) { |
| 143 | snums[i].state = QE_SNUM_STATE_FREE; |
| 144 | snums[i].num = thread_snum[i]; |
| 145 | } |
| 146 | } |
| 147 | |
| 148 | int qe_get_snum(void) |
| 149 | { |
| 150 | int snum = -EBUSY; |
| 151 | int i; |
| 152 | |
| 153 | for (i = 0; i < QE_NUM_OF_SNUM; i++) { |
| 154 | if (snums[i].state == QE_SNUM_STATE_FREE) { |
| 155 | snums[i].state = QE_SNUM_STATE_USED; |
| 156 | snum = snums[i].num; |
| 157 | break; |
| 158 | } |
| 159 | } |
| 160 | |
| 161 | return snum; |
| 162 | } |
| 163 | |
| 164 | void qe_put_snum(u8 snum) |
| 165 | { |
| 166 | int i; |
| 167 | |
| 168 | for (i = 0; i < QE_NUM_OF_SNUM; i++) { |
| 169 | if (snums[i].num == snum) { |
| 170 | snums[i].state = QE_SNUM_STATE_FREE; |
| 171 | break; |
| 172 | } |
| 173 | } |
| 174 | } |
| 175 | |
Rajesh Bhagat | c5e6637 | 2018-11-05 18:02:28 +0000 | [diff] [blame] | 176 | #ifdef CONFIG_TFABOOT |
| 177 | void qe_init(uint qe_base) |
| 178 | { |
| 179 | enum boot_src src = get_boot_src(); |
| 180 | |
| 181 | /* Init the QE IMMR base */ |
| 182 | qe_immr = (qe_map_t *)qe_base; |
| 183 | |
| 184 | if (src == BOOT_SOURCE_IFC_NOR) { |
| 185 | /* |
| 186 | * Upload microcode to IRAM for those SOCs |
| 187 | * which do not have ROM in QE. |
| 188 | */ |
| 189 | qe_upload_firmware((const void *)(CONFIG_SYS_QE_FW_ADDR + |
| 190 | CONFIG_SYS_FSL_IFC_BASE)); |
| 191 | |
| 192 | /* enable the microcode in IRAM */ |
| 193 | out_be32(&qe_immr->iram.iready, QE_IRAM_READY); |
| 194 | } |
| 195 | |
| 196 | gd->arch.mp_alloc_base = QE_DATAONLY_BASE; |
| 197 | gd->arch.mp_alloc_top = gd->arch.mp_alloc_base + QE_DATAONLY_SIZE; |
| 198 | |
| 199 | qe_sdma_init(); |
| 200 | qe_snums_init(); |
| 201 | } |
| 202 | #else |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 203 | void qe_init(uint qe_base) |
| 204 | { |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 205 | /* Init the QE IMMR base */ |
| 206 | qe_immr = (qe_map_t *)qe_base; |
| 207 | |
Timur Tabi | f2717b4 | 2011-11-22 09:21:25 -0600 | [diff] [blame] | 208 | #ifdef CONFIG_SYS_QE_FMAN_FW_IN_NOR |
Wolfgang Denk | c0a14ae | 2009-04-05 00:27:57 +0200 | [diff] [blame] | 209 | /* |
| 210 | * Upload microcode to IRAM for those SOCs which do not have ROM in QE. |
| 211 | */ |
Zhao Qiang | dcf1d77 | 2014-03-21 16:21:44 +0800 | [diff] [blame] | 212 | qe_upload_firmware((const void *)CONFIG_SYS_QE_FW_ADDR); |
Haiying Wang | 2d4de6a | 2009-03-26 17:01:49 -0400 | [diff] [blame] | 213 | |
Wolfgang Denk | c0a14ae | 2009-04-05 00:27:57 +0200 | [diff] [blame] | 214 | /* enable the microcode in IRAM */ |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 215 | out_be32(&qe_immr->iram.iready, QE_IRAM_READY); |
Haiying Wang | 2d4de6a | 2009-03-26 17:01:49 -0400 | [diff] [blame] | 216 | #endif |
| 217 | |
Simon Glass | 45bae2e | 2012-12-13 20:48:50 +0000 | [diff] [blame] | 218 | gd->arch.mp_alloc_base = QE_DATAONLY_BASE; |
| 219 | gd->arch.mp_alloc_top = gd->arch.mp_alloc_base + QE_DATAONLY_SIZE; |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 220 | |
| 221 | qe_sdma_init(); |
| 222 | qe_snums_init(); |
| 223 | } |
Zhao Qiang | 3bf46e6 | 2016-02-05 10:04:16 +0800 | [diff] [blame] | 224 | #endif |
Rajesh Bhagat | c5e6637 | 2018-11-05 18:02:28 +0000 | [diff] [blame] | 225 | #endif |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 226 | |
Zhao Qiang | 93d3320 | 2014-09-25 13:52:25 +0800 | [diff] [blame] | 227 | #ifdef CONFIG_U_QE |
Rajesh Bhagat | c5e6637 | 2018-11-05 18:02:28 +0000 | [diff] [blame] | 228 | #ifdef CONFIG_TFABOOT |
| 229 | void u_qe_init(void) |
| 230 | { |
| 231 | enum boot_src src = get_boot_src(); |
| 232 | |
| 233 | qe_immr = (qe_map_t *)(CONFIG_SYS_IMMR + QE_IMMR_OFFSET); |
| 234 | |
| 235 | void *addr = (void *)CONFIG_SYS_QE_FW_ADDR; |
| 236 | |
| 237 | if (src == BOOT_SOURCE_IFC_NOR) |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 238 | addr = (void *)(CONFIG_SYS_QE_FW_ADDR + |
| 239 | CONFIG_SYS_FSL_IFC_BASE); |
Rajesh Bhagat | c5e6637 | 2018-11-05 18:02:28 +0000 | [diff] [blame] | 240 | |
| 241 | if (src == BOOT_SOURCE_QSPI_NOR) |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 242 | addr = (void *)(CONFIG_SYS_QE_FW_ADDR + |
| 243 | CONFIG_SYS_FSL_QSPI_BASE); |
Rajesh Bhagat | c5e6637 | 2018-11-05 18:02:28 +0000 | [diff] [blame] | 244 | |
| 245 | if (src == BOOT_SOURCE_SD_MMC) { |
| 246 | int dev = CONFIG_SYS_MMC_ENV_DEV; |
| 247 | u32 cnt = CONFIG_SYS_QE_FMAN_FW_LENGTH / 512; |
| 248 | u32 blk = CONFIG_SYS_QE_FW_ADDR / 512; |
| 249 | |
| 250 | if (mmc_initialize(gd->bd)) { |
| 251 | printf("%s: mmc_initialize() failed\n", __func__); |
| 252 | return; |
| 253 | } |
| 254 | addr = malloc(CONFIG_SYS_QE_FMAN_FW_LENGTH); |
| 255 | struct mmc *mmc = find_mmc_device(CONFIG_SYS_MMC_ENV_DEV); |
| 256 | |
| 257 | if (!mmc) { |
| 258 | free(addr); |
| 259 | printf("\nMMC cannot find device for ucode\n"); |
| 260 | } else { |
| 261 | printf("\nMMC read: dev # %u, block # %u, count %u ...\n", |
| 262 | dev, blk, cnt); |
| 263 | mmc_init(mmc); |
| 264 | (void)blk_dread(mmc_get_blk_desc(mmc), blk, cnt, |
| 265 | addr); |
| 266 | } |
| 267 | } |
| 268 | if (!u_qe_upload_firmware(addr)) |
| 269 | out_be32(&qe_immr->iram.iready, QE_IRAM_READY); |
| 270 | if (src == BOOT_SOURCE_SD_MMC) |
| 271 | free(addr); |
| 272 | } |
| 273 | #else |
Zhao Qiang | 93d3320 | 2014-09-25 13:52:25 +0800 | [diff] [blame] | 274 | void u_qe_init(void) |
| 275 | { |
Zhao Qiang | d3e6d30 | 2016-02-05 10:04:17 +0800 | [diff] [blame] | 276 | qe_immr = (qe_map_t *)(CONFIG_SYS_IMMR + QE_IMMR_OFFSET); |
Zhao Qiang | 93d3320 | 2014-09-25 13:52:25 +0800 | [diff] [blame] | 277 | |
Zhao Qiang | 5aa03dd | 2017-05-25 09:47:40 +0800 | [diff] [blame] | 278 | void *addr = (void *)CONFIG_SYS_QE_FW_ADDR; |
| 279 | #ifdef CONFIG_SYS_QE_FMAN_FW_IN_MMC |
| 280 | int dev = CONFIG_SYS_MMC_ENV_DEV; |
| 281 | u32 cnt = CONFIG_SYS_QE_FMAN_FW_LENGTH / 512; |
| 282 | u32 blk = CONFIG_SYS_QE_FW_ADDR / 512; |
| 283 | |
| 284 | if (mmc_initialize(gd->bd)) { |
| 285 | printf("%s: mmc_initialize() failed\n", __func__); |
| 286 | return; |
| 287 | } |
| 288 | addr = malloc(CONFIG_SYS_QE_FMAN_FW_LENGTH); |
| 289 | struct mmc *mmc = find_mmc_device(CONFIG_SYS_MMC_ENV_DEV); |
| 290 | |
| 291 | if (!mmc) { |
Zhao Qiang | 5aa03dd | 2017-05-25 09:47:40 +0800 | [diff] [blame] | 292 | printf("\nMMC cannot find device for ucode\n"); |
| 293 | } else { |
| 294 | printf("\nMMC read: dev # %u, block # %u, count %u ...\n", |
| 295 | dev, blk, cnt); |
| 296 | mmc_init(mmc); |
Yinbo Zhu | c3ced8a | 2018-09-25 14:47:06 +0800 | [diff] [blame] | 297 | (void)blk_dread(mmc_get_blk_desc(mmc), blk, cnt, |
Zhao Qiang | 5aa03dd | 2017-05-25 09:47:40 +0800 | [diff] [blame] | 298 | addr); |
Zhao Qiang | 5aa03dd | 2017-05-25 09:47:40 +0800 | [diff] [blame] | 299 | } |
| 300 | #endif |
Zhao Qiang | a7a8175 | 2017-08-14 10:22:43 +0800 | [diff] [blame] | 301 | if (!u_qe_upload_firmware(addr)) |
| 302 | out_be32(&qe_immr->iram.iready, QE_IRAM_READY); |
Zhao Qiang | 5aa03dd | 2017-05-25 09:47:40 +0800 | [diff] [blame] | 303 | #ifdef CONFIG_SYS_QE_FMAN_FW_IN_MMC |
| 304 | free(addr); |
| 305 | #endif |
Zhao Qiang | 93d3320 | 2014-09-25 13:52:25 +0800 | [diff] [blame] | 306 | } |
| 307 | #endif |
Rajesh Bhagat | c5e6637 | 2018-11-05 18:02:28 +0000 | [diff] [blame] | 308 | #endif |
Zhao Qiang | 93d3320 | 2014-09-25 13:52:25 +0800 | [diff] [blame] | 309 | |
Zhao Qiang | ae42eb0 | 2015-03-25 17:02:59 +0800 | [diff] [blame] | 310 | #ifdef CONFIG_U_QE |
| 311 | void u_qe_resume(void) |
| 312 | { |
| 313 | qe_map_t *qe_immrr; |
Zhao Qiang | ae42eb0 | 2015-03-25 17:02:59 +0800 | [diff] [blame] | 314 | |
Zhao Qiang | d3e6d30 | 2016-02-05 10:04:17 +0800 | [diff] [blame] | 315 | qe_immrr = (qe_map_t *)(CONFIG_SYS_IMMR + QE_IMMR_OFFSET); |
Zhao Qiang | ae42eb0 | 2015-03-25 17:02:59 +0800 | [diff] [blame] | 316 | u_qe_firmware_resume((const void *)CONFIG_SYS_QE_FW_ADDR, qe_immrr); |
| 317 | out_be32(&qe_immrr->iram.iready, QE_IRAM_READY); |
| 318 | } |
| 319 | #endif |
| 320 | |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 321 | void qe_reset(void) |
| 322 | { |
| 323 | qe_issue_cmd(QE_RESET, QE_CR_SUBBLOCK_INVALID, |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 324 | (u8)QE_CR_PROTOCOL_UNSPECIFIED, 0); |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 325 | } |
| 326 | |
Zhao Qiang | 3bf46e6 | 2016-02-05 10:04:16 +0800 | [diff] [blame] | 327 | #ifdef CONFIG_QE |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 328 | void qe_assign_page(uint snum, uint para_ram_base) |
| 329 | { |
| 330 | u32 cecr; |
| 331 | |
| 332 | out_be32(&qe_immr->cp.cecdr, para_ram_base); |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 333 | out_be32(&qe_immr->cp.cecr, ((u32)snum << QE_CR_ASSIGN_PAGE_SNUM_SHIFT) |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 334 | | QE_CR_FLG | QE_ASSIGN_PAGE); |
| 335 | |
| 336 | /* Wait for the QE_CR_FLG to clear */ |
| 337 | do { |
| 338 | cecr = in_be32(&qe_immr->cp.cecr); |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 339 | } while (cecr & QE_CR_FLG); |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 340 | } |
Zhao Qiang | 3bf46e6 | 2016-02-05 10:04:16 +0800 | [diff] [blame] | 341 | #endif |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 342 | |
| 343 | /* |
| 344 | * brg: 0~15 as BRG1~BRG16 |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 345 | * rate: baud rate |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 346 | * BRG input clock comes from the BRGCLK (internal clock generated from |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 347 | * the QE clock, it is one-half of the QE clock), If need the clock source |
| 348 | * from CLKn pin, we have te change the function. |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 349 | */ |
| 350 | |
Simon Glass | 1206c18 | 2012-12-13 20:48:44 +0000 | [diff] [blame] | 351 | #define BRG_CLK (gd->arch.brg_clk) |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 352 | |
Zhao Qiang | 93d3320 | 2014-09-25 13:52:25 +0800 | [diff] [blame] | 353 | #ifdef CONFIG_QE |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 354 | int qe_set_brg(uint brg, uint rate) |
| 355 | { |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 356 | uint *bp; |
| 357 | u32 divisor; |
| 358 | u32 val; |
| 359 | int div16 = 0; |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 360 | |
| 361 | if (brg >= QE_NUM_OF_BRGS) |
| 362 | return -EINVAL; |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 363 | |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 364 | bp = (uint *)&qe_immr->brg.brgc1; |
| 365 | bp += brg; |
| 366 | |
| 367 | divisor = (BRG_CLK / rate); |
| 368 | if (divisor > QE_BRGC_DIVISOR_MAX + 1) { |
| 369 | div16 = 1; |
| 370 | divisor /= 16; |
| 371 | } |
| 372 | |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 373 | /* CHECK TODO */ |
| 374 | /* |
| 375 | * was |
| 376 | * *bp = ((divisor - 1) << QE_BRGC_DIVISOR_SHIFT) | QE_BRGC_ENABLE; |
| 377 | * __asm__ __volatile__("sync"); |
| 378 | */ |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 379 | |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 380 | val = ((divisor - 1) << QE_BRGC_DIVISOR_SHIFT) | QE_BRGC_ENABLE; |
| 381 | if (div16) |
| 382 | val |= QE_BRGC_DIV16; |
| 383 | |
| 384 | out_be32(bp, val); |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 385 | |
| 386 | return 0; |
| 387 | } |
Zhao Qiang | 93d3320 | 2014-09-25 13:52:25 +0800 | [diff] [blame] | 388 | #endif |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 389 | |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 390 | /* Set ethernet MII clock master */ |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 391 | int qe_set_mii_clk_src(int ucc_num) |
| 392 | { |
| 393 | u32 cmxgcr; |
| 394 | |
| 395 | /* check if the UCC number is in range. */ |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 396 | if ((ucc_num > UCC_MAX_NUM - 1) || ucc_num < 0) { |
| 397 | printf("%s: ucc num not in ranges\n", __func__); |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 398 | return -EINVAL; |
| 399 | } |
| 400 | |
| 401 | cmxgcr = in_be32(&qe_immr->qmx.cmxgcr); |
| 402 | cmxgcr &= ~QE_CMXGCR_MII_ENET_MNG_MASK; |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 403 | cmxgcr |= (ucc_num << QE_CMXGCR_MII_ENET_MNG_SHIFT); |
Dave Liu | 7737d5c | 2006-11-03 12:11:15 -0600 | [diff] [blame] | 404 | out_be32(&qe_immr->qmx.cmxgcr, cmxgcr); |
| 405 | |
| 406 | return 0; |
| 407 | } |
| 408 | |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 409 | /* Firmware information stored here for qe_get_firmware_info() */ |
| 410 | static struct qe_firmware_info qe_firmware_info; |
| 411 | |
| 412 | /* |
| 413 | * Set to 1 if QE firmware has been uploaded, and therefore |
| 414 | * qe_firmware_info contains valid data. |
| 415 | */ |
| 416 | static int qe_firmware_uploaded; |
| 417 | |
| 418 | /* |
| 419 | * Upload a QE microcode |
| 420 | * |
| 421 | * This function is a worker function for qe_upload_firmware(). It does |
| 422 | * the actual uploading of the microcode. |
| 423 | */ |
| 424 | static void qe_upload_microcode(const void *base, |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 425 | const struct qe_microcode *ucode) |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 426 | { |
| 427 | const u32 *code = base + be32_to_cpu(ucode->code_offset); |
| 428 | unsigned int i; |
| 429 | |
| 430 | if (ucode->major || ucode->minor || ucode->revision) |
| 431 | printf("QE: uploading microcode '%s' version %u.%u.%u\n", |
Zhao Qiang | e94a8fd | 2015-05-05 15:53:32 +0800 | [diff] [blame] | 432 | (char *)ucode->id, (u16)ucode->major, (u16)ucode->minor, |
| 433 | (u16)ucode->revision); |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 434 | else |
Zhao Qiang | e94a8fd | 2015-05-05 15:53:32 +0800 | [diff] [blame] | 435 | printf("QE: uploading microcode '%s'\n", (char *)ucode->id); |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 436 | |
| 437 | /* Use auto-increment */ |
| 438 | out_be32(&qe_immr->iram.iadd, be32_to_cpu(ucode->iram_offset) | |
| 439 | QE_IRAM_IADD_AIE | QE_IRAM_IADD_BADDR); |
| 440 | |
| 441 | for (i = 0; i < be32_to_cpu(ucode->count); i++) |
| 442 | out_be32(&qe_immr->iram.idata, be32_to_cpu(code[i])); |
| 443 | } |
| 444 | |
| 445 | /* |
| 446 | * Upload a microcode to the I-RAM at a specific address. |
| 447 | * |
Heinrich Schuchardt | d76485b | 2020-04-19 09:19:04 +0200 | [diff] [blame] | 448 | * See Documentation/powerpc/qe_firmware.rst in the Linux kernel tree for |
| 449 | * information on QE microcode uploading. |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 450 | * |
| 451 | * Currently, only version 1 is supported, so the 'version' field must be |
| 452 | * set to 1. |
| 453 | * |
| 454 | * The SOC model and revision are not validated, they are only displayed for |
| 455 | * informational purposes. |
| 456 | * |
| 457 | * 'calc_size' is the calculated size, in bytes, of the firmware structure and |
| 458 | * all of the microcode structures, minus the CRC. |
| 459 | * |
| 460 | * 'length' is the size that the structure says it is, including the CRC. |
| 461 | */ |
| 462 | int qe_upload_firmware(const struct qe_firmware *firmware) |
| 463 | { |
| 464 | unsigned int i; |
| 465 | unsigned int j; |
| 466 | u32 crc; |
| 467 | size_t calc_size = sizeof(struct qe_firmware); |
| 468 | size_t length; |
| 469 | const struct qe_header *hdr; |
Zhao Qiang | ca721fb | 2014-04-30 16:45:31 +0800 | [diff] [blame] | 470 | #ifdef CONFIG_DEEP_SLEEP |
York Sun | 73fb583 | 2017-03-27 11:41:03 -0700 | [diff] [blame] | 471 | #ifdef CONFIG_ARCH_LS1021A |
Zhao Qiang | 9c7c86f | 2014-12-15 15:50:49 +0800 | [diff] [blame] | 472 | struct ccsr_gur __iomem *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR; |
| 473 | #else |
Zhao Qiang | ca721fb | 2014-04-30 16:45:31 +0800 | [diff] [blame] | 474 | ccsr_gur_t *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 475 | #endif |
Zhao Qiang | 9c7c86f | 2014-12-15 15:50:49 +0800 | [diff] [blame] | 476 | #endif |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 477 | if (!firmware) { |
| 478 | printf("Invalid address\n"); |
| 479 | return -EINVAL; |
| 480 | } |
| 481 | |
| 482 | hdr = &firmware->header; |
| 483 | length = be32_to_cpu(hdr->length); |
| 484 | |
| 485 | /* Check the magic */ |
| 486 | if ((hdr->magic[0] != 'Q') || (hdr->magic[1] != 'E') || |
| 487 | (hdr->magic[2] != 'F')) { |
Vijay Rai | 12eeb13 | 2014-07-23 18:33:16 +0530 | [diff] [blame] | 488 | printf("QE microcode not found\n"); |
Zhao Qiang | ca721fb | 2014-04-30 16:45:31 +0800 | [diff] [blame] | 489 | #ifdef CONFIG_DEEP_SLEEP |
| 490 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_QE_DISABLE); |
| 491 | #endif |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 492 | return -EPERM; |
| 493 | } |
| 494 | |
| 495 | /* Check the version */ |
| 496 | if (hdr->version != 1) { |
| 497 | printf("Unsupported version\n"); |
| 498 | return -EPERM; |
| 499 | } |
| 500 | |
| 501 | /* Validate some of the fields */ |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 502 | if (firmware->count < 1 || firmware->count > MAX_QE_RISC) { |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 503 | printf("Invalid data\n"); |
| 504 | return -EINVAL; |
| 505 | } |
| 506 | |
| 507 | /* Validate the length and check if there's a CRC */ |
| 508 | calc_size += (firmware->count - 1) * sizeof(struct qe_microcode); |
| 509 | |
| 510 | for (i = 0; i < firmware->count; i++) |
| 511 | /* |
| 512 | * For situations where the second RISC uses the same microcode |
| 513 | * as the first, the 'code_offset' and 'count' fields will be |
| 514 | * zero, so it's okay to add those. |
| 515 | */ |
| 516 | calc_size += sizeof(u32) * |
| 517 | be32_to_cpu(firmware->microcode[i].count); |
| 518 | |
| 519 | /* Validate the length */ |
| 520 | if (length != calc_size + sizeof(u32)) { |
| 521 | printf("Invalid length\n"); |
| 522 | return -EPERM; |
| 523 | } |
| 524 | |
Wolfgang Denk | d3a6532 | 2008-01-10 00:55:14 +0100 | [diff] [blame] | 525 | /* |
| 526 | * Validate the CRC. We would normally call crc32_no_comp(), but that |
| 527 | * function isn't available unless you turn on JFFS support. |
| 528 | */ |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 529 | crc = be32_to_cpu(*(u32 *)((void *)firmware + calc_size)); |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 530 | if (crc != (crc32(-1, (const void *)firmware, calc_size) ^ -1)) { |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 531 | printf("Firmware CRC is invalid\n"); |
| 532 | return -EIO; |
| 533 | } |
| 534 | |
| 535 | /* |
| 536 | * If the microcode calls for it, split the I-RAM. |
| 537 | */ |
| 538 | if (!firmware->split) { |
| 539 | out_be16(&qe_immr->cp.cercr, |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 540 | in_be16(&qe_immr->cp.cercr) | QE_CP_CERCR_CIR); |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 541 | } |
| 542 | |
| 543 | if (firmware->soc.model) |
| 544 | printf("Firmware '%s' for %u V%u.%u\n", |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 545 | firmware->id, be16_to_cpu(firmware->soc.model), |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 546 | firmware->soc.major, firmware->soc.minor); |
| 547 | else |
| 548 | printf("Firmware '%s'\n", firmware->id); |
| 549 | |
| 550 | /* |
| 551 | * The QE only supports one microcode per RISC, so clear out all the |
| 552 | * saved microcode information and put in the new. |
| 553 | */ |
| 554 | memset(&qe_firmware_info, 0, sizeof(qe_firmware_info)); |
Zhao Qiang | 0e0224e | 2015-05-05 15:53:33 +0800 | [diff] [blame] | 555 | strncpy(qe_firmware_info.id, (char *)firmware->id, 62); |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 556 | qe_firmware_info.extended_modes = firmware->extended_modes; |
| 557 | memcpy(qe_firmware_info.vtraps, firmware->vtraps, |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 558 | sizeof(firmware->vtraps)); |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 559 | qe_firmware_uploaded = 1; |
| 560 | |
| 561 | /* Loop through each microcode. */ |
| 562 | for (i = 0; i < firmware->count; i++) { |
| 563 | const struct qe_microcode *ucode = &firmware->microcode[i]; |
| 564 | |
| 565 | /* Upload a microcode if it's present */ |
| 566 | if (ucode->code_offset) |
| 567 | qe_upload_microcode(firmware, ucode); |
| 568 | |
| 569 | /* Program the traps for this processor */ |
| 570 | for (j = 0; j < 16; j++) { |
| 571 | u32 trap = be32_to_cpu(ucode->traps[j]); |
| 572 | |
| 573 | if (trap) |
| 574 | out_be32(&qe_immr->rsp[i].tibcr[j], trap); |
| 575 | } |
| 576 | |
| 577 | /* Enable traps */ |
| 578 | out_be32(&qe_immr->rsp[i].eccr, be32_to_cpu(ucode->eccr)); |
| 579 | } |
| 580 | |
| 581 | return 0; |
| 582 | } |
| 583 | |
Zhao Qiang | 5632d15 | 2014-11-04 13:46:16 +0800 | [diff] [blame] | 584 | #ifdef CONFIG_U_QE |
| 585 | /* |
| 586 | * Upload a microcode to the I-RAM at a specific address. |
| 587 | * |
Heinrich Schuchardt | d76485b | 2020-04-19 09:19:04 +0200 | [diff] [blame] | 588 | * See Documentation/powerpc/qe_firmware.rst in the Linux kernel tree for |
| 589 | * information on QE microcode uploading. |
Zhao Qiang | 5632d15 | 2014-11-04 13:46:16 +0800 | [diff] [blame] | 590 | * |
| 591 | * Currently, only version 1 is supported, so the 'version' field must be |
| 592 | * set to 1. |
| 593 | * |
| 594 | * The SOC model and revision are not validated, they are only displayed for |
| 595 | * informational purposes. |
| 596 | * |
| 597 | * 'calc_size' is the calculated size, in bytes, of the firmware structure and |
| 598 | * all of the microcode structures, minus the CRC. |
| 599 | * |
| 600 | * 'length' is the size that the structure says it is, including the CRC. |
| 601 | */ |
| 602 | int u_qe_upload_firmware(const struct qe_firmware *firmware) |
| 603 | { |
| 604 | unsigned int i; |
| 605 | unsigned int j; |
| 606 | u32 crc; |
| 607 | size_t calc_size = sizeof(struct qe_firmware); |
| 608 | size_t length; |
| 609 | const struct qe_header *hdr; |
| 610 | #ifdef CONFIG_DEEP_SLEEP |
York Sun | 73fb583 | 2017-03-27 11:41:03 -0700 | [diff] [blame] | 611 | #ifdef CONFIG_ARCH_LS1021A |
Zhao Qiang | 9c7c86f | 2014-12-15 15:50:49 +0800 | [diff] [blame] | 612 | struct ccsr_gur __iomem *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR; |
| 613 | #else |
Zhao Qiang | 5632d15 | 2014-11-04 13:46:16 +0800 | [diff] [blame] | 614 | ccsr_gur_t __iomem *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 615 | #endif |
Zhao Qiang | 9c7c86f | 2014-12-15 15:50:49 +0800 | [diff] [blame] | 616 | #endif |
Zhao Qiang | 5632d15 | 2014-11-04 13:46:16 +0800 | [diff] [blame] | 617 | if (!firmware) { |
| 618 | printf("Invalid address\n"); |
| 619 | return -EINVAL; |
| 620 | } |
| 621 | |
| 622 | hdr = &firmware->header; |
| 623 | length = be32_to_cpu(hdr->length); |
| 624 | |
| 625 | /* Check the magic */ |
| 626 | if ((hdr->magic[0] != 'Q') || (hdr->magic[1] != 'E') || |
| 627 | (hdr->magic[2] != 'F')) { |
| 628 | printf("Not a microcode\n"); |
| 629 | #ifdef CONFIG_DEEP_SLEEP |
| 630 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_QE_DISABLE); |
| 631 | #endif |
| 632 | return -EPERM; |
| 633 | } |
| 634 | |
| 635 | /* Check the version */ |
| 636 | if (hdr->version != 1) { |
| 637 | printf("Unsupported version\n"); |
| 638 | return -EPERM; |
| 639 | } |
| 640 | |
| 641 | /* Validate some of the fields */ |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 642 | if (firmware->count < 1 || firmware->count > MAX_QE_RISC) { |
Zhao Qiang | 5632d15 | 2014-11-04 13:46:16 +0800 | [diff] [blame] | 643 | printf("Invalid data\n"); |
| 644 | return -EINVAL; |
| 645 | } |
| 646 | |
| 647 | /* Validate the length and check if there's a CRC */ |
| 648 | calc_size += (firmware->count - 1) * sizeof(struct qe_microcode); |
| 649 | |
| 650 | for (i = 0; i < firmware->count; i++) |
| 651 | /* |
| 652 | * For situations where the second RISC uses the same microcode |
| 653 | * as the first, the 'code_offset' and 'count' fields will be |
| 654 | * zero, so it's okay to add those. |
| 655 | */ |
| 656 | calc_size += sizeof(u32) * |
| 657 | be32_to_cpu(firmware->microcode[i].count); |
| 658 | |
| 659 | /* Validate the length */ |
| 660 | if (length != calc_size + sizeof(u32)) { |
| 661 | printf("Invalid length\n"); |
| 662 | return -EPERM; |
| 663 | } |
| 664 | |
| 665 | /* |
| 666 | * Validate the CRC. We would normally call crc32_no_comp(), but that |
| 667 | * function isn't available unless you turn on JFFS support. |
| 668 | */ |
| 669 | crc = be32_to_cpu(*(u32 *)((void *)firmware + calc_size)); |
| 670 | if (crc != (crc32(-1, (const void *)firmware, calc_size) ^ -1)) { |
| 671 | printf("Firmware CRC is invalid\n"); |
| 672 | return -EIO; |
| 673 | } |
| 674 | |
| 675 | /* |
| 676 | * If the microcode calls for it, split the I-RAM. |
| 677 | */ |
| 678 | if (!firmware->split) { |
| 679 | out_be16(&qe_immr->cp.cercr, |
| 680 | in_be16(&qe_immr->cp.cercr) | QE_CP_CERCR_CIR); |
| 681 | } |
| 682 | |
| 683 | if (firmware->soc.model) |
| 684 | printf("Firmware '%s' for %u V%u.%u\n", |
| 685 | firmware->id, be16_to_cpu(firmware->soc.model), |
| 686 | firmware->soc.major, firmware->soc.minor); |
| 687 | else |
| 688 | printf("Firmware '%s'\n", firmware->id); |
| 689 | |
| 690 | /* Loop through each microcode. */ |
| 691 | for (i = 0; i < firmware->count; i++) { |
| 692 | const struct qe_microcode *ucode = &firmware->microcode[i]; |
| 693 | |
| 694 | /* Upload a microcode if it's present */ |
| 695 | if (ucode->code_offset) |
| 696 | qe_upload_microcode(firmware, ucode); |
| 697 | |
| 698 | /* Program the traps for this processor */ |
| 699 | for (j = 0; j < 16; j++) { |
| 700 | u32 trap = be32_to_cpu(ucode->traps[j]); |
| 701 | |
| 702 | if (trap) |
| 703 | out_be32(&qe_immr->rsp[i].tibcr[j], trap); |
| 704 | } |
| 705 | |
| 706 | /* Enable traps */ |
| 707 | out_be32(&qe_immr->rsp[i].eccr, be32_to_cpu(ucode->eccr)); |
| 708 | } |
| 709 | |
| 710 | return 0; |
| 711 | } |
| 712 | #endif |
| 713 | |
Zhao Qiang | ae42eb0 | 2015-03-25 17:02:59 +0800 | [diff] [blame] | 714 | #ifdef CONFIG_U_QE |
| 715 | int u_qe_firmware_resume(const struct qe_firmware *firmware, qe_map_t *qe_immrr) |
| 716 | { |
| 717 | unsigned int i; |
| 718 | unsigned int j; |
| 719 | const struct qe_header *hdr; |
| 720 | const u32 *code; |
| 721 | #ifdef CONFIG_DEEP_SLEEP |
| 722 | #ifdef CONFIG_PPC |
| 723 | ccsr_gur_t __iomem *gur = (void *)(CONFIG_SYS_MPC85xx_GUTS_ADDR); |
| 724 | #else |
| 725 | struct ccsr_gur __iomem *gur = (void *)CONFIG_SYS_FSL_GUTS_ADDR; |
| 726 | #endif |
| 727 | #endif |
| 728 | |
| 729 | if (!firmware) |
| 730 | return -EINVAL; |
| 731 | |
| 732 | hdr = &firmware->header; |
| 733 | |
| 734 | /* Check the magic */ |
| 735 | if ((hdr->magic[0] != 'Q') || (hdr->magic[1] != 'E') || |
| 736 | (hdr->magic[2] != 'F')) { |
| 737 | #ifdef CONFIG_DEEP_SLEEP |
| 738 | setbits_be32(&gur->devdisr, MPC85xx_DEVDISR_QE_DISABLE); |
| 739 | #endif |
| 740 | return -EPERM; |
| 741 | } |
| 742 | |
| 743 | /* |
| 744 | * If the microcode calls for it, split the I-RAM. |
| 745 | */ |
| 746 | if (!firmware->split) { |
| 747 | out_be16(&qe_immrr->cp.cercr, |
| 748 | in_be16(&qe_immrr->cp.cercr) | QE_CP_CERCR_CIR); |
| 749 | } |
| 750 | |
| 751 | /* Loop through each microcode. */ |
| 752 | for (i = 0; i < firmware->count; i++) { |
| 753 | const struct qe_microcode *ucode = &firmware->microcode[i]; |
| 754 | |
| 755 | /* Upload a microcode if it's present */ |
| 756 | if (!ucode->code_offset) |
| 757 | return 0; |
| 758 | |
| 759 | code = (const void *)firmware + be32_to_cpu(ucode->code_offset); |
| 760 | |
| 761 | /* Use auto-increment */ |
| 762 | out_be32(&qe_immrr->iram.iadd, be32_to_cpu(ucode->iram_offset) | |
| 763 | QE_IRAM_IADD_AIE | QE_IRAM_IADD_BADDR); |
| 764 | |
| 765 | for (i = 0; i < be32_to_cpu(ucode->count); i++) |
| 766 | out_be32(&qe_immrr->iram.idata, be32_to_cpu(code[i])); |
| 767 | |
| 768 | /* Program the traps for this processor */ |
| 769 | for (j = 0; j < 16; j++) { |
| 770 | u32 trap = be32_to_cpu(ucode->traps[j]); |
| 771 | |
| 772 | if (trap) |
| 773 | out_be32(&qe_immrr->rsp[i].tibcr[j], trap); |
| 774 | } |
| 775 | |
| 776 | /* Enable traps */ |
| 777 | out_be32(&qe_immrr->rsp[i].eccr, be32_to_cpu(ucode->eccr)); |
| 778 | } |
| 779 | |
| 780 | return 0; |
| 781 | } |
| 782 | #endif |
| 783 | |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 784 | struct qe_firmware_info *qe_get_firmware_info(void) |
| 785 | { |
| 786 | return qe_firmware_uploaded ? &qe_firmware_info : NULL; |
| 787 | } |
| 788 | |
Simon Glass | 0914011 | 2020-05-10 11:40:03 -0600 | [diff] [blame] | 789 | static int qe_cmd(struct cmd_tbl *cmdtp, int flag, int argc, char *const argv[]) |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 790 | { |
| 791 | ulong addr; |
| 792 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 793 | if (argc < 3) |
| 794 | return cmd_usage(cmdtp); |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 795 | |
| 796 | if (strcmp(argv[1], "fw") == 0) { |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 797 | addr = hextoul(argv[2], NULL); |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 798 | |
| 799 | if (!addr) { |
| 800 | printf("Invalid address\n"); |
| 801 | return -EINVAL; |
| 802 | } |
| 803 | |
Wolfgang Denk | d3a6532 | 2008-01-10 00:55:14 +0100 | [diff] [blame] | 804 | /* |
| 805 | * If a length was supplied, compare that with the 'length' |
| 806 | * field. |
| 807 | */ |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 808 | |
| 809 | if (argc > 3) { |
Simon Glass | 7e5f460 | 2021-07-24 09:03:29 -0600 | [diff] [blame] | 810 | ulong length = hextoul(argv[3], NULL); |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 811 | struct qe_firmware *firmware = (void *)addr; |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 812 | |
| 813 | if (length != be32_to_cpu(firmware->header.length)) { |
| 814 | printf("Length mismatch\n"); |
| 815 | return -EINVAL; |
| 816 | } |
| 817 | } |
| 818 | |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 819 | return qe_upload_firmware((const struct qe_firmware *)addr); |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 820 | } |
| 821 | |
Wolfgang Denk | 47e26b1 | 2010-07-17 01:06:04 +0200 | [diff] [blame] | 822 | return cmd_usage(cmdtp); |
Timur Tabi | b8ec238 | 2008-01-07 13:31:19 -0600 | [diff] [blame] | 823 | } |
| 824 | |
| 825 | U_BOOT_CMD( |
| 826 | qe, 4, 0, qe_cmd, |
Peter Tyser | 2fb2604 | 2009-01-27 18:03:12 -0600 | [diff] [blame] | 827 | "QUICC Engine commands", |
Heiko Schocher | 9bd6444 | 2020-05-25 07:27:26 +0200 | [diff] [blame] | 828 | "fw <addr> [<length>] - Upload firmware binary at address <addr> to the QE,\n" |
Wolfgang Denk | a89c33d | 2009-05-24 17:06:54 +0200 | [diff] [blame] | 829 | "\twith optional length <length> verification." |
| 830 | ); |