Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
W
White Rabbit Switch - Software
Manage
Activity
Members
Labels
Plan
Issues
87
Issue boards
Milestones
Wiki
Code
Merge requests
4
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Deploy
Releases
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Projects
White Rabbit Switch - Software
Commits
4151c36c
Commit
4151c36c
authored
9 years ago
by
Grzegorz Daniluk
Committed by
Adam Wujek
9 years ago
Browse files
Options
Downloads
Patches
Plain Diff
userspace/tools: load-virtex now uses shw_udelay() from libwr instead of a custom function
parent
90adc3e5
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
userspace/tools/load-virtex.c
+8
-17
8 additions, 17 deletions
userspace/tools/load-virtex.c
with
8 additions
and
17 deletions
userspace/tools/load-virtex.c
+
8
−
17
View file @
4151c36c
...
...
@@ -26,6 +26,8 @@
#include
<mach/at91_ssc.h>
#include
<mach/at91_pmc.h>
#include
<libwr/util.h>
#ifndef ARRAY_SIZE
#define ARRAY_SIZE(a) (sizeof(a)/sizeof(a[0]))
#endif
...
...
@@ -86,17 +88,6 @@ static int pio_get(int port, int bit)
#define FPGA_RESET PIOA, 5 //out
static
void
ud
(
int
usecs
)
/* horrible udelay thing without scheduling */
{
struct
timespec
tv1
,
tv2
;
clock_gettime
(
CLOCK_MONOTONIC
,
&
tv1
);
do
clock_gettime
(
CLOCK_MONOTONIC
,
&
tv2
);
while
((
tv2
.
tv_sec
-
tv1
.
tv_sec
)
*
1000
*
1000
+
(
tv2
.
tv_nsec
-
tv1
.
tv_nsec
)
/
1000
<
usecs
);
}
/* being a lazy bastard, I fork a process to avoid free, munmap etc */
static
int
load_fpga_child
(
char
*
fname
)
{
...
...
@@ -213,7 +204,7 @@ static int load_fpga_child(char *fname)
pio_set
(
PIO_PER
,
LED1
);
pio_set
(
PIO_OER
,
LED1
);
pio_set
(
PIO_CODR
,
LED1
);
ud
(
100
*
1000
);
shw_udelay
(
100
*
1000
);
pio_set
(
PIO_SODR
,
LED0
);
pio_set
(
PIO_SODR
,
LED1
);
...
...
@@ -227,7 +218,7 @@ static int load_fpga_child(char *fname)
/* Then, wait little and then check init_b must go low */
for
(
i
=
0
;
i
<
50
;
i
++
)
{
ud
(
10
);
shw_udelay
(
10
);
if
(
!
pio_get
(
INITB
))
break
;
}
...
...
@@ -248,7 +239,7 @@ static int load_fpga_child(char *fname)
/* raise program_b, and initb must go high, too */
pio_set
(
PIO_SODR
,
PROGRAMB
);
for
(
i
=
0
;
i
<
50
;
i
++
)
{
ud
(
10
);
shw_udelay
(
10
);
if
(
pio_get
(
INITB
))
break
;
}
...
...
@@ -259,7 +250,7 @@ static int load_fpga_child(char *fname)
//exit(1);
}
ud
(
1000
);
/* wait for a short while before commencing the configuration - otherwise
shw_udelay
(
1000
);
/* wait for a short while before commencing the configuration - otherwise
the FPGA might not assert the DONE flag correctly */
/* Then write one byte at a time */
...
...
@@ -286,7 +277,7 @@ static int load_fpga_child(char *fname)
/* Then, wait a little and then check done must go high */
for
(
i
=
0
;
i
<
500
;
i
++
)
{
ud
(
100
);
shw_udelay
(
100
);
if
(
!
pio_get
(
DONE
))
break
;
}
...
...
@@ -298,7 +289,7 @@ static int load_fpga_child(char *fname)
/* PA5 must go low then high */
pio_set
(
PIO_CODR
,
FPGA_RESET
);
ud
(
10
);
shw_udelay
(
10
);
pio_set
(
PIO_SODR
,
FPGA_RESET
);
exit
(
0
);
}
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment