Skip to content

Commit 9dc1ef4

Browse files
committed
Allow build-time adjustment of QSPI reference clock and divisor. Eliminate ZCU102 macro (not needed). Add QSPI init message with ref clock, divisor, bus and IO mode (Poll or DMA).
1 parent 0bda487 commit 9dc1ef4

File tree

3 files changed

+39
-36
lines changed

3 files changed

+39
-36
lines changed

config/examples/zynqmp.config

+4-4
Original file line numberDiff line numberDiff line change
@@ -3,9 +3,6 @@ TARGET?=zynq
33

44
WOLFBOOT_VERSION?=0
55

6-
# Default to ZCU102 as hardware platform (QSPI sizes)
7-
CFLAGS_EXTRA+=-DZCU102
8-
96
# RSA 4096-bit with SHA3-384
107
SIGN?=RSA4096
118
HASH?=SHA3
@@ -80,7 +77,10 @@ CROSS_COMPILE=aarch64-none-elf-
8077
# Speed up reads from flash by using larger blocks
8178
CFLAGS_EXTRA+=-DWOLFBOOT_SHA_BLOCK_SIZE=4096
8279

83-
# QSPI Clock at 0=150MHz, 1=75MHz, 2=37.5MHz (default)
80+
# QSPI Reference Clock: Ref (125MHz default)
81+
#CFLAGS_EXTRA+=-DGQSPI_CLK_REF=300000000
82+
83+
# QSPI Bus Divisor: (2 << div) = BUS (0=div2, 1=div4, 2=div8)
8484
#CFLAGS_EXTRA+=-DGQSPI_CLK_DIV=0
8585

8686
# QSPI force IO mode (default is faster DMA mode)

hal/zynq.c

+15-6
Original file line numberDiff line numberDiff line change
@@ -44,7 +44,7 @@
4444
/* Xilinx BSP Driver */
4545
#include "xqspipsu.h"
4646
#ifndef QSPI_DEVICE_ID
47-
#define QSPI_DEVICE_ID XPAR_XQSPIPSU_0_DEVICE_ID
47+
#define QSPI_DEVICE_ID XPAR_XQSPIPSU_0_DEVICE_ID
4848
#endif
4949
#ifndef QSPI_CLK_PRESACALE
5050
#define QSPI_CLK_PRESACALE XQSPIPSU_CLK_PRESCALE_8
@@ -104,7 +104,7 @@ void uart_init(void)
104104
ZYNQMP_UART_RXTOUT = 0;
105105

106106
/* baud (115200) = master clk / (BR_GEN * (BR_DIV + 1)) */
107-
ZYNQMP_UART_BR_GEN = UART_MASTER_CLOCK / (DEBUG_UART_BAUD * (DEBUG_UART_DIV+1));
107+
ZYNQMP_UART_BR_GEN = UART_CLK_REF / (DEBUG_UART_BAUD * (DEBUG_UART_DIV+1));
108108
ZYNQMP_UART_BR_DIV = DEBUG_UART_DIV;
109109

110110
/* Reset TX/RX */
@@ -843,6 +843,16 @@ void qspi_init(uint32_t cpu_clock, uint32_t flash_freq)
843843
}
844844
#else
845845
/* QSPI bare-metal driver */
846+
wolfBoot_printf("QSPI Init: Ref=%dMHz, Div=%d, Bus=%d, IO=%s\n",
847+
GQSPI_CLK_REF/1000000,
848+
(2 << GQSPI_CLK_DIV),
849+
(GQSPI_CLK_REF / (2 << GQSPI_CLK_DIV)),
850+
#ifdef GQSPI_MODE_IO
851+
"Poll"
852+
#else
853+
"DMA"
854+
#endif
855+
);
846856

847857
/* Disable Linear Mode in case FSBL enabled it */
848858
LQSPI_EN = 0;
@@ -872,21 +882,20 @@ void qspi_init(uint32_t cpu_clock, uint32_t flash_freq)
872882
reg_cfg &= ~(GQSPI_CFG_CLK_POL | GQSPI_CFG_CLK_PH); /* Use POL=0,PH=0 */
873883
GQSPI_CFG = reg_cfg;
874884

875-
#if GQSPI_CLK_DIV >= 1 /* 125/4=31.25MHz */
885+
#if (GQSPI_CLK_REF / (2 << GQSPI_CLK_DIV)) <= 40000000 /* 40MHz */
876886
/* At <40 MHz, the Quad-SPI controller should be in non-loopback mode with
877887
* the clock and data tap delays bypassed. */
878888
IOU_TAPDLY_BYPASS |= IOU_TAPDLY_BYPASS_LQSPI_RX;
879889
GQSPI_LPBK_DLY_ADJ = 0;
880890
GQSPI_DATA_DLY_ADJ = 0;
881-
#elif GQSPI_CLK_DIV >= 0 /* 125/2 = 62.5MHz */
891+
#elif (GQSPI_CLK_REF / (2 << GQSPI_CLK_DIV)) <= 100000000 /* 100MHz */
882892
/* At <100 MHz, the Quad-SPI controller should be in clock loopback mode
883893
* with the clock tap delay bypassed, but the data tap delay enabled. */
884894
IOU_TAPDLY_BYPASS |= IOU_TAPDLY_BYPASS_LQSPI_RX;
885895
GQSPI_LPBK_DLY_ADJ = GQSPI_LPBK_DLY_ADJ_USE_LPBK;
886896
GQSPI_DATA_DLY_ADJ = (GQSPI_DATA_DLY_ADJ_USE_DATA_DLY |
887897
GQSPI_DATA_DLY_ADJ_DATA_DLY_ADJ(2));
888-
#endif
889-
#if 0
898+
#elif (GQSPI_CLK_REF / (2 << GQSPI_CLK_DIV)) <= 150000000 /* 150MHz */
890899
/* At <150 MHz, only the generic controller can be used.
891900
* The generic controller should be in clock loopback mode and the clock
892901
* tap delay enabled, but the data tap delay disabled. */

hal/zynq.h

+20-26
Original file line numberDiff line numberDiff line change
@@ -51,15 +51,10 @@
5151
#define XPAR_PSU_DDR_1_S_AXI_BASEADDR 0x800000000
5252
#define XPAR_PSU_DDR_1_S_AXI_HIGHADDR 0x87FFFFFFF
5353

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-
6054
/* IOP System-level Control */
6155
#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))
6358
#define IOU_TAPDLY_BYPASS_LQSPI_RX (1UL << 2) /* LQSPI Tap Delay Enable on Rx Clock signal. 0: enable. 1: disable (bypass tap delay). */
6459

6560
/* QSPI bare-metal driver */
@@ -186,8 +181,12 @@
186181
#define GQSPIDMA_ISR_ALL_MASK 0xFEU
187182

188183
/* QSPI Configuration (bare-metal only) */
184+
185+
#ifndef GQSPI_CLK_REF
186+
#define GQSPI_CLK_REF 125000000 /* QSPI Reference Clock */
187+
#endif
189188
#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 */
191190
#endif
192191
#define GQSPI_CS_ASSERT_CLOCKS 5 /* CS Setup Time (tCSS) - num of clock cycles foes in IMM */
193192
#define GQSPI_FIFO_WORD_SZ 4
@@ -221,29 +220,20 @@
221220

222221

223222
/* 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)
227228
*/
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
237229
#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 */
243232
#define FLASH_PAGE_SIZE 512
233+
#else
234+
#define FLASH_PAGE_SIZE 256
244235
#endif
245236
#endif
246-
#define FLASH_NUM_SECTORS (FLASH_DEVICE_SIZE/WOLFBOOT_SECTOR_SIZE)
247237

248238

249239
/* Flash Commands */
@@ -370,6 +360,10 @@
370360
#define DEBUG_UART_BASE ZYNQMP_UART0_BASE
371361
#endif
372362

363+
#ifndef UART_CLK_REF
364+
#define UART_CLK_REF 100000000
365+
#endif
366+
373367
#ifndef DEBUG_UART_BAUD
374368
#define DEBUG_UART_BAUD 115200
375369
#define DEBUG_UART_DIV 6

0 commit comments

Comments
 (0)