Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
F
FPGA Configuration Space
Manage
Activity
Members
Labels
Plan
Issues
0
Issue boards
Milestones
Wiki
Code
Merge requests
1
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
FPGA Configuration Space
Commits
b3004df6
Commit
b3004df6
authored
13 years ago
by
Manohar Vanga
Browse files
Options
Downloads
Patches
Plain Diff
simulation: clean up bus registration loop
Signed-off-by:
Manohar Vanga
<
manohar.vanga@cern.ch
>
parent
da6bed9b
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
simulation/wishbone.c
+29
-23
29 additions, 23 deletions
simulation/wishbone.c
with
29 additions
and
23 deletions
simulation/wishbone.c
+
29
−
23
View file @
b3004df6
...
...
@@ -113,6 +113,27 @@ void wb_unregister_driver(struct wb_driver *driver)
}
EXPORT_SYMBOL
(
wb_unregister_driver
);
static
struct
wb_device
*
wb_get_next_device
(
struct
wb_bus
*
bus
,
uint64_t
wb_ptr
)
{
struct
sdwb_wbd
wbd
;
struct
wb_device
*
wbdev
;
memcpy_from_wb
(
bus
,
wb_ptr
,
(
void
*
)
&
wbd
,
sizeof
(
struct
sdwb_wbd
));
if
(
wbd
.
wbd_magic
!=
SDWB_WBD_MAGIC
)
return
NULL
;
wbdev
=
kzalloc
(
sizeof
(
struct
wb_device
),
GFP_KERNEL
);
if
(
!
wbdev
)
return
NULL
;
memcpy
(
&
wbdev
->
wbd
,
&
wbd
,
sizeof
(
struct
sdwb_wbd
));
wbdev
->
bus
=
bus
;
return
wbdev
;
}
/*
* Register a Wishbone bus. All devices on the bus will automatically
* be scanned and registered based on the SDWB specification
...
...
@@ -120,14 +141,14 @@ EXPORT_SYMBOL(wb_unregister_driver);
int
wb_register_bus
(
struct
wb_bus
*
bus
)
{
int
ret
;
int
i
=
0
;
u
int
64_t
wbd_ptr
;
struct
sdwb_head
head
;
struct
sdwb_wbid
wbid
;
struct
sdwb_wbd
wbd
;
struct
wb_device
*
wbdev
;
struct
wb_device
*
next
;
INIT_LIST_HEAD
(
&
bus
->
devices
);
mutex_init
(
&
bus
->
dev_lock
);
/*
* Scan wb memory and register devices here. Remember to set the
...
...
@@ -148,30 +169,18 @@ int wb_register_bus(struct wb_bus *bus)
pr_info
(
KBUILD_MODNAME
": found sdwb bistream: 0x%llx
\n
"
,
wbid
.
bstream_type
);
memcpy_from_wb
(
bus
,
head
.
wbd_address
,
(
void
*
)
&
wbd
,
sizeof
(
struct
sdwb_wbd
));
wbd_ptr
=
head
.
wbd_address
;
while
(
wbd
.
wbd_magic
==
SDWB_WBD_MAGIC
)
{
wbdev
=
kzalloc
(
sizeof
(
struct
wb_device
),
GFP_KERNEL
);
if
(
!
wbdev
)
{
ret
=
-
ENOMEM
;
goto
err_wbdev_alloc
;
}
mutex_init
(
&
bus
->
dev_lock
);
memcpy
(
&
wbdev
->
wbd
,
&
wbd
,
sizeof
(
struct
sdwb_wbd
));
wbdev
->
bus
=
bus
;
while
((
wbdev
=
wb_get_next_device
(
bus
,
wbd_ptr
)))
{
if
(
wb_register_device
(
wbdev
)
<
0
)
{
ret
=
-
E
FAULT
;
ret
=
-
E
NODEV
;
goto
err_wbdev_register
;
}
mutex_lock
(
&
bus
->
dev_lock
);
list_add
(
&
wbdev
->
list
,
&
bus
->
devices
);
bus
->
ndev
++
;
mutex_unlock
(
&
bus
->
dev_lock
);
memcpy_from_wb
(
bus
,
head
.
wbd_address
+
sizeof
(
struct
sdwb_wbd
)
*
i
,
(
void
*
)
&
wbd
,
sizeof
(
struct
sdwb_wbd
));
wbd_ptr
+=
sizeof
(
struct
sdwb_wbd
);
}
pr_info
(
KBUILD_MODNAME
...
...
@@ -182,15 +191,12 @@ int wb_register_bus(struct wb_bus *bus)
err_wbdev_register:
kfree
(
wbdev
);
err_wbdev_alloc:
mutex_lock
(
&
bus
->
dev_lock
);
list_for_each_entry_safe
(
wbdev
,
next
,
&
bus
->
devices
,
list
)
{
list_del
(
&
wbdev
->
list
);
wb_unregister_device
(
wbdev
);
kfree
(
wbdev
);
}
bus
->
ndev
=
0
;
mutex_unlock
(
&
bus
->
dev_lock
);
return
ret
;
}
...
...
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