2 * TWL6040 clock module driver for OMAP4 McPDM functional clock
4 * Copyright (C) 2012 Texas Instruments Inc.
5 * Peter Ujfalusi <peter.ujfalusi@ti.com>
7 * This program is free software; you can redistribute it and/or
8 * modify it under the terms of the GNU General Public License
9 * version 2 as published by the Free Software Foundation.
11 * This program is distributed in the hope that it will be useful, but
12 * WITHOUT ANY WARRANTY; without even the implied warranty of
13 * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 * General Public License for more details.
16 * You should have received a copy of the GNU General Public License
17 * along with this program; if not, write to the Free Software
18 * Foundation, Inc., 51 Franklin St, Fifth Floor, Boston, MA
23 #include <linux/module.h>
24 #include <linux/slab.h>
25 #include <linux/platform_device.h>
26 #include <linux/mfd/twl6040.h>
27 #include <linux/clk-provider.h>
29 struct twl6040_pdmclk
{
30 struct twl6040
*twl6040
;
32 struct clk_hw pdmclk_hw
;
36 static int twl6040_pdmclk_is_prepared(struct clk_hw
*hw
)
38 struct twl6040_pdmclk
*pdmclk
= container_of(hw
, struct twl6040_pdmclk
,
41 return pdmclk
->enabled
;
44 static int twl6040_pdmclk_reset_one_clock(struct twl6040_pdmclk
*pdmclk
,
47 const u8 reset_mask
= TWL6040_HPLLRST
; /* Same for HPPLL and LPPLL */
50 ret
= twl6040_set_bits(pdmclk
->twl6040
, reg
, reset_mask
);
54 ret
= twl6040_clear_bits(pdmclk
->twl6040
, reg
, reset_mask
);
62 * TWL6040A2 Phoenix Audio IC erratum #6: "PDM Clock Generation Issue At
63 * Cold Temperature". This affects cold boot and deeper idle states it
64 * seems. The workaround consists of resetting HPPLL and LPPLL.
66 static int twl6040_pdmclk_quirk_reset_clocks(struct twl6040_pdmclk
*pdmclk
)
70 ret
= twl6040_pdmclk_reset_one_clock(pdmclk
, TWL6040_REG_HPPLLCTL
);
74 ret
= twl6040_pdmclk_reset_one_clock(pdmclk
, TWL6040_REG_LPPLLCTL
);
81 static int twl6040_pdmclk_prepare(struct clk_hw
*hw
)
83 struct twl6040_pdmclk
*pdmclk
= container_of(hw
, struct twl6040_pdmclk
,
87 ret
= twl6040_power(pdmclk
->twl6040
, 1);
91 ret
= twl6040_pdmclk_quirk_reset_clocks(pdmclk
);
100 dev_err(pdmclk
->dev
, "%s: error %i\n", __func__
, ret
);
101 twl6040_power(pdmclk
->twl6040
, 0);
106 static void twl6040_pdmclk_unprepare(struct clk_hw
*hw
)
108 struct twl6040_pdmclk
*pdmclk
= container_of(hw
, struct twl6040_pdmclk
,
112 ret
= twl6040_power(pdmclk
->twl6040
, 0);
118 static unsigned long twl6040_pdmclk_recalc_rate(struct clk_hw
*hw
,
119 unsigned long parent_rate
)
121 struct twl6040_pdmclk
*pdmclk
= container_of(hw
, struct twl6040_pdmclk
,
124 return twl6040_get_sysclk(pdmclk
->twl6040
);
127 static const struct clk_ops twl6040_pdmclk_ops
= {
128 .is_prepared
= twl6040_pdmclk_is_prepared
,
129 .prepare
= twl6040_pdmclk_prepare
,
130 .unprepare
= twl6040_pdmclk_unprepare
,
131 .recalc_rate
= twl6040_pdmclk_recalc_rate
,
134 static struct clk_init_data twl6040_pdmclk_init
= {
136 .ops
= &twl6040_pdmclk_ops
,
137 .flags
= CLK_GET_RATE_NOCACHE
,
140 static int twl6040_pdmclk_probe(struct platform_device
*pdev
)
142 struct twl6040
*twl6040
= dev_get_drvdata(pdev
->dev
.parent
);
143 struct twl6040_pdmclk
*clkdata
;
146 clkdata
= devm_kzalloc(&pdev
->dev
, sizeof(*clkdata
), GFP_KERNEL
);
150 clkdata
->dev
= &pdev
->dev
;
151 clkdata
->twl6040
= twl6040
;
153 clkdata
->pdmclk_hw
.init
= &twl6040_pdmclk_init
;
154 ret
= devm_clk_hw_register(&pdev
->dev
, &clkdata
->pdmclk_hw
);
158 platform_set_drvdata(pdev
, clkdata
);
160 return of_clk_add_hw_provider(pdev
->dev
.parent
->of_node
,
161 of_clk_hw_simple_get
,
162 &clkdata
->pdmclk_hw
);
165 static struct platform_driver twl6040_pdmclk_driver
= {
167 .name
= "twl6040-pdmclk",
169 .probe
= twl6040_pdmclk_probe
,
172 module_platform_driver(twl6040_pdmclk_driver
);
174 MODULE_DESCRIPTION("TWL6040 clock driver for McPDM functional clock");
175 MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@ti.com>");
176 MODULE_ALIAS("platform:twl6040-pdmclk");
177 MODULE_LICENSE("GPL");