From: mkl@pengutronix.de (Marc Kleine-Budde)
To: linux-arm-kernel@lists.infradead.org
Subject: [PATCH] ARM: imx: add imx5x usb controller clock lookups
Date: Thu, 23 Aug 2012 16:41:29 +0200 [thread overview]
Message-ID: <50364119.300@pengutronix.de> (raw)
In-Reply-To: <20120823141815.GI24242@S2101-09.ap.freescale.net>
On 08/23/2012 04:18 PM, Shawn Guo wrote:
> On Thu, Aug 23, 2012 at 12:38:48PM +0200, Michael Grzeschik wrote:
>> Signed-off-by: Michael Grzeschik <m.grzeschik@pengutronix.de>
>> ---
>> arch/arm/mach-imx/clk-imx51-imx53.c | 36 +++++++++++++++++++++++------------
>> 1 file changed, 24 insertions(+), 12 deletions(-)
>>
>> diff --git a/arch/arm/mach-imx/clk-imx51-imx53.c b/arch/arm/mach-imx/clk-imx51-imx53.c
>> index 4bdcaa9..6ce49b1 100644
>> --- a/arch/arm/mach-imx/clk-imx51-imx53.c
>> +++ b/arch/arm/mach-imx/clk-imx51-imx53.c
>> @@ -258,18 +258,6 @@ static void __init mx5_clocks_common_init(unsigned long rate_ckil,
>> clk_register_clkdev(clk[pwm2_ipg_gate], "pwm", "mxc_pwm.1");
>> clk_register_clkdev(clk[i2c1_gate], NULL, "imx-i2c.0");
>> clk_register_clkdev(clk[i2c2_gate], NULL, "imx-i2c.1");
>> - clk_register_clkdev(clk[usboh3_per_gate], "per", "mxc-ehci.0");
>> - clk_register_clkdev(clk[usboh3_gate], "ipg", "mxc-ehci.0");
>> - clk_register_clkdev(clk[usboh3_gate], "ahb", "mxc-ehci.0");
>> - clk_register_clkdev(clk[usboh3_per_gate], "per", "mxc-ehci.1");
>> - clk_register_clkdev(clk[usboh3_gate], "ipg", "mxc-ehci.1");
>> - clk_register_clkdev(clk[usboh3_gate], "ahb", "mxc-ehci.1");
>> - clk_register_clkdev(clk[usboh3_per_gate], "per", "mxc-ehci.2");
>> - clk_register_clkdev(clk[usboh3_gate], "ipg", "mxc-ehci.2");
>> - clk_register_clkdev(clk[usboh3_gate], "ahb", "mxc-ehci.2");
>> - clk_register_clkdev(clk[usboh3_per_gate], "per", "fsl-usb2-udc");
>> - clk_register_clkdev(clk[usboh3_gate], "ipg", "fsl-usb2-udc");
>> - clk_register_clkdev(clk[usboh3_gate], "ahb", "fsl-usb2-udc");
>
> Removing those will break some in-tree users, right?
Yes, there was a v2 fixing this.
>> clk_register_clkdev(clk[nfc_gate], NULL, "mxc_nand");
>> clk_register_clkdev(clk[ssi1_ipg_gate], NULL, "imx-ssi.0");
>> clk_register_clkdev(clk[ssi2_ipg_gate], NULL, "imx-ssi.1");
>> @@ -351,6 +339,18 @@ int __init mx51_clocks_init(unsigned long rate_ckil, unsigned long rate_osc,
>> clk_register_clkdev(clk[ipu_di0_gate], "di0", "imx51-ipu");
>> clk_register_clkdev(clk[ipu_di1_gate], "di1", "imx51-ipu");
>> clk_register_clkdev(clk[ipu_gate], "hsp", "imx51-ipu");
>> + clk_register_clkdev(clk[usboh3_per_gate], "per", "73f80600.usb");
>> + clk_register_clkdev(clk[usboh3_gate], "ipg", "73f80600.usb");
>> + clk_register_clkdev(clk[usboh3_gate], "ahb", "73f80600.usb");
>> + clk_register_clkdev(clk[usboh3_per_gate], "per", "73f80400.usb");
>> + clk_register_clkdev(clk[usboh3_gate], "ipg", "73f80400.usb");
>> + clk_register_clkdev(clk[usboh3_gate], "ahb", "73f80400.usb");
>> + clk_register_clkdev(clk[usboh3_per_gate], "per", "73f80200.usb");
>> + clk_register_clkdev(clk[usboh3_gate], "ipg", "73f80200.usb");
>> + clk_register_clkdev(clk[usboh3_gate], "ahb", "73f80200.usb");
>> + clk_register_clkdev(clk[usboh3_per_gate], "per", "73f80000.usb");
>> + clk_register_clkdev(clk[usboh3_gate], "ipg", "73f80000.usb");
>> + clk_register_clkdev(clk[usboh3_gate], "ahb", "73f80000.usb");
>
> I haven't seen new driver requesting these clocks, so would postpone
> the changes until the driver actually requests them.
I'm going to post a driver ci13xxx_imx driver update in a few minutes.
Marc
--
Pengutronix e.K. | Marc Kleine-Budde |
Industrial Linux Solutions | Phone: +49-231-2826-924 |
Vertretung West/Dortmund | Fax: +49-5121-206917-5555 |
Amtsgericht Hildesheim, HRA 2686 | http://www.pengutronix.de |
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 262 bytes
Desc: OpenPGP digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20120823/3c70cfa8/attachment-0001.sig>
prev parent reply other threads:[~2012-08-23 14:41 UTC|newest]
Thread overview: 7+ messages / expand[flat|nested] mbox.gz Atom feed top
2012-08-23 10:38 [PATCH] ARM: imx: add imx5x usb controller clock lookups Michael Grzeschik
2012-08-23 11:01 ` [PATCH v2] " Michael Grzeschik
2012-08-23 11:13 ` Fabio Estevam
2012-08-23 11:36 ` Michael Grzeschik
2012-08-23 11:54 ` Fabio Estevam
2012-08-23 14:18 ` [PATCH] " Shawn Guo
2012-08-23 14:41 ` Marc Kleine-Budde [this message]
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=50364119.300@pengutronix.de \
--to=mkl@pengutronix.de \
--cc=linux-arm-kernel@lists.infradead.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).