Skip to content
Snippets Groups Projects
Commit 6ecbb7a3 authored by Wolfgang Denk's avatar Wolfgang Denk
Browse files

Fix a bug in the slave serial programming mode for the Xilinx

Spartan2/3 FPGAs. The old code used "< 0" on a "char" type to test if
the most significant bit was set, which did not work on any
architecture where "char" defaulted to be an unsigned type.

Based on a patch by Angelos Manousaridis <amanous@inaccessnetworks.com>

Signed-off-by: default avatarWolfgang Denk <wd@denx.de>
parent d08b7233
No related branches found
No related tags found
No related merge requests found
...@@ -516,7 +516,7 @@ static int Spartan2_ss_load (Xilinx_desc * desc, void *buf, size_t bsize) ...@@ -516,7 +516,7 @@ static int Spartan2_ss_load (Xilinx_desc * desc, void *buf, size_t bsize)
(*fn->clk) (FALSE, TRUE, cookie); (*fn->clk) (FALSE, TRUE, cookie);
CONFIG_FPGA_DELAY (); CONFIG_FPGA_DELAY ();
/* Write data */ /* Write data */
(*fn->wr) ((val < 0), TRUE, cookie); (*fn->wr) ((val & 0x80), TRUE, cookie);
CONFIG_FPGA_DELAY (); CONFIG_FPGA_DELAY ();
/* Assert the clock */ /* Assert the clock */
(*fn->clk) (TRUE, TRUE, cookie); (*fn->clk) (TRUE, TRUE, cookie);
......
...@@ -521,7 +521,7 @@ static int Spartan3_ss_load (Xilinx_desc * desc, void *buf, size_t bsize) ...@@ -521,7 +521,7 @@ static int Spartan3_ss_load (Xilinx_desc * desc, void *buf, size_t bsize)
(*fn->clk) (FALSE, TRUE, cookie); (*fn->clk) (FALSE, TRUE, cookie);
CONFIG_FPGA_DELAY (); CONFIG_FPGA_DELAY ();
/* Write data */ /* Write data */
(*fn->wr) ((val < 0), TRUE, cookie); (*fn->wr) ((val & 0x80), TRUE, cookie);
CONFIG_FPGA_DELAY (); CONFIG_FPGA_DELAY ();
/* Assert the clock */ /* Assert the clock */
(*fn->clk) (TRUE, TRUE, cookie); (*fn->clk) (TRUE, TRUE, cookie);
......
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