Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
L
linux
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
Analytics
Analytics
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Commits
Issue Boards
Open sidebar
nexedi
linux
Commits
d58cc92b
Commit
d58cc92b
authored
Sep 27, 2010
by
Tony Lindgren
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'misc_2.6.37' of
git://git.pwsan.com/linux-2.6
into omap-for-linus
parents
b245f26f
78f26e87
Changes
3
Show whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
30 additions
and
31 deletions
+30
-31
arch/arm/mach-omap2/cm4xxx.c
arch/arm/mach-omap2/cm4xxx.c
+5
-4
arch/arm/mach-omap2/omap_hwmod.c
arch/arm/mach-omap2/omap_hwmod.c
+11
-6
arch/arm/plat-omap/omap_device.c
arch/arm/plat-omap/omap_device.c
+14
-21
No files found.
arch/arm/mach-omap2/cm4xxx.c
View file @
d58cc92b
...
...
@@ -43,7 +43,6 @@
* using separate functional clock
* 0x3 disabled: Module is disabled and cannot be accessed
*
* TODO: Need to handle module accessible in idle state
*/
int
omap4_cm_wait_module_ready
(
void
__iomem
*
clkctrl_reg
)
{
...
...
@@ -52,8 +51,10 @@ int omap4_cm_wait_module_ready(void __iomem *clkctrl_reg)
if
(
!
clkctrl_reg
)
return
0
;
omap_test_timeout
(((
__raw_readl
(
clkctrl_reg
)
&
OMAP4430_IDLEST_MASK
)
==
0
),
omap_test_timeout
((
((
__raw_readl
(
clkctrl_reg
)
&
OMAP4430_IDLEST_MASK
)
==
0
)
||
(((
__raw_readl
(
clkctrl_reg
)
&
OMAP4430_IDLEST_MASK
)
>>
OMAP4430_IDLEST_SHIFT
)
==
0x2
)),
MAX_MODULE_READY_TIME
,
i
);
return
(
i
<
MAX_MODULE_READY_TIME
)
?
0
:
-
EBUSY
;
...
...
arch/arm/mach-omap2/omap_hwmod.c
View file @
d58cc92b
...
...
@@ -777,12 +777,6 @@ static void _enable_sysc(struct omap_hwmod *oh)
_set_master_standbymode
(
oh
,
idlemode
,
&
v
);
}
if
(
sf
&
SYSC_HAS_AUTOIDLE
)
{
idlemode
=
(
oh
->
flags
&
HWMOD_NO_OCP_AUTOIDLE
)
?
0
:
1
;
_set_module_autoidle
(
oh
,
idlemode
,
&
v
);
}
/*
* XXX The clock framework should handle this, by
* calling into this code. But this must wait until the
...
...
@@ -797,6 +791,17 @@ static void _enable_sysc(struct omap_hwmod *oh)
/* If slave is in SMARTIDLE, also enable wakeup */
if
((
sf
&
SYSC_HAS_SIDLEMODE
)
&&
!
(
oh
->
flags
&
HWMOD_SWSUP_SIDLE
))
_enable_wakeup
(
oh
);
/*
* Set the autoidle bit only after setting the smartidle bit
* Setting this will not have any impact on the other modules.
*/
if
(
sf
&
SYSC_HAS_AUTOIDLE
)
{
idlemode
=
(
oh
->
flags
&
HWMOD_NO_OCP_AUTOIDLE
)
?
0
:
1
;
_set_module_autoidle
(
oh
,
idlemode
,
&
v
);
_write_sysconfig
(
v
,
oh
);
}
}
/**
...
...
arch/arm/plat-omap/omap_device.c
View file @
d58cc92b
...
...
@@ -290,12 +290,11 @@ static void _add_optional_clock_alias(struct omap_device *od,
*/
int
omap_device_count_resources
(
struct
omap_device
*
od
)
{
struct
omap_hwmod
*
oh
;
int
c
=
0
;
int
i
;
for
(
i
=
0
,
oh
=
*
od
->
hwmods
;
i
<
od
->
hwmods_cnt
;
i
++
,
oh
++
)
c
+=
omap_hwmod_count_resources
(
o
h
);
for
(
i
=
0
;
i
<
od
->
hwmods_cnt
;
i
++
)
c
+=
omap_hwmod_count_resources
(
o
d
->
hwmods
[
i
]
);
pr_debug
(
"omap_device: %s: counted %d total resources across %d "
"hwmods
\n
"
,
od
->
pdev
.
name
,
c
,
od
->
hwmods_cnt
);
...
...
@@ -322,12 +321,11 @@ int omap_device_count_resources(struct omap_device *od)
*/
int
omap_device_fill_resources
(
struct
omap_device
*
od
,
struct
resource
*
res
)
{
struct
omap_hwmod
*
oh
;
int
c
=
0
;
int
i
,
r
;
for
(
i
=
0
,
oh
=
*
od
->
hwmods
;
i
<
od
->
hwmods_cnt
;
i
++
,
oh
++
)
{
r
=
omap_hwmod_fill_resources
(
o
h
,
res
);
for
(
i
=
0
;
i
<
od
->
hwmods_cnt
;
i
++
)
{
r
=
omap_hwmod_fill_resources
(
o
d
->
hwmods
[
i
]
,
res
);
res
+=
r
;
c
+=
r
;
}
...
...
@@ -600,7 +598,6 @@ int omap_device_shutdown(struct platform_device *pdev)
{
int
ret
,
i
;
struct
omap_device
*
od
;
struct
omap_hwmod
*
oh
;
od
=
_find_by_pdev
(
pdev
);
...
...
@@ -613,8 +610,8 @@ int omap_device_shutdown(struct platform_device *pdev)
ret
=
_omap_device_deactivate
(
od
,
IGNORE_WAKEUP_LAT
);
for
(
i
=
0
,
oh
=
*
od
->
hwmods
;
i
<
od
->
hwmods_cnt
;
i
++
,
oh
++
)
omap_hwmod_shutdown
(
o
h
);
for
(
i
=
0
;
i
<
od
->
hwmods_cnt
;
i
++
)
omap_hwmod_shutdown
(
o
d
->
hwmods
[
i
]
);
od
->
_state
=
OMAP_DEVICE_STATE_SHUTDOWN
;
...
...
@@ -714,11 +711,10 @@ void __iomem *omap_device_get_rt_va(struct omap_device *od)
*/
int
omap_device_enable_hwmods
(
struct
omap_device
*
od
)
{
struct
omap_hwmod
*
oh
;
int
i
;
for
(
i
=
0
,
oh
=
*
od
->
hwmods
;
i
<
od
->
hwmods_cnt
;
i
++
,
oh
++
)
omap_hwmod_enable
(
o
h
);
for
(
i
=
0
;
i
<
od
->
hwmods_cnt
;
i
++
)
omap_hwmod_enable
(
o
d
->
hwmods
[
i
]
);
/* XXX pass along return value here? */
return
0
;
...
...
@@ -732,11 +728,10 @@ int omap_device_enable_hwmods(struct omap_device *od)
*/
int
omap_device_idle_hwmods
(
struct
omap_device
*
od
)
{
struct
omap_hwmod
*
oh
;
int
i
;
for
(
i
=
0
,
oh
=
*
od
->
hwmods
;
i
<
od
->
hwmods_cnt
;
i
++
,
oh
++
)
omap_hwmod_idle
(
o
h
);
for
(
i
=
0
;
i
<
od
->
hwmods_cnt
;
i
++
)
omap_hwmod_idle
(
o
d
->
hwmods
[
i
]
);
/* XXX pass along return value here? */
return
0
;
...
...
@@ -751,11 +746,10 @@ int omap_device_idle_hwmods(struct omap_device *od)
*/
int
omap_device_disable_clocks
(
struct
omap_device
*
od
)
{
struct
omap_hwmod
*
oh
;
int
i
;
for
(
i
=
0
,
oh
=
*
od
->
hwmods
;
i
<
od
->
hwmods_cnt
;
i
++
,
oh
++
)
omap_hwmod_disable_clocks
(
o
h
);
for
(
i
=
0
;
i
<
od
->
hwmods_cnt
;
i
++
)
omap_hwmod_disable_clocks
(
o
d
->
hwmods
[
i
]
);
/* XXX pass along return value here? */
return
0
;
...
...
@@ -770,11 +764,10 @@ int omap_device_disable_clocks(struct omap_device *od)
*/
int
omap_device_enable_clocks
(
struct
omap_device
*
od
)
{
struct
omap_hwmod
*
oh
;
int
i
;
for
(
i
=
0
,
oh
=
*
od
->
hwmods
;
i
<
od
->
hwmods_cnt
;
i
++
,
oh
++
)
omap_hwmod_enable_clocks
(
o
h
);
for
(
i
=
0
;
i
<
od
->
hwmods_cnt
;
i
++
)
omap_hwmod_enable_clocks
(
o
d
->
hwmods
[
i
]
);
/* XXX pass along return value here? */
return
0
;
...
...
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