mirror of
https://github.com/AsahiLinux/u-boot
synced 2024-12-21 10:43:06 +00:00
29 lines
473 B
Text
29 lines
473 B
Text
|
// SPDX-License-Identifier: GPL-2.0
|
||
|
/*
|
||
|
* Copyright 2022 Google LLC
|
||
|
*/
|
||
|
/dts-v1/;
|
||
|
|
||
|
/ {
|
||
|
description = "FIT image with FPGA bistream";
|
||
|
#address-cells = <1>;
|
||
|
|
||
|
images {
|
||
|
fpga-periph-1 {
|
||
|
description = "FPGA full bitstream";
|
||
|
data = /incbin/("../../../fpga.rbf");
|
||
|
type = "fpga";
|
||
|
arch = "arm";
|
||
|
compression = "none";
|
||
|
};
|
||
|
};
|
||
|
|
||
|
configurations {
|
||
|
default = "config-1";
|
||
|
config-1 {
|
||
|
description = "Boot with FPGA config";
|
||
|
fpga = "fpga-periph-1";
|
||
|
};
|
||
|
};
|
||
|
};
|