SSI block has two types of clock:
ipg: bus clock, the clock needed for accessing registers.
per: peripheral clock, the clock needed for generating the bit rate.
Currently SSI driver only supports slave mode and only need to handle
the ipg clock, because the peripheral clock comes from the master codec.
Only register the ipg clock and do not register the peripheral clock for ssi.
Signed-off-by: Fabio Estevam <redacted>
---
Changes since v1:
- Use ssi2_gate for imx-ssi.1
arch/arm/mach-imx/clk-imx35.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
@@ -230,10 +230,8 @@ int __init mx35_clocks_init()clk_register_clkdev(clk[ipu_gate],NULL,"mx3_sdc_fb");clk_register_clkdev(clk[owire_gate],NULL,"mxc_w1");clk_register_clkdev(clk[sdma_gate],NULL,"imx35-sdma");-clk_register_clkdev(clk[ipg],"ipg","imx-ssi.0");-clk_register_clkdev(clk[ssi1_div_post],"per","imx-ssi.0");-clk_register_clkdev(clk[ipg],"ipg","imx-ssi.1");-clk_register_clkdev(clk[ssi2_div_post],"per","imx-ssi.1");+clk_register_clkdev(clk[ssi1_gate],NULL,"imx-ssi.0");+clk_register_clkdev(clk[ssi2_gate],NULL,"imx-ssi.1");/* i.mx35 has the i.mx21 type uart */clk_register_clkdev(clk[uart1_gate],"per","imx21-uart.0");clk_register_clkdev(clk[ipg],"ipg","imx21-uart.0");
From: Mark Brown <hidden> Date: 2012-08-22 19:27:23
On Mon, Aug 20, 2012 at 09:39:22AM -0300, Fabio Estevam wrote:
SSI block has two types of clock:
ipg: bus clock, the clock needed for accessing registers.
per: peripheral clock, the clock needed for generating the bit rate.
Currently SSI driver only supports slave mode and only need to handle
the ipg clock, because the peripheral clock comes from the master codec.
Only register the ipg clock and do not register the peripheral clock for ssi.
Tested-by: Mark Brown <redacted>
in that it stops boot hanging on the board, though it still doesn't make
AC'97 come out of reset happily. That's probably some separate issue
(pinmux perhaps?) though.
-------------- next part --------------
A non-text attachment was scrubbed...
Name: signature.asc
Type: application/pgp-signature
Size: 836 bytes
Desc: Digital signature
URL: <http://lists.infradead.org/pipermail/linux-arm-kernel/attachments/20120822/ebdabfcf/attachment.sig>
On Wed, Aug 22, 2012 at 4:27 PM, Mark Brown
[off-list ref] wrote:
Tested-by: Mark Brown <redacted>
in that it stops boot hanging on the board, though it still doesn't make
AC'97 come out of reset happily. That's probably some separate issue
(pinmux perhaps?) though.
Yes, looks like a separate issue.
Did imx_ssi_probe go successfully? What is the error log you are getting?
Regards,
Fabio Estevam
On Mon, Aug 20, 2012 at 09:39:22AM -0300, Fabio Estevam wrote:
SSI block has two types of clock:
ipg: bus clock, the clock needed for accessing registers.
per: peripheral clock, the clock needed for generating the bit rate.
Currently SSI driver only supports slave mode and only need to handle
the ipg clock, because the peripheral clock comes from the master codec.
Only register the ipg clock and do not register the peripheral clock for ssi.
Signed-off-by: Fabio Estevam <redacted>
Ok, used this version instead.
Sascha
quoted hunk
---
Changes since v1:
- Use ssi2_gate for imx-ssi.1
arch/arm/mach-imx/clk-imx35.c | 6 ++----
1 file changed, 2 insertions(+), 4 deletions(-)
@@ -230,10 +230,8 @@ int __init mx35_clocks_init()clk_register_clkdev(clk[ipu_gate],NULL,"mx3_sdc_fb");clk_register_clkdev(clk[owire_gate],NULL,"mxc_w1");clk_register_clkdev(clk[sdma_gate],NULL,"imx35-sdma");-clk_register_clkdev(clk[ipg],"ipg","imx-ssi.0");-clk_register_clkdev(clk[ssi1_div_post],"per","imx-ssi.0");-clk_register_clkdev(clk[ipg],"ipg","imx-ssi.1");-clk_register_clkdev(clk[ssi2_div_post],"per","imx-ssi.1");+clk_register_clkdev(clk[ssi1_gate],NULL,"imx-ssi.0");+clk_register_clkdev(clk[ssi2_gate],NULL,"imx-ssi.1");/* i.mx35 has the i.mx21 type uart */clk_register_clkdev(clk[uart1_gate],"per","imx21-uart.0");clk_register_clkdev(clk[ipg],"ipg","imx21-uart.0");
--
1.7.9.5
--
Pengutronix e.K. | |
Industrial Linux Solutions | http://www.pengutronix.de/ |
Peiner Str. 6-8, 31137 Hildesheim, Germany | Phone: +49-5121-206917-0 |
Amtsgericht Hildesheim, HRA 2686 | Fax: +49-5121-206917-5555 |
From: Mark Brown <hidden> Date: 2012-08-28 17:13:20
On Wed, Aug 22, 2012 at 04:38:26PM -0300, Fabio Estevam wrote:
On Wed, Aug 22, 2012 at 4:27 PM, Mark Brown
quoted
in that it stops boot hanging on the board, though it still doesn't make
AC'97 come out of reset happily. That's probably some separate issue
(pinmux perhaps?) though.
Yes, looks like a separate issue.
Did imx_ssi_probe go successfully? What is the error log you are getting?
The controller probes but there's no perceptible activity on the pins
when we try to reset the CODEC so no register I/O.
On Tue, Aug 28, 2012 at 2:13 PM, Mark Brown
[off-list ref] wrote:
quoted
Did imx_ssi_probe go successfully? What is the error log you are getting?
The controller probes but there's no perceptible activity on the pins
when we try to reset the CODEC so no register I/O.
Take a look at pcm043_ac97_cold_reset/pcm043_ac97_warm_reset at
arch/arm/mach-imx/mach-pcm043.c
to see how GPIO pins are handled for resetting ac97 codec on this platform.
Regards,
Fabio Estevam