Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
S
SDB - Self-describing Bus
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
0
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
SDB - Self-describing Bus
Commits
c4933f3b
Commit
c4933f3b
authored
10 years ago
by
Alessandro Rubini
Browse files
Options
Downloads
Patches
Plain Diff
sdbfs/lib: new functions, to find FPGA cores by name or ID
Signed-off-by:
Alessandro Rubini
<
rubini@gnudd.com
>
ed
parent
3c5fc657
Branches
Branches containing commit
Tags
Tags containing commit
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
sdbfs/lib/glue.c
+28
-0
28 additions, 0 deletions
sdbfs/lib/glue.c
sdbfs/lib/libsdbfs.h
+2
-0
2 additions, 0 deletions
sdbfs/lib/libsdbfs.h
with
30 additions
and
0 deletions
sdbfs/lib/glue.c
+
28
−
0
View file @
c4933f3b
...
...
@@ -232,3 +232,31 @@ int sdbfs_close(struct sdbfs *fs)
return
0
;
}
/* to "find" a device, open it, get the current offset, then close */
unsigned
long
sdbfs_find_name
(
struct
sdbfs
*
fs
,
const
char
*
name
)
{
unsigned
long
offset
;
int
ret
;
ret
=
sdbfs_open_name
(
fs
,
name
);
if
(
ret
<
0
)
return
(
unsigned
long
)
ret
;
offset
=
fs
->
f_offset
;
sdbfs_close
(
fs
);
return
offset
;
}
unsigned
long
sdbfs_find_id
(
struct
sdbfs
*
fs
,
uint64_t
vid
,
uint32_t
did
)
{
unsigned
long
offset
;
int
ret
;
ret
=
sdbfs_open_id
(
fs
,
vid
,
did
);
if
(
ret
<
0
)
return
(
unsigned
long
)
ret
;
offset
=
fs
->
f_offset
;
sdbfs_close
(
fs
);
return
offset
;
}
This diff is collapsed.
Click to expand it.
sdbfs/lib/libsdbfs.h
+
2
−
0
View file @
c4933f3b
...
...
@@ -58,6 +58,8 @@ struct sdbfs {
int
sdbfs_dev_create
(
struct
sdbfs
*
fs
,
int
verbose
);
int
sdbfs_dev_destroy
(
struct
sdbfs
*
fs
);
struct
sdbfs
*
sdbfs_dev_find
(
const
char
*
name
);
unsigned
long
sdbfs_find_name
(
struct
sdbfs
*
fs
,
const
char
*
name
);
unsigned
long
sdbfs_find_id
(
struct
sdbfs
*
fs
,
uint64_t
vid
,
uint32_t
did
);
int
sdbfs_open_name
(
struct
sdbfs
*
fs
,
const
char
*
name
);
int
sdbfs_open_id
(
struct
sdbfs
*
fs
,
uint64_t
vid
,
uint32_t
did
);
int
sdbfs_close
(
struct
sdbfs
*
fs
);
...
...
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