mail archive of the barebox mailing list
 help / color / mirror / Atom feed
* [PATCH] mx6-sabrelite: Setup CCM_CCOSR register
@ 2013-04-17 18:35 Fabio Estevam
  2013-04-18  9:12 ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 1 reply; 2+ messages in thread
From: Fabio Estevam @ 2013-04-17 18:35 UTC (permalink / raw)
  To: s.hauer; +Cc: Fabio Estevam, barebox

From: Fabio Estevam <fabio.estevam@freescale.com>

Setup CCM_CCOSR register to provide a CKO1 clock frequency of 16.5 MHz.

CKO1 drives sgtl5000 codec clock on mx6qsabrelite and doing this setup in the 
bootloader will allow us to remove a lot of code in arch/arm/mach-imx/mach-imx6q.c 
from the mainline kernel.

Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
---
 .../boards/freescale-mx6-sabrelite/flash_header.c  |   11 +++++++++++
 1 file changed, 11 insertions(+)

diff --git a/arch/arm/boards/freescale-mx6-sabrelite/flash_header.c b/arch/arm/boards/freescale-mx6-sabrelite/flash_header.c
index 61d482b..49326e0 100644
--- a/arch/arm/boards/freescale-mx6-sabrelite/flash_header.c
+++ b/arch/arm/boards/freescale-mx6-sabrelite/flash_header.c
@@ -152,6 +152,17 @@ struct imx_dcd_v2_entry __dcd_entry_section dcd_entry[] = {
 	/* set IPU AXI-id0 Qos=0xf(bypass) AXI-id1 Qos=0x7 */
 	DCD(MX6_IOMUXC_BASE_ADDR + 0x018, 0x007f007f),
 	DCD(MX6_IOMUXC_BASE_ADDR + 0x01c, 0x007f007f),
+
+	/*
+	 * Setup CCM_CCOSR register as follows:
+	 *
+	 * cko1_en  = 1	   --> CKO1 enabled
+	 * cko1_div = 111  --> divide by 8
+	 * cko1_sel = 1011 --> ahb_clk_root
+	 *
+	 * This sets CKO1 at ahb_clk_root/8 = 132/8 = 16.5 MHz
+	 */
+	DCD(MX6_CCM_BASE_ADDR + 0x060, 0x000000fb),
 };
 
 #define APP_DEST	CONFIG_TEXT_BASE
-- 
1.7.9.5


_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

* Re: [PATCH] mx6-sabrelite: Setup CCM_CCOSR register
  2013-04-17 18:35 [PATCH] mx6-sabrelite: Setup CCM_CCOSR register Fabio Estevam
@ 2013-04-18  9:12 ` Jean-Christophe PLAGNIOL-VILLARD
  0 siblings, 0 replies; 2+ messages in thread
From: Jean-Christophe PLAGNIOL-VILLARD @ 2013-04-18  9:12 UTC (permalink / raw)
  To: Fabio Estevam; +Cc: Fabio Estevam, barebox

On 15:35 Wed 17 Apr     , Fabio Estevam wrote:
> From: Fabio Estevam <fabio.estevam@freescale.com>
> 
> Setup CCM_CCOSR register to provide a CKO1 clock frequency of 16.5 MHz.
> 
> CKO1 drives sgtl5000 codec clock on mx6qsabrelite and doing this setup in the 
> bootloader will allow us to remove a lot of code in arch/arm/mach-imx/mach-imx6q.c 
> from the mainline kernel.

expect the booloader to setup every think os wrong

the kernel need to handle the clock by himself

Best Regards,
J.

> 
> Signed-off-by: Fabio Estevam <fabio.estevam@freescale.com>
> ---
>  .../boards/freescale-mx6-sabrelite/flash_header.c  |   11 +++++++++++
>  1 file changed, 11 insertions(+)
> 
> diff --git a/arch/arm/boards/freescale-mx6-sabrelite/flash_header.c b/arch/arm/boards/freescale-mx6-sabrelite/flash_header.c
> index 61d482b..49326e0 100644
> --- a/arch/arm/boards/freescale-mx6-sabrelite/flash_header.c
> +++ b/arch/arm/boards/freescale-mx6-sabrelite/flash_header.c
> @@ -152,6 +152,17 @@ struct imx_dcd_v2_entry __dcd_entry_section dcd_entry[] = {
>  	/* set IPU AXI-id0 Qos=0xf(bypass) AXI-id1 Qos=0x7 */
>  	DCD(MX6_IOMUXC_BASE_ADDR + 0x018, 0x007f007f),
>  	DCD(MX6_IOMUXC_BASE_ADDR + 0x01c, 0x007f007f),
> +
> +	/*
> +	 * Setup CCM_CCOSR register as follows:
> +	 *
> +	 * cko1_en  = 1	   --> CKO1 enabled
> +	 * cko1_div = 111  --> divide by 8
> +	 * cko1_sel = 1011 --> ahb_clk_root
> +	 *
> +	 * This sets CKO1 at ahb_clk_root/8 = 132/8 = 16.5 MHz
> +	 */
> +	DCD(MX6_CCM_BASE_ADDR + 0x060, 0x000000fb),
>  };
>  
>  #define APP_DEST	CONFIG_TEXT_BASE
> -- 
> 1.7.9.5
> 
> 
> _______________________________________________
> barebox mailing list
> barebox@lists.infradead.org
> http://lists.infradead.org/mailman/listinfo/barebox

_______________________________________________
barebox mailing list
barebox@lists.infradead.org
http://lists.infradead.org/mailman/listinfo/barebox

^ permalink raw reply	[flat|nested] 2+ messages in thread

end of thread, other threads:[~2013-04-18  9:17 UTC | newest]

Thread overview: 2+ messages (download: mbox.gz / follow: Atom feed)
-- links below jump to the message on this page --
2013-04-17 18:35 [PATCH] mx6-sabrelite: Setup CCM_CCOSR register Fabio Estevam
2013-04-18  9:12 ` Jean-Christophe PLAGNIOL-VILLARD

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox