mirror of
https://mirrors.bfsu.edu.cn/git/linux.git
synced 2024-11-11 04:18:39 +08:00
spi: cadence-qspi: add mobileye,eyeq5-ospi compatible
Declare a new mobileye,eyeq5-ospi compatible. Signed-off-by: Théo Lebrun <theo.lebrun@bootlin.com> Link: https://lore.kernel.org/r/20240423-cdns-qspi-mbly-v4-4-3d2a7b535ad0@bootlin.com Signed-off-by: Mark Brown <broonie@kernel.org>
This commit is contained in:
parent
c188739637
commit
47766799f5
@ -2055,6 +2055,12 @@ static const struct cqspi_driver_platdata pensando_cdns_qspi = {
|
|||||||
.quirks = CQSPI_NEEDS_APB_AHB_HAZARD_WAR | CQSPI_DISABLE_DAC_MODE,
|
.quirks = CQSPI_NEEDS_APB_AHB_HAZARD_WAR | CQSPI_DISABLE_DAC_MODE,
|
||||||
};
|
};
|
||||||
|
|
||||||
|
static const struct cqspi_driver_platdata mobileye_eyeq5_ospi = {
|
||||||
|
.hwcaps_mask = CQSPI_SUPPORTS_OCTAL,
|
||||||
|
.quirks = CQSPI_DISABLE_DAC_MODE | CQSPI_NO_SUPPORT_WR_COMPLETION |
|
||||||
|
CQSPI_RD_NO_IRQ,
|
||||||
|
};
|
||||||
|
|
||||||
static const struct of_device_id cqspi_dt_ids[] = {
|
static const struct of_device_id cqspi_dt_ids[] = {
|
||||||
{
|
{
|
||||||
.compatible = "cdns,qspi-nor",
|
.compatible = "cdns,qspi-nor",
|
||||||
@ -2088,6 +2094,10 @@ static const struct of_device_id cqspi_dt_ids[] = {
|
|||||||
.compatible = "amd,pensando-elba-qspi",
|
.compatible = "amd,pensando-elba-qspi",
|
||||||
.data = &pensando_cdns_qspi,
|
.data = &pensando_cdns_qspi,
|
||||||
},
|
},
|
||||||
|
{
|
||||||
|
.compatible = "mobileye,eyeq5-ospi",
|
||||||
|
.data = &mobileye_eyeq5_ospi,
|
||||||
|
},
|
||||||
{ /* end of table */ }
|
{ /* end of table */ }
|
||||||
};
|
};
|
||||||
|
|
||||||
|
Loading…
Reference in New Issue
Block a user