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
Kirill Smelkov
linux
Commits
8eadcf74
Commit
8eadcf74
authored
Apr 15, 2012
by
Kukjin Kim
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
ARM: SAMSUNG: move pm part for common s5p into plat-samsung
Signed-off-by:
Kukjin Kim
<
kgene.kim@samsung.com
>
parent
68ae8998
Changes
7
Show whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
18 additions
and
20 deletions
+18
-20
arch/arm/plat-s5p/Kconfig
arch/arm/plat-s5p/Kconfig
+0
-12
arch/arm/plat-s5p/Makefile
arch/arm/plat-s5p/Makefile
+0
-2
arch/arm/plat-samsung/Kconfig
arch/arm/plat-samsung/Kconfig
+12
-0
arch/arm/plat-samsung/Makefile
arch/arm/plat-samsung/Makefile
+3
-0
arch/arm/plat-samsung/s5p-irq-pm.c
arch/arm/plat-samsung/s5p-irq-pm.c
+1
-2
arch/arm/plat-samsung/s5p-pm.c
arch/arm/plat-samsung/s5p-pm.c
+1
-2
arch/arm/plat-samsung/s5p-sleep.S
arch/arm/plat-samsung/s5p-sleep.S
+1
-2
No files found.
arch/arm/plat-s5p/Kconfig
View file @
8eadcf74
...
@@ -33,18 +33,6 @@ config S5P_DEV_UART
...
@@ -33,18 +33,6 @@ config S5P_DEV_UART
def_bool y
def_bool y
depends on (ARCH_S5P64X0 || ARCH_S5PC100 || ARCH_S5PV210)
depends on (ARCH_S5P64X0 || ARCH_S5PC100 || ARCH_S5PV210)
config S5P_PM
bool
help
Common code for power management support on S5P and newer SoCs
Note: Do not select this for S5P6440 and S5P6450.
config S5P_SLEEP
bool
help
Internal config node to apply common S5P sleep management code.
Can be selected by S5P and newer SoCs with similar sleep procedure.
config S5P_DEV_FIMC0
config S5P_DEV_FIMC0
bool
bool
help
help
...
...
arch/arm/plat-s5p/Makefile
View file @
8eadcf74
...
@@ -12,8 +12,6 @@ obj- :=
...
@@ -12,8 +12,6 @@ obj- :=
# Core files
# Core files
obj-$(CONFIG_S5P_PM)
+=
pm.o irq-pm.o
obj-$(CONFIG_S5P_SLEEP)
+=
sleep.o
obj-$(CONFIG_S5P_HRT)
+=
s5p-time.o
obj-$(CONFIG_S5P_HRT)
+=
s5p-time.o
# devices
# devices
...
...
arch/arm/plat-samsung/Kconfig
View file @
8eadcf74
...
@@ -371,6 +371,18 @@ config SAMSUNG_WAKEMASK
...
@@ -371,6 +371,18 @@ config SAMSUNG_WAKEMASK
and above. This code allows a set of interrupt to wakeup-mask
and above. This code allows a set of interrupt to wakeup-mask
mappings. See <plat/wakeup-mask.h>
mappings. See <plat/wakeup-mask.h>
config S5P_PM
bool
help
Common code for power management support on S5P and newer SoCs
Note: Do not select this for S5P6440 and S5P6450.
config S5P_SLEEP
bool
help
Internal config node to apply common S5P sleep management code.
Can be selected by S5P and newer SoCs with similar sleep procedure.
comment "Power Domain"
comment "Power Domain"
config SAMSUNG_PD
config SAMSUNG_PD
...
...
arch/arm/plat-samsung/Makefile
View file @
8eadcf74
...
@@ -51,6 +51,9 @@ obj-$(CONFIG_SAMSUNG_PM_CHECK) += pm-check.o
...
@@ -51,6 +51,9 @@ obj-$(CONFIG_SAMSUNG_PM_CHECK) += pm-check.o
obj-$(CONFIG_SAMSUNG_WAKEMASK)
+=
wakeup-mask.o
obj-$(CONFIG_SAMSUNG_WAKEMASK)
+=
wakeup-mask.o
obj-$(CONFIG_S5P_PM)
+=
s5p-pm.o s5p-irq-pm.o
obj-$(CONFIG_S5P_SLEEP)
+=
s5p-sleep.o
# PD support
# PD support
obj-$(CONFIG_SAMSUNG_PD)
+=
pd.o
obj-$(CONFIG_SAMSUNG_PD)
+=
pd.o
...
...
arch/arm/plat-s
5p/
irq-pm.c
→
arch/arm/plat-s
amsung/s5p-
irq-pm.c
View file @
8eadcf74
/* linux/arch/arm/plat-s5p/irq-pm.c
/*
*
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
* http://www.samsung.com
* http://www.samsung.com
*
*
...
...
arch/arm/plat-s
5p/
pm.c
→
arch/arm/plat-s
amsung/s5p-
pm.c
View file @
8eadcf74
/* linux/arch/arm/plat-s5p/pm.c
/*
*
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
* Copyright (c) 2010 Samsung Electronics Co., Ltd.
* http://www.samsung.com
* http://www.samsung.com
*
*
...
...
arch/arm/plat-s
5p/
sleep.S
→
arch/arm/plat-s
amsung/s5p-
sleep.S
View file @
8eadcf74
/*
linux
/
arch
/
arm
/
plat
-
s5p
/
sleep.S
/*
*
*
Copyright
(
c
)
2011
Samsung
Electronics
Co
.
,
Ltd
.
*
Copyright
(
c
)
2011
Samsung
Electronics
Co
.
,
Ltd
.
*
http
:
//
www
.
samsung
.
com
*
http
:
//
www
.
samsung
.
com
*
*
...
...
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