diff options
author | Abhilash Kesavan <a.kesavan@samsung.com> | 2011-03-15 18:35:24 +0900 |
---|---|---|
committer | Kukjin Kim <kgene.kim@samsung.com> | 2011-03-15 18:35:30 +0900 |
commit | 40360217fdbbb9afbbe23639dbc964fb2735a83f (patch) | |
tree | 6757c39a74a057725caaf60bbc117c5de2beab22 /arch/arm/mach-exynos4/clock.c | |
parent | be7004f73d0b42cca29cf9f1cc86f32038fd140c (diff) | |
download | blackbird-op-linux-40360217fdbbb9afbbe23639dbc964fb2735a83f.tar.gz blackbird-op-linux-40360217fdbbb9afbbe23639dbc964fb2735a83f.zip |
ARM: EXYNOS4: Add support for SATA on ARMLEX4210
Adds the device definitions, platform specific initialization
and clocks for SATA on ARMLEX4210.
Signed-off-by: Abhilash Kesavan <a.kesavan@samsung.com>
Signed-off-by: Kukjin Kim <kgene.kim@samsung.com>
Diffstat (limited to 'arch/arm/mach-exynos4/clock.c')
-rw-r--r-- | arch/arm/mach-exynos4/clock.c | 7 |
1 files changed, 7 insertions, 0 deletions
diff --git a/arch/arm/mach-exynos4/clock.c b/arch/arm/mach-exynos4/clock.c index 7bf3c4e35d26..fac6a3b4a62b 100644 --- a/arch/arm/mach-exynos4/clock.c +++ b/arch/arm/mach-exynos4/clock.c @@ -432,6 +432,12 @@ static struct clk init_clocks_off[] = { .enable = exynos4_clk_ip_lcd1_ctrl, .ctrlbit = (1 << 0), }, { + .name = "sataphy", + .id = -1, + .parent = &clk_aclk_133.clk, + .enable = exynos4_clk_ip_fsys_ctrl, + .ctrlbit = (1 << 3), + }, { .name = "hsmmc", .id = 0, .parent = &clk_aclk_133.clk, @@ -464,6 +470,7 @@ static struct clk init_clocks_off[] = { }, { .name = "sata", .id = -1, + .parent = &clk_aclk_133.clk, .enable = exynos4_clk_ip_fsys_ctrl, .ctrlbit = (1 << 10), }, { |