mirror of
https://github.com/u-boot/u-boot.git
synced 2025-05-08 10:39:08 +00:00
fpga: Add support to load partial bitstreams
Added support to load partial bitstreams. The partial bitstreams can be loaded using the below commands Commands: fpga loadp <dev> <addr> <size> fpga loadbp <dev> <addr> <size> The full bit streams can be loaded using the old commands(fpga load and fpga loadb). Signed-off-by: Siva Durga Prasad Paladugu <sivadur@xilinx.com> Signed-off-by: Michal Simek <michal.simek@xilinx.com>
This commit is contained in:
parent
7a78bd2679
commit
67193864bc
3 changed files with 43 additions and 0 deletions
|
@ -38,6 +38,7 @@ typedef struct { /* typedef fpga_desc */
|
|||
|
||||
typedef enum {
|
||||
BIT_FULL = 0,
|
||||
BIT_PARTIAL,
|
||||
} bitstream_type;
|
||||
|
||||
/* root function definitions */
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue