diff options
author | Prashant Gaikwad <pgaikwad@nvidia.com> | 2013-01-04 02:00:52 -0500 |
---|---|---|
committer | Mike Turquette <mturquette@linaro.org> | 2013-01-24 14:09:28 -0500 |
commit | f2f6c2556dcc432e50003bc8fa4d62d95906f149 (patch) | |
tree | b0ffefa1b14c1c9a0435adbd81753cca9b6fed97 /include/asm-generic/vmlinux.lds.h | |
parent | 4cfe54e57910b59444d34a05284db27df416f20b (diff) |
clk: add common of_clk_init() function
Modify of_clk_init function so that it will determine which
driver to initialize based on device tree instead of each driver
registering to it.
Based on a similar patch for drivers/irqchip by Thomas Petazzoni and
drivers/clocksource by Stephen Warren.
Signed-off-by: Prashant Gaikwad <pgaikwad@nvidia.com>
Tested-by: Tony Prisk <linux@prisktech.co.nz>
Tested-by: Pawel Moll <pawel.moll@arm.com>
Tested-by: Rob Herring <rob.herring@calxeda.com>
Tested-by: Josh Cartwright <josh.cartwright@ni.com>
Reviewed-by: Josh Cartwright <josh.cartwright@ni.com>
Acked-by: Maxime Ripard <maxime.ripard@anandra.org>
Signed-off-by: Mike Turquette <mturquette@linaro.org>
[mturquette@linaro.org: merge conflict from missing CLKSRC_OF_TABLES()]
Signed-off-by: Mike Turquette <mturquette@linaro.org>
Diffstat (limited to 'include/asm-generic/vmlinux.lds.h')
-rw-r--r-- | include/asm-generic/vmlinux.lds.h | 10 |
1 files changed, 10 insertions, 0 deletions
diff --git a/include/asm-generic/vmlinux.lds.h b/include/asm-generic/vmlinux.lds.h index d1ea7ce0b4cb..c1fe60ad1540 100644 --- a/include/asm-generic/vmlinux.lds.h +++ b/include/asm-generic/vmlinux.lds.h | |||
@@ -150,6 +150,15 @@ | |||
150 | #endif | 150 | #endif |
151 | 151 | ||
152 | 152 | ||
153 | #ifdef CONFIG_COMMON_CLK | ||
154 | #define CLK_OF_TABLES() . = ALIGN(8); \ | ||
155 | VMLINUX_SYMBOL(__clk_of_table) = .; \ | ||
156 | *(__clk_of_table) \ | ||
157 | *(__clk_of_table_end) | ||
158 | #else | ||
159 | #define CLK_OF_TABLES() | ||
160 | #endif | ||
161 | |||
153 | #define KERNEL_DTB() \ | 162 | #define KERNEL_DTB() \ |
154 | STRUCT_ALIGN(); \ | 163 | STRUCT_ALIGN(); \ |
155 | VMLINUX_SYMBOL(__dtb_start) = .; \ | 164 | VMLINUX_SYMBOL(__dtb_start) = .; \ |
@@ -493,6 +502,7 @@ | |||
493 | DEV_DISCARD(init.rodata) \ | 502 | DEV_DISCARD(init.rodata) \ |
494 | CPU_DISCARD(init.rodata) \ | 503 | CPU_DISCARD(init.rodata) \ |
495 | MEM_DISCARD(init.rodata) \ | 504 | MEM_DISCARD(init.rodata) \ |
505 | CLK_OF_TABLES() \ | ||
496 | KERNEL_DTB() | 506 | KERNEL_DTB() |
497 | 507 | ||
498 | #define INIT_TEXT \ | 508 | #define INIT_TEXT \ |