[U-Boot] [PATCH] spi: kirkwood: add orion-spi compatible string

Michael Walle michael at walle.cc
Mon Jul 9 18:52:11 UTC 2018


Am 2018-05-08 00:54, schrieb Chris Packham:
> This matches the compatible string used by the Linux kernel. This will
> allow u-boot to use the same device tree files.

This patch is still missing to make SPI on kirkwoods work. Is there 
anything missing which prevents it from being applied?

-michael

> 
> Signed-off-by: Chris Packham <judge.packham at gmail.com>
> ---
> This applies on top of Jagan's series
> http://patchwork.ozlabs.org/project/uboot/list/?series=33927
> 
>  drivers/spi/kirkwood_spi.c | 8 ++++++++
>  1 file changed, 8 insertions(+)
> 
> diff --git a/drivers/spi/kirkwood_spi.c b/drivers/spi/kirkwood_spi.c
> index 036fc36b8329..6a5ab8a1cba4 100644
> --- a/drivers/spi/kirkwood_spi.c
> +++ b/drivers/spi/kirkwood_spi.c
> @@ -226,6 +226,10 @@ static int mvebu_spi_ofdata_to_platdata(struct
> udevice *bus)
>  	return 0;
>  }
> 
> +static const struct mvebu_spi_dev orion_spi_dev_data = {
> +	.is_errata_50mhz_ac = false,
> +};
> +
>  static const struct mvebu_spi_dev armada_xp_spi_dev_data = {
>  	.is_errata_50mhz_ac = false,
>  };
> @@ -239,6 +243,10 @@ static const struct mvebu_spi_dev
> armada_380_spi_dev_data = {
>  };
> 
>  static const struct udevice_id mvebu_spi_ids[] = {
> +	{
> +		.compatible = "marvell,orion-spi",
> +		.data = (ulong)&orion_spi_dev_data
> +	},
>  	{
>  		.compatible = "marvell,armada-375-spi",
>  		.data = (ulong)&armada_375_spi_dev_data


More information about the U-Boot mailing list