mirror of
https://github.com/Fishwaldo/u-boot.git
synced 2025-03-21 06:31:31 +00:00
fpga: support FPP Cyclone configuration
Support FPGAs which use Fast Passive Parallel configuration Signed-off-by: Michael Jones <michael.jones@matrix-vision.de>
This commit is contained in:
parent
20a9f8e254
commit
ee44fb298d
1 changed files with 10 additions and 0 deletions
|
@ -63,6 +63,16 @@ int CYC2_load (Altera_desc * desc, void *buf, size_t bsize)
|
|||
ret_val = CYC2_ps_load (desc, buf, bsize);
|
||||
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 */
|
||||
|
||||
default:
|
||||
|
|
Loading…
Add table
Reference in a new issue