You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
26 lines
683 B
26 lines
683 B
/* |
|
* Copyright 2020 NXP |
|
* |
|
* SPDX-License-Identifier: Apache-2.0 |
|
*/ |
|
|
|
#include <device.h> |
|
#include <sys/types.h> |
|
#include <fsl_flexspi.h> |
|
|
|
bool memc_flexspi_is_running_xip(const struct device *dev); |
|
|
|
int memc_flexspi_update_lut(const struct device *dev, uint32_t index, |
|
const uint32_t *cmd, uint32_t count); |
|
|
|
int memc_flexspi_set_device_config(const struct device *dev, |
|
const flexspi_device_config_t *device_config, |
|
flexspi_port_t port); |
|
|
|
int memc_flexspi_reset(const struct device *dev); |
|
|
|
int memc_flexspi_transfer(const struct device *dev, |
|
flexspi_transfer_t *transfer); |
|
|
|
void *memc_flexspi_get_ahb_address(const struct device *dev, |
|
flexspi_port_t port, off_t offset);
|
|
|