Skip to content
Snippets Groups Projects
Commit ee44fb29 authored by Michael Jones's avatar Michael Jones Committed by Wolfgang Denk
Browse files

fpga: support FPP Cyclone configuration


Support FPGAs which use Fast Passive Parallel configuration

Signed-off-by: default avatarMichael Jones <michael.jones@matrix-vision.de>
parent 20a9f8e2
No related branches found
No related tags found
No related merge requests found
...@@ -63,6 +63,16 @@ int CYC2_load (Altera_desc * desc, void *buf, size_t bsize) ...@@ -63,6 +63,16 @@ int CYC2_load (Altera_desc * desc, void *buf, size_t bsize)
ret_val = CYC2_ps_load (desc, buf, bsize); ret_val = CYC2_ps_load (desc, buf, bsize);
break; break;
case fast_passive_parallel:
/* Fast Passive Parallel (FPP) and PS only differ in what is
* done in the write() callback. Use the existing PS load
* function for FPP, too.
*/
PRINTF ("%s: Launching Fast Passive Parallel Loader\n",
__FUNCTION__);
ret_val = CYC2_ps_load(desc, buf, bsize);
break;
/* Add new interface types here */ /* Add new interface types here */
default: default:
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment