summaryrefslogtreecommitdiffstats
path: root/include
diff options
context:
space:
mode:
authorTero Kristo <t-kristo@ti.com>2015-01-29 22:25:40 +0200
committerMichael Turquette <mturquette@linaro.org>2015-01-30 10:55:19 -0800
commit74807dffcdd72bb4c0786214e8486ef9bb088156 (patch)
treeaae26c5754e511991979480341f2598372b0c56b /include
parentb26bcf9be64e26d8a0972d6df1c2105cc5076cf1 (diff)
downloadop-kernel-dev-74807dffcdd72bb4c0786214e8486ef9bb088156.zip
op-kernel-dev-74807dffcdd72bb4c0786214e8486ef9bb088156.tar.gz
clk: ti: add omap3 legacy clock data
Introduces omap3 legacy clock data under clock driver. The clock data is also in new format, which makes it possible to get rid of the clk-private.h header. This patch also introduces SoC specific init functions that shall be called from the low level init. The data format used in this file has two possible evolution paths; it can either be removed completely once no longer needed, or it will be possible to retain the format and modify the TI clock driver to be a loadable module at some point. The actual path to be followed will be decided later. Signed-off-by: Tero Kristo <t-kristo@ti.com> Acked-by: Tony Lindgren <tony@atomide.com> Signed-off-by: Michael Turquette <mturquette@linaro.org>
Diffstat (limited to 'include')
-rw-r--r--include/linux/clk/ti.h12
1 files changed, 12 insertions, 0 deletions
diff --git a/include/linux/clk/ti.h b/include/linux/clk/ti.h
index 55ef529..13a20bf 100644
--- a/include/linux/clk/ti.h
+++ b/include/linux/clk/ti.h
@@ -217,6 +217,13 @@ struct ti_dt_clk {
/* Maximum number of clock memmaps */
#define CLK_MAX_MEMMAPS 4
+/* Static memmap indices */
+enum {
+ TI_CLKM_CM = 0,
+ TI_CLKM_PRM,
+ TI_CLKM_SCRM,
+};
+
typedef void (*ti_of_clk_init_cb_t)(struct clk_hw *, struct device_node *);
/**
@@ -348,4 +355,9 @@ extern const struct clk_hw_omap_ops clkhwops_omap3430es2_iclk_ssi_wait;
extern const struct clk_hw_omap_ops clkhwops_omap3430es2_iclk_dss_usbhost_wait;
extern const struct clk_hw_omap_ops clkhwops_omap3430es2_iclk_hsotgusb_wait;
+int omap3430_clk_legacy_init(void);
+int omap3430es1_clk_legacy_init(void);
+int omap36xx_clk_legacy_init(void);
+int am35xx_clk_legacy_init(void);
+
#endif
OpenPOWER on IntegriCloud