mirror of
https://github.com/zephyrproject-rtos/zephyr
synced 2025-08-03 15:16:51 +00:00
This device driver supports ISSI is25w/lx032/64 series flash. Only extended SPI mode(1s-1s-1s, 1s-8s-8s, 1s-1s-8s) is implemented. Signed-off-by: Swift Tian <swift.tian@ambiq.com>
37 lines
508 B
Plaintext
37 lines
508 B
Plaintext
# SPDX-License-Identifier: Apache-2.0
|
|
#
|
|
# Copyright (c) 2025 Ambiq Micro Inc.
|
|
|
|
if BOARD_APOLLO510_EVB
|
|
|
|
config SYS_CLOCK_HW_CYCLES_PER_SEC
|
|
default 32768 if AMBIQ_STIMER_TIMER
|
|
default 96000000 if CORTEX_M_SYSTICK
|
|
|
|
config LOG_BACKEND_SWO_FREQ_HZ
|
|
default 1000000
|
|
depends on LOG_BACKEND_SWO
|
|
|
|
if MSPI
|
|
|
|
config MSPI_INIT_PRIORITY
|
|
default 40
|
|
|
|
endif # MSPI
|
|
|
|
if MEMC
|
|
|
|
config MEMC_INIT_PRIORITY
|
|
default 50
|
|
|
|
endif # MEMC
|
|
|
|
if FLASH
|
|
|
|
config FLASH_INIT_PRIORITY
|
|
default 50
|
|
|
|
endif # FLASH
|
|
|
|
endif # BOARD_APOLLO510_EVB
|