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
0e557149
Commit
0e557149
authored
Apr 28, 2016
by
Thierry Reding
Browse files
Options
Browse Files
Download
Plain Diff
Merge branch 'for-4.7/clk' into for-4.7/phy
parents
f55532a0
3358d2d9
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
63 additions
and
0 deletions
+63
-0
drivers/clk/tegra/clk-tegra210.c
drivers/clk/tegra/clk-tegra210.c
+58
-0
include/linux/clk/tegra.h
include/linux/clk/tegra.h
+5
-0
No files found.
drivers/clk/tegra/clk-tegra210.c
View file @
0e557149
...
...
@@ -175,6 +175,19 @@
#define UTMIP_PLL_CFG1_FORCE_PLL_ENABLE_POWERDOWN BIT(14)
#define UTMIP_PLL_CFG1_FORCE_PLL_ACTIVE_POWERDOWN BIT(12)
#define SATA_PLL_CFG0 0x490
#define SATA_PLL_CFG0_PADPLL_RESET_SWCTL BIT(0)
#define SATA_PLL_CFG0_PADPLL_USE_LOCKDET BIT(2)
#define SATA_PLL_CFG0_PADPLL_SLEEP_IDDQ BIT(13)
#define SATA_PLL_CFG0_SEQ_ENABLE BIT(24)
#define XUSBIO_PLL_CFG0 0x51c
#define XUSBIO_PLL_CFG0_PADPLL_RESET_SWCTL BIT(0)
#define XUSBIO_PLL_CFG0_CLK_ENABLE_SWCTL BIT(2)
#define XUSBIO_PLL_CFG0_PADPLL_USE_LOCKDET BIT(6)
#define XUSBIO_PLL_CFG0_PADPLL_SLEEP_IDDQ BIT(13)
#define XUSBIO_PLL_CFG0_SEQ_ENABLE BIT(24)
#define UTMIPLL_HW_PWRDN_CFG0 0x52c
#define UTMIPLL_HW_PWRDN_CFG0_UTMIPLL_LOCK BIT(31)
#define UTMIPLL_HW_PWRDN_CFG0_SEQ_START_STATE BIT(25)
...
...
@@ -416,6 +429,51 @@ static const char *mux_pllmcp_clkm[] = {
#define PLLU_MISC0_WRITE_MASK 0xbfffffff
#define PLLU_MISC1_WRITE_MASK 0x00000007
void
tegra210_xusb_pll_hw_control_enable
(
void
)
{
u32
val
;
val
=
readl_relaxed
(
clk_base
+
XUSBIO_PLL_CFG0
);
val
&=
~
(
XUSBIO_PLL_CFG0_CLK_ENABLE_SWCTL
|
XUSBIO_PLL_CFG0_PADPLL_RESET_SWCTL
);
val
|=
XUSBIO_PLL_CFG0_PADPLL_USE_LOCKDET
|
XUSBIO_PLL_CFG0_PADPLL_SLEEP_IDDQ
;
writel_relaxed
(
val
,
clk_base
+
XUSBIO_PLL_CFG0
);
}
EXPORT_SYMBOL_GPL
(
tegra210_xusb_pll_hw_control_enable
);
void
tegra210_xusb_pll_hw_sequence_start
(
void
)
{
u32
val
;
val
=
readl_relaxed
(
clk_base
+
XUSBIO_PLL_CFG0
);
val
|=
XUSBIO_PLL_CFG0_SEQ_ENABLE
;
writel_relaxed
(
val
,
clk_base
+
XUSBIO_PLL_CFG0
);
}
EXPORT_SYMBOL_GPL
(
tegra210_xusb_pll_hw_sequence_start
);
void
tegra210_sata_pll_hw_control_enable
(
void
)
{
u32
val
;
val
=
readl_relaxed
(
clk_base
+
SATA_PLL_CFG0
);
val
&=
~
SATA_PLL_CFG0_PADPLL_RESET_SWCTL
;
val
|=
SATA_PLL_CFG0_PADPLL_USE_LOCKDET
|
SATA_PLL_CFG0_PADPLL_SLEEP_IDDQ
;
writel_relaxed
(
val
,
clk_base
+
SATA_PLL_CFG0
);
}
EXPORT_SYMBOL_GPL
(
tegra210_sata_pll_hw_control_enable
);
void
tegra210_sata_pll_hw_sequence_start
(
void
)
{
u32
val
;
val
=
readl_relaxed
(
clk_base
+
SATA_PLL_CFG0
);
val
|=
SATA_PLL_CFG0_SEQ_ENABLE
;
writel_relaxed
(
val
,
clk_base
+
SATA_PLL_CFG0
);
}
EXPORT_SYMBOL_GPL
(
tegra210_sata_pll_hw_sequence_start
);
static
inline
void
_pll_misc_chk_default
(
void
__iomem
*
base
,
struct
tegra_clk_pll_params
*
params
,
u8
misc_num
,
u32
default_val
,
u32
mask
)
...
...
include/linux/clk/tegra.h
View file @
0e557149
...
...
@@ -121,4 +121,9 @@ static inline void tegra_cpu_clock_resume(void)
}
#endif
extern
void
tegra210_xusb_pll_hw_control_enable
(
void
);
extern
void
tegra210_xusb_pll_hw_sequence_start
(
void
);
extern
void
tegra210_sata_pll_hw_control_enable
(
void
);
extern
void
tegra210_sata_pll_hw_sequence_start
(
void
);
#endif
/* __LINUX_CLK_TEGRA_H_ */
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