mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-11-15 01:17:39 +00:00
063195d41a
Avoid the following build errors after the device tree sync: drivers/spi/mxs_spi.c: In function ‘mxs_spi_probe’: drivers/spi/mxs_spi.c:327:25: error: ‘struct dtd_fsl_imx23_spi’ has no member named ‘spi_max_frequency’ 327 | priv->max_freq = dtplat->spi_max_frequency; | ^~ drivers/spi/mxs_spi.c:328:23: error: ‘struct dtd_fsl_imx23_spi’ has no member named ‘num_cs’ 328 | plat->num_cs = dtplat->num_cs; | ^~ Signed-off-by: Marcel Ziswiler <marcel.ziswiler@toradex.com>
48 lines
637 B
Text
48 lines
637 B
Text
// SPDX-License-Identifier: GPL-2.0+
|
|
/*
|
|
* Copyright 2019
|
|
* Lukasz Majewski, DENX Software Engineering, lukma@denx.de
|
|
*
|
|
* SPDX-License-Identifier: GPL-2.0+ or X11
|
|
*/
|
|
|
|
/*
|
|
* The minimal augmentation DTS U-Boot file to allow eMMC driver
|
|
* configuration in SPL for falcon boot.
|
|
*/
|
|
#include "imx28-u-boot.dtsi"
|
|
/ {
|
|
apb@80000000 {
|
|
u-boot,dm-spl;
|
|
|
|
apbh@80000000 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
apbx@80040000 {
|
|
u-boot,dm-spl;
|
|
};
|
|
};
|
|
};
|
|
|
|
&clks {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&gpio0 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&pinctrl {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&ssp0 {
|
|
u-boot,dm-spl;
|
|
};
|
|
|
|
&ssp3 {
|
|
num-cs = <2>;
|
|
spi-max-frequency = <40000000>;
|
|
u-boot,dm-spl;
|
|
};
|