diff options
author | Laurent Pinchart <laurent.pinchart@ideasonboard.com> | 2014-02-08 11:32:11 -0500 |
---|---|---|
committer | Mauro Carvalho Chehab <m.chehab@samsung.com> | 2014-02-24 11:10:14 -0500 |
commit | e68084c661953e7b7d78a952156d35e83187c038 (patch) | |
tree | c7fec070629d03e47f9d71ff7d8152cc485c6870 | |
parent | 7c486c0fe6c57e06fea5ecb1214b3bc28bafe0e2 (diff) |
[media] ARM: omap2: cm-t35: Add regulators and clock for camera sensor
The camera sensor will soon require regulators and clocks. Register
fixed regulators for its VAA and VDD power supplies and a fixed rate
clock for its master clock.
Signed-off-by: Laurent Pinchart <laurent.pinchart@ideasonboard.com>
Acked-by: Igor Grinberg <grinberg@compulab.co.il>
Acked-by: Tony Lindgren <tony@atomide.com>
Signed-off-by: Mauro Carvalho Chehab <m.chehab@samsung.com>
-rw-r--r-- | arch/arm/mach-omap2/board-cm-t35.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/arch/arm/mach-omap2/board-cm-t35.c b/arch/arm/mach-omap2/board-cm-t35.c index 8dd0ec858cf1..018353d88b96 100644 --- a/arch/arm/mach-omap2/board-cm-t35.c +++ b/arch/arm/mach-omap2/board-cm-t35.c | |||
@@ -16,6 +16,8 @@ | |||
16 | * | 16 | * |
17 | */ | 17 | */ |
18 | 18 | ||
19 | #include <linux/clk-provider.h> | ||
20 | #include <linux/clkdev.h> | ||
19 | #include <linux/kernel.h> | 21 | #include <linux/kernel.h> |
20 | #include <linux/init.h> | 22 | #include <linux/init.h> |
21 | #include <linux/platform_device.h> | 23 | #include <linux/platform_device.h> |
@@ -542,8 +544,22 @@ static struct isp_platform_data cm_t35_isp_pdata = { | |||
542 | .subdevs = cm_t35_isp_subdevs, | 544 | .subdevs = cm_t35_isp_subdevs, |
543 | }; | 545 | }; |
544 | 546 | ||
547 | static struct regulator_consumer_supply cm_t35_camera_supplies[] = { | ||
548 | REGULATOR_SUPPLY("vaa", "3-005d"), | ||
549 | REGULATOR_SUPPLY("vdd", "3-005d"), | ||
550 | }; | ||
551 | |||
545 | static void __init cm_t35_init_camera(void) | 552 | static void __init cm_t35_init_camera(void) |
546 | { | 553 | { |
554 | struct clk *clk; | ||
555 | |||
556 | clk = clk_register_fixed_rate(NULL, "mt9t001-clkin", NULL, CLK_IS_ROOT, | ||
557 | 48000000); | ||
558 | clk_register_clkdev(clk, NULL, "3-005d"); | ||
559 | |||
560 | regulator_register_fixed(2, cm_t35_camera_supplies, | ||
561 | ARRAY_SIZE(cm_t35_camera_supplies)); | ||
562 | |||
547 | if (omap3_init_camera(&cm_t35_isp_pdata) < 0) | 563 | if (omap3_init_camera(&cm_t35_isp_pdata) < 0) |
548 | pr_warn("CM-T3x: Failed registering camera device!\n"); | 564 | pr_warn("CM-T3x: Failed registering camera device!\n"); |
549 | } | 565 | } |