Skip to content
GitLab
Explore
Sign in
Register
Primary navigation
Search or go to…
Project
SoCDebug Tech
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Deploy
Releases
Package registry
Model registry
Operate
Terraform modules
Monitor
Incidents
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
Show more breadcrumbs
SoCLabs
SoCDebug Tech
Compare revisions
aa64ace1bb88e1c396f6bae6fb34de2af57a980f to 7572912a3cde67880b0579db6f2e970ebaf2002d
Compare revisions
Changes are shown as if the
source
revision was being merged into the
target
revision.
Learn more about comparing revisions.
Source
soclabs/socdebug_tech
Select target project
No results found
7572912a3cde67880b0579db6f2e970ebaf2002d
Select Git revision
Swap
Target
soclabs/socdebug_tech
Select target project
soclabs/socdebug_tech
1 result
aa64ace1bb88e1c396f6bae6fb34de2af57a980f
Select Git revision
Show changes
Only incoming changes from source
Include changes to target since source was created
Compare
Commits on Source (1)
fix ADP Upload command count reporting
· 7572912a
dwf1m12
authored
1 year ago
7572912a
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
controller/verilog/socdebug_adp_control.v
+1
-1
1 addition, 1 deletion
controller/verilog/socdebug_adp_control.v
with
1 addition
and
1 deletion
controller/verilog/socdebug_adp_control.v
View file @
7572912a
...
...
@@ -628,7 +628,7 @@ begin
else
begin
com_rx_ack
<=
1'b1
;
end
// extend stream request if not ready
ADP_UWRITE:
// Write word to Addr++
if
(
adp_bus_done
)
begin
// auto address++, count--
if
(
FNcount_down_zero_next
(
adp_count
))
begin
adp_state
<=
ADP_ECHOCMD
;
end
else
begin
adp_state
<=
ADP_UREADB
;
adp_bus_err
<=
adp_bus_err
|
HRESP_i
;
end
if
(
FNcount_down_zero_next
(
adp_count
))
begin
adp_size
<=
2'b10
;
adp_state
<=
ADP_ECHOCMD
;
end
else
begin
adp_state
<=
ADP_UREADB
;
adp_bus_err
<=
adp_bus_err
|
HRESP_i
;
end
end
else
begin
ADP_BUSWRITEINC_next
;
adp_count_dec
<=
1'b1
;
end
// extend request
// >>>>>>>>>>>>>>>> ADP BUS READ LOOP >>>>>>>>>>>>>>>>>>>>>>
...
...
This diff is collapsed.
Click to expand it.