Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in
Toggle navigation
L
linux-davinci-2.6.23
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Redmine
Redmine
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Operations
Operations
Metrics
Environments
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
linux
linux-davinci-2.6.23
Commits
7991ec0d
Commit
7991ec0d
authored
Jun 03, 2008
by
吴智聪(John Wu)
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
kernel side soft reset bug fix
parent
762a79f1
Changes
1
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
arch/arm/mach-davinci/time.c
arch/arm/mach-davinci/time.c
+3
-3
No files found.
arch/arm/mach-davinci/time.c
View file @
7991ec0d
...
...
@@ -336,15 +336,15 @@ void davinci_watchdog_reset(void) {
u32
tgcr
,
wdtcr
,
base
=
DAVINCI_WDOG_BASE
;
/* disable, internal clock source */
davinci_writel
(
0
,
base
+
TCR
);
davinci_writel
(
0
,
base
+
T
G
CR
);
/* reset timer, set mode to 64-bit watchdog, and unreset */
tgcr
=
0
;
davinci_writel
(
tgcr
,
base
+
TCR
);
davinci_writel
(
tgcr
,
base
+
T
G
CR
);
tgcr
=
TGCR_TIMMODE_64BIT_WDOG
<<
TGCR_TIMMODE_SHIFT
;
tgcr
|=
(
TGCR_UNRESET
<<
TGCR_TIM12RS_SHIFT
)
|
(
TGCR_UNRESET
<<
TGCR_TIM34RS_SHIFT
);
davinci_writel
(
tgcr
,
base
+
TCR
);
davinci_writel
(
tgcr
,
base
+
T
G
CR
);
/* clear counter and period regs */
davinci_writel
(
0
,
base
+
TIM12
);
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment