|
51 | 51 | #define XPAR_PSU_DDR_1_S_AXI_BASEADDR 0x800000000
|
52 | 52 | #define XPAR_PSU_DDR_1_S_AXI_HIGHADDR 0x87FFFFFFF
|
53 | 53 |
|
54 |
| -/* Clocking */ |
55 |
| -#define CORTEXA53_0_CPU_CLK_FREQ_HZ 1199880127 |
56 |
| -#define CORTEXA53_0_TIMESTAMP_CLK_FREQ 99990005 |
57 |
| -#define UART_MASTER_CLOCK 99990005 |
58 |
| -#define GQSPI_CLK_FREQ_HZ 124987511 |
59 |
| - |
60 | 54 | /* IOP System-level Control */
|
61 | 55 | #define IOU_SLCR_BASSE 0xFF180000
|
62 |
| -#define IOU_TAPDLY_BYPASS (*((volatile uint32_t*)(IOU_SLCR_BASSE + 0x390))) |
| 56 | +#define IOU_TAPDLY_BYPASS_ADDR (IOU_SLCR_BASSE + 0x390) |
| 57 | +#define IOU_TAPDLY_BYPASS (*((volatile uint32_t*)IOU_TAPDLY_BYPASS_ADDR)) |
63 | 58 | #define IOU_TAPDLY_BYPASS_LQSPI_RX (1UL << 2) /* LQSPI Tap Delay Enable on Rx Clock signal. 0: enable. 1: disable (bypass tap delay). */
|
64 | 59 |
|
65 | 60 | /* QSPI bare-metal driver */
|
|
186 | 181 | #define GQSPIDMA_ISR_ALL_MASK 0xFEU
|
187 | 182 |
|
188 | 183 | /* QSPI Configuration (bare-metal only) */
|
| 184 | + |
| 185 | +#ifndef GQSPI_CLK_REF |
| 186 | +#define GQSPI_CLK_REF 125000000 /* QSPI Reference Clock */ |
| 187 | +#endif |
189 | 188 | #ifndef GQSPI_CLK_DIV
|
190 |
| -#define GQSPI_CLK_DIV 2 /* (CLK (300MHz) / (2 << DIV) = BUS): 0=DIV2, 1=DIV4, 2=DIV8 */ |
| 189 | +#define GQSPI_CLK_DIV 2 /* (QSPI_REF_CLK (125MHZ) / (2 << DIV) = BUS): 0=DIV2, 1=DIV4, 2=DIV8 */ |
191 | 190 | #endif
|
192 | 191 | #define GQSPI_CS_ASSERT_CLOCKS 5 /* CS Setup Time (tCSS) - num of clock cycles foes in IMM */
|
193 | 192 | #define GQSPI_FIFO_WORD_SZ 4
|
|
221 | 220 |
|
222 | 221 |
|
223 | 222 | /* Flash Parameters:
|
224 |
| - * Micron Serial NOR Flash Memory 64KB Sector Erase MT25QU512ABB |
225 |
| - * Stacked device (two 512Mb (64MB)) |
226 |
| - * Dual Parallel so total addressable size is double |
| 223 | + * Micron Serial NOR Flash Memory 4K Sector Erase MT25QU512ABB |
| 224 | + * ZCU102 uses dual Parallel (stacked device 2*64MB) |
| 225 | + * MT25QU512 - Read FlashID: 20 BB 20 (64MB) |
| 226 | + * MT25QU01G - Read FlashID: 20 BB 21 (128MB) |
| 227 | + * MT25QU02G - Read FlashID: 20 BB 22 (256MB) |
227 | 228 | */
|
228 |
| -#ifndef FLASH_DEVICE_SIZE |
229 |
| - #ifdef ZCU102 |
230 |
| - /* 64*2 (dual parallel) = 128MB */ |
231 |
| - #define FLASH_DEVICE_SIZE (2 * 64 * 1024 * 1024) /* MT25QU512ABB */ |
232 |
| - #else |
233 |
| - /* 128*2 (dual parallel) = 256MB */ |
234 |
| - #define FLASH_DEVICE_SIZE (2 * 128 * 1024 * 1024) /* MT25QU01GBBB */ |
235 |
| - #endif |
236 |
| -#endif |
237 | 229 | #ifndef FLASH_PAGE_SIZE
|
238 |
| - #ifdef ZCU102 |
239 |
| - /* MT25QU512ABB - Read FlashID: 20 BB 20 */ |
240 |
| - #define FLASH_PAGE_SIZE 256 |
241 |
| - #else |
242 |
| - /* MT25QU01GBBB - Read FlashID: 20 BB 21 */ |
| 230 | + #if defined(GQPI_USE_DUAL_PARALLEL) && GQPI_USE_DUAL_PARALLEL == 1 |
| 231 | + /* each flash page size is 256 bytes, for dual parallel double it */ |
243 | 232 | #define FLASH_PAGE_SIZE 512
|
| 233 | + #else |
| 234 | + #define FLASH_PAGE_SIZE 256 |
244 | 235 | #endif
|
245 | 236 | #endif
|
246 |
| -#define FLASH_NUM_SECTORS (FLASH_DEVICE_SIZE/WOLFBOOT_SECTOR_SIZE) |
247 | 237 |
|
248 | 238 |
|
249 | 239 | /* Flash Commands */
|
|
370 | 360 | #define DEBUG_UART_BASE ZYNQMP_UART0_BASE
|
371 | 361 | #endif
|
372 | 362 |
|
| 363 | +#ifndef UART_CLK_REF |
| 364 | + #define UART_CLK_REF 100000000 |
| 365 | +#endif |
| 366 | + |
373 | 367 | #ifndef DEBUG_UART_BAUD
|
374 | 368 | #define DEBUG_UART_BAUD 115200
|
375 | 369 | #define DEBUG_UART_DIV 6
|
|
0 commit comments