commit
3f6eec9969
@ -0,0 +1,96 @@ |
||||
Device Tree Clock bindings for ATL (Audio Tracking Logic) of DRA7 SoC. |
||||
|
||||
The ATL IP is used to generate clock to be used to synchronize baseband and |
||||
audio codec. A single ATL IP provides four ATL clock instances sharing the same |
||||
functional clock but can be configured to provide different clocks. |
||||
ATL can maintain a clock averages to some desired frequency based on the bws/aws |
||||
signals - can compensate the drift between the two ws signal. |
||||
|
||||
In order to provide the support for ATL and it's output clocks (which can be used |
||||
internally within the SoC or external components) two sets of bindings is needed: |
||||
|
||||
Clock tree binding: |
||||
This binding uses the common clock binding[1]. |
||||
To be able to integrate the ATL clocks with DT clock tree. |
||||
Provides ccf level representation of the ATL clocks to be used by drivers. |
||||
Since the clock instances are part of a single IP this binding is used as a node |
||||
for the DT clock tree, the IP driver is needed to handle the actual configuration |
||||
of the IP. |
||||
|
||||
[1] Documentation/devicetree/bindings/clock/clock-bindings.txt |
||||
|
||||
Required properties: |
||||
- compatible : shall be "ti,dra7-atl-clock" |
||||
- #clock-cells : from common clock binding; shall be set to 0. |
||||
- clocks : link phandles to functional clock of ATL |
||||
|
||||
Binding for the IP driver: |
||||
This binding is used to configure the IP driver which is going to handle the |
||||
configuration of the IP for the ATL clock instances. |
||||
|
||||
Required properties: |
||||
- compatible : shall be "ti,dra7-atl" |
||||
- reg : base address for the ATL IP |
||||
- ti,provided-clocks : List of phandles to the clocks associated with the ATL |
||||
- clocks : link phandles to functional clock of ATL |
||||
- clock-names : Shall be set to "fck" |
||||
- ti,hwmods : Shall be set to "atl" |
||||
|
||||
Optional properties: |
||||
Configuration of ATL instances: |
||||
- atl{0/1/2/3} { |
||||
- bws : Baseband word select signal selection |
||||
- aws : Audio word select signal selection |
||||
}; |
||||
|
||||
For valid word select signals, see the dt-bindings/clk/ti-dra7-atl.h include |
||||
file. |
||||
|
||||
Examples: |
||||
/* clock bindings for atl provided clocks */ |
||||
atl_clkin0_ck: atl_clkin0_ck { |
||||
#clock-cells = <0>; |
||||
compatible = "ti,dra7-atl-clock"; |
||||
clocks = <&atl_gfclk_mux>; |
||||
}; |
||||
|
||||
atl_clkin1_ck: atl_clkin1_ck { |
||||
#clock-cells = <0>; |
||||
compatible = "ti,dra7-atl-clock"; |
||||
clocks = <&atl_gfclk_mux>; |
||||
}; |
||||
|
||||
atl_clkin2_ck: atl_clkin2_ck { |
||||
#clock-cells = <0>; |
||||
compatible = "ti,dra7-atl-clock"; |
||||
clocks = <&atl_gfclk_mux>; |
||||
}; |
||||
|
||||
atl_clkin3_ck: atl_clkin3_ck { |
||||
#clock-cells = <0>; |
||||
compatible = "ti,dra7-atl-clock"; |
||||
clocks = <&atl_gfclk_mux>; |
||||
}; |
||||
|
||||
/* binding for the IP */ |
||||
atl: atl@4843c000 { |
||||
compatible = "ti,dra7-atl"; |
||||
reg = <0x4843c000 0x3ff>; |
||||
ti,hwmods = "atl"; |
||||
ti,provided-clocks = <&atl_clkin0_ck>, <&atl_clkin1_ck>, |
||||
<&atl_clkin2_ck>, <&atl_clkin3_ck>; |
||||
clocks = <&atl_gfclk_mux>; |
||||
clock-names = "fck"; |
||||
status = "disabled"; |
||||
}; |
||||
|
||||
#include <dt-bindings/clk/ti-dra7-atl.h> |
||||
|
||||
&atl { |
||||
status = "okay"; |
||||
|
||||
atl2 { |
||||
bws = <DRA7_ATL_WS_MCASP2_FSX>; |
||||
aws = <DRA7_ATL_WS_MCASP3_FSX>; |
||||
}; |
||||
}; |
@ -0,0 +1,256 @@ |
||||
/*
|
||||
* OMAP2 Clock init |
||||
* |
||||
* Copyright (C) 2013 Texas Instruments, Inc |
||||
* Tero Kristo (t-kristo@ti.com) |
||||
* |
||||
* This program is free software; you can redistribute it and/or |
||||
* modify it under the terms of the GNU General Public License as |
||||
* published by the Free Software Foundation version 2. |
||||
* |
||||
* This program is distributed "as is" WITHOUT ANY WARRANTY of any |
||||
* kind, whether express or implied; without even the implied warranty |
||||
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU General Public License for more details. |
||||
*/ |
||||
|
||||
#include <linux/kernel.h> |
||||
#include <linux/list.h> |
||||
#include <linux/clk-provider.h> |
||||
#include <linux/clk/ti.h> |
||||
|
||||
static struct ti_dt_clk omap2xxx_clks[] = { |
||||
DT_CLK(NULL, "func_32k_ck", "func_32k_ck"), |
||||
DT_CLK(NULL, "secure_32k_ck", "secure_32k_ck"), |
||||
DT_CLK(NULL, "virt_12m_ck", "virt_12m_ck"), |
||||
DT_CLK(NULL, "virt_13m_ck", "virt_13m_ck"), |
||||
DT_CLK(NULL, "virt_19200000_ck", "virt_19200000_ck"), |
||||
DT_CLK(NULL, "virt_26m_ck", "virt_26m_ck"), |
||||
DT_CLK(NULL, "aplls_clkin_ck", "aplls_clkin_ck"), |
||||
DT_CLK(NULL, "aplls_clkin_x2_ck", "aplls_clkin_x2_ck"), |
||||
DT_CLK(NULL, "osc_ck", "osc_ck"), |
||||
DT_CLK(NULL, "sys_ck", "sys_ck"), |
||||
DT_CLK(NULL, "alt_ck", "alt_ck"), |
||||
DT_CLK(NULL, "mcbsp_clks", "mcbsp_clks"), |
||||
DT_CLK(NULL, "dpll_ck", "dpll_ck"), |
||||
DT_CLK(NULL, "apll96_ck", "apll96_ck"), |
||||
DT_CLK(NULL, "apll54_ck", "apll54_ck"), |
||||
DT_CLK(NULL, "func_54m_ck", "func_54m_ck"), |
||||
DT_CLK(NULL, "core_ck", "core_ck"), |
||||
DT_CLK(NULL, "func_96m_ck", "func_96m_ck"), |
||||
DT_CLK(NULL, "func_48m_ck", "func_48m_ck"), |
||||
DT_CLK(NULL, "func_12m_ck", "func_12m_ck"), |
||||
DT_CLK(NULL, "sys_clkout_src", "sys_clkout_src"), |
||||
DT_CLK(NULL, "sys_clkout", "sys_clkout"), |
||||
DT_CLK(NULL, "emul_ck", "emul_ck"), |
||||
DT_CLK(NULL, "mpu_ck", "mpu_ck"), |
||||
DT_CLK(NULL, "dsp_fck", "dsp_fck"), |
||||
DT_CLK(NULL, "gfx_3d_fck", "gfx_3d_fck"), |
||||
DT_CLK(NULL, "gfx_2d_fck", "gfx_2d_fck"), |
||||
DT_CLK(NULL, "gfx_ick", "gfx_ick"), |
||||
DT_CLK("omapdss_dss", "ick", "dss_ick"), |
||||
DT_CLK(NULL, "dss_ick", "dss_ick"), |
||||
DT_CLK(NULL, "dss1_fck", "dss1_fck"), |
||||
DT_CLK(NULL, "dss2_fck", "dss2_fck"), |
||||
DT_CLK(NULL, "dss_54m_fck", "dss_54m_fck"), |
||||
DT_CLK(NULL, "core_l3_ck", "core_l3_ck"), |
||||
DT_CLK(NULL, "ssi_fck", "ssi_ssr_sst_fck"), |
||||
DT_CLK(NULL, "usb_l4_ick", "usb_l4_ick"), |
||||
DT_CLK(NULL, "l4_ck", "l4_ck"), |
||||
DT_CLK(NULL, "ssi_l4_ick", "ssi_l4_ick"), |
||||
DT_CLK(NULL, "gpt1_ick", "gpt1_ick"), |
||||
DT_CLK(NULL, "gpt1_fck", "gpt1_fck"), |
||||
DT_CLK(NULL, "gpt2_ick", "gpt2_ick"), |
||||
DT_CLK(NULL, "gpt2_fck", "gpt2_fck"), |
||||
DT_CLK(NULL, "gpt3_ick", "gpt3_ick"), |
||||
DT_CLK(NULL, "gpt3_fck", "gpt3_fck"), |
||||
DT_CLK(NULL, "gpt4_ick", "gpt4_ick"), |
||||
DT_CLK(NULL, "gpt4_fck", "gpt4_fck"), |
||||
DT_CLK(NULL, "gpt5_ick", "gpt5_ick"), |
||||
DT_CLK(NULL, "gpt5_fck", "gpt5_fck"), |
||||
DT_CLK(NULL, "gpt6_ick", "gpt6_ick"), |
||||
DT_CLK(NULL, "gpt6_fck", "gpt6_fck"), |
||||
DT_CLK(NULL, "gpt7_ick", "gpt7_ick"), |
||||
DT_CLK(NULL, "gpt7_fck", "gpt7_fck"), |
||||
DT_CLK(NULL, "gpt8_ick", "gpt8_ick"), |
||||
DT_CLK(NULL, "gpt8_fck", "gpt8_fck"), |
||||
DT_CLK(NULL, "gpt9_ick", "gpt9_ick"), |
||||
DT_CLK(NULL, "gpt9_fck", "gpt9_fck"), |
||||
DT_CLK(NULL, "gpt10_ick", "gpt10_ick"), |
||||
DT_CLK(NULL, "gpt10_fck", "gpt10_fck"), |
||||
DT_CLK(NULL, "gpt11_ick", "gpt11_ick"), |
||||
DT_CLK(NULL, "gpt11_fck", "gpt11_fck"), |
||||
DT_CLK(NULL, "gpt12_ick", "gpt12_ick"), |
||||
DT_CLK(NULL, "gpt12_fck", "gpt12_fck"), |
||||
DT_CLK("omap-mcbsp.1", "ick", "mcbsp1_ick"), |
||||
DT_CLK(NULL, "mcbsp1_ick", "mcbsp1_ick"), |
||||
DT_CLK(NULL, "mcbsp1_fck", "mcbsp1_fck"), |
||||
DT_CLK("omap-mcbsp.2", "ick", "mcbsp2_ick"), |
||||
DT_CLK(NULL, "mcbsp2_ick", "mcbsp2_ick"), |
||||
DT_CLK(NULL, "mcbsp2_fck", "mcbsp2_fck"), |
||||
DT_CLK("omap2_mcspi.1", "ick", "mcspi1_ick"), |
||||
DT_CLK(NULL, "mcspi1_ick", "mcspi1_ick"), |
||||
DT_CLK(NULL, "mcspi1_fck", "mcspi1_fck"), |
||||
DT_CLK("omap2_mcspi.2", "ick", "mcspi2_ick"), |
||||
DT_CLK(NULL, "mcspi2_ick", "mcspi2_ick"), |
||||
DT_CLK(NULL, "mcspi2_fck", "mcspi2_fck"), |
||||
DT_CLK(NULL, "uart1_ick", "uart1_ick"), |
||||
DT_CLK(NULL, "uart1_fck", "uart1_fck"), |
||||
DT_CLK(NULL, "uart2_ick", "uart2_ick"), |
||||
DT_CLK(NULL, "uart2_fck", "uart2_fck"), |
||||
DT_CLK(NULL, "uart3_ick", "uart3_ick"), |
||||
DT_CLK(NULL, "uart3_fck", "uart3_fck"), |
||||
DT_CLK(NULL, "gpios_ick", "gpios_ick"), |
||||
DT_CLK(NULL, "gpios_fck", "gpios_fck"), |
||||
DT_CLK("omap_wdt", "ick", "mpu_wdt_ick"), |
||||
DT_CLK(NULL, "mpu_wdt_ick", "mpu_wdt_ick"), |
||||
DT_CLK(NULL, "mpu_wdt_fck", "mpu_wdt_fck"), |
||||
DT_CLK(NULL, "sync_32k_ick", "sync_32k_ick"), |
||||
DT_CLK(NULL, "wdt1_ick", "wdt1_ick"), |
||||
DT_CLK(NULL, "omapctrl_ick", "omapctrl_ick"), |
||||
DT_CLK("omap24xxcam", "fck", "cam_fck"), |
||||
DT_CLK(NULL, "cam_fck", "cam_fck"), |
||||
DT_CLK("omap24xxcam", "ick", "cam_ick"), |
||||
DT_CLK(NULL, "cam_ick", "cam_ick"), |
||||
DT_CLK(NULL, "mailboxes_ick", "mailboxes_ick"), |
||||
DT_CLK(NULL, "wdt4_ick", "wdt4_ick"), |
||||
DT_CLK(NULL, "wdt4_fck", "wdt4_fck"), |
||||
DT_CLK(NULL, "mspro_ick", "mspro_ick"), |
||||
DT_CLK(NULL, "mspro_fck", "mspro_fck"), |
||||
DT_CLK(NULL, "fac_ick", "fac_ick"), |
||||
DT_CLK(NULL, "fac_fck", "fac_fck"), |
||||
DT_CLK("omap_hdq.0", "ick", "hdq_ick"), |
||||
DT_CLK(NULL, "hdq_ick", "hdq_ick"), |
||||
DT_CLK("omap_hdq.0", "fck", "hdq_fck"), |
||||
DT_CLK(NULL, "hdq_fck", "hdq_fck"), |
||||
DT_CLK("omap_i2c.1", "ick", "i2c1_ick"), |
||||
DT_CLK(NULL, "i2c1_ick", "i2c1_ick"), |
||||
DT_CLK("omap_i2c.2", "ick", "i2c2_ick"), |
||||
DT_CLK(NULL, "i2c2_ick", "i2c2_ick"), |
||||
DT_CLK(NULL, "gpmc_fck", "gpmc_fck"), |
||||
DT_CLK(NULL, "sdma_fck", "sdma_fck"), |
||||
DT_CLK(NULL, "sdma_ick", "sdma_ick"), |
||||
DT_CLK(NULL, "sdrc_ick", "sdrc_ick"), |
||||
DT_CLK(NULL, "des_ick", "des_ick"), |
||||
DT_CLK("omap-sham", "ick", "sha_ick"), |
||||
DT_CLK(NULL, "sha_ick", "sha_ick"), |
||||
DT_CLK("omap_rng", "ick", "rng_ick"), |
||||
DT_CLK(NULL, "rng_ick", "rng_ick"), |
||||
DT_CLK("omap-aes", "ick", "aes_ick"), |
||||
DT_CLK(NULL, "aes_ick", "aes_ick"), |
||||
DT_CLK(NULL, "pka_ick", "pka_ick"), |
||||
DT_CLK(NULL, "usb_fck", "usb_fck"), |
||||
DT_CLK(NULL, "timer_32k_ck", "func_32k_ck"), |
||||
DT_CLK(NULL, "timer_sys_ck", "sys_ck"), |
||||
DT_CLK(NULL, "timer_ext_ck", "alt_ck"), |
||||
{ .node_name = NULL }, |
||||
}; |
||||
|
||||
static struct ti_dt_clk omap2420_clks[] = { |
||||
DT_CLK(NULL, "sys_clkout2_src", "sys_clkout2_src"), |
||||
DT_CLK(NULL, "sys_clkout2", "sys_clkout2"), |
||||
DT_CLK(NULL, "dsp_ick", "dsp_ick"), |
||||
DT_CLK(NULL, "iva1_ifck", "iva1_ifck"), |
||||
DT_CLK(NULL, "iva1_mpu_int_ifck", "iva1_mpu_int_ifck"), |
||||
DT_CLK(NULL, "wdt3_ick", "wdt3_ick"), |
||||
DT_CLK(NULL, "wdt3_fck", "wdt3_fck"), |
||||
DT_CLK("mmci-omap.0", "ick", "mmc_ick"), |
||||
DT_CLK(NULL, "mmc_ick", "mmc_ick"), |
||||
DT_CLK("mmci-omap.0", "fck", "mmc_fck"), |
||||
DT_CLK(NULL, "mmc_fck", "mmc_fck"), |
||||
DT_CLK(NULL, "eac_ick", "eac_ick"), |
||||
DT_CLK(NULL, "eac_fck", "eac_fck"), |
||||
DT_CLK(NULL, "i2c1_fck", "i2c1_fck"), |
||||
DT_CLK(NULL, "i2c2_fck", "i2c2_fck"), |
||||
DT_CLK(NULL, "vlynq_ick", "vlynq_ick"), |
||||
DT_CLK(NULL, "vlynq_fck", "vlynq_fck"), |
||||
DT_CLK("musb-hdrc", "fck", "osc_ck"), |
||||
{ .node_name = NULL }, |
||||
}; |
||||
|
||||
static struct ti_dt_clk omap2430_clks[] = { |
||||
DT_CLK("twl", "fck", "osc_ck"), |
||||
DT_CLK(NULL, "iva2_1_ick", "iva2_1_ick"), |
||||
DT_CLK(NULL, "mdm_ick", "mdm_ick"), |
||||
DT_CLK(NULL, "mdm_osc_ck", "mdm_osc_ck"), |
||||
DT_CLK("omap-mcbsp.3", "ick", "mcbsp3_ick"), |
||||
DT_CLK(NULL, "mcbsp3_ick", "mcbsp3_ick"), |
||||
DT_CLK(NULL, "mcbsp3_fck", "mcbsp3_fck"), |
||||
DT_CLK("omap-mcbsp.4", "ick", "mcbsp4_ick"), |
||||
DT_CLK(NULL, "mcbsp4_ick", "mcbsp4_ick"), |
||||
DT_CLK(NULL, "mcbsp4_fck", "mcbsp4_fck"), |
||||
DT_CLK("omap-mcbsp.5", "ick", "mcbsp5_ick"), |
||||
DT_CLK(NULL, "mcbsp5_ick", "mcbsp5_ick"), |
||||
DT_CLK(NULL, "mcbsp5_fck", "mcbsp5_fck"), |
||||
DT_CLK("omap2_mcspi.3", "ick", "mcspi3_ick"), |
||||
DT_CLK(NULL, "mcspi3_ick", "mcspi3_ick"), |
||||
DT_CLK(NULL, "mcspi3_fck", "mcspi3_fck"), |
||||
DT_CLK(NULL, "icr_ick", "icr_ick"), |
||||
DT_CLK(NULL, "i2chs1_fck", "i2chs1_fck"), |
||||
DT_CLK(NULL, "i2chs2_fck", "i2chs2_fck"), |
||||
DT_CLK("musb-omap2430", "ick", "usbhs_ick"), |
||||
DT_CLK(NULL, "usbhs_ick", "usbhs_ick"), |
||||
DT_CLK("omap_hsmmc.0", "ick", "mmchs1_ick"), |
||||
DT_CLK(NULL, "mmchs1_ick", "mmchs1_ick"), |
||||
DT_CLK(NULL, "mmchs1_fck", "mmchs1_fck"), |
||||
DT_CLK("omap_hsmmc.1", "ick", "mmchs2_ick"), |
||||
DT_CLK(NULL, "mmchs2_ick", "mmchs2_ick"), |
||||
DT_CLK(NULL, "mmchs2_fck", "mmchs2_fck"), |
||||
DT_CLK(NULL, "gpio5_ick", "gpio5_ick"), |
||||
DT_CLK(NULL, "gpio5_fck", "gpio5_fck"), |
||||
DT_CLK(NULL, "mdm_intc_ick", "mdm_intc_ick"), |
||||
DT_CLK("omap_hsmmc.0", "mmchsdb_fck", "mmchsdb1_fck"), |
||||
DT_CLK(NULL, "mmchsdb1_fck", "mmchsdb1_fck"), |
||||
DT_CLK("omap_hsmmc.1", "mmchsdb_fck", "mmchsdb2_fck"), |
||||
DT_CLK(NULL, "mmchsdb2_fck", "mmchsdb2_fck"), |
||||
{ .node_name = NULL }, |
||||
}; |
||||
|
||||
static const char *enable_init_clks[] = { |
||||
"apll96_ck", |
||||
"apll54_ck", |
||||
"sync_32k_ick", |
||||
"omapctrl_ick", |
||||
"gpmc_fck", |
||||
"sdrc_ick", |
||||
}; |
||||
|
||||
enum { |
||||
OMAP2_SOC_OMAP2420, |
||||
OMAP2_SOC_OMAP2430, |
||||
}; |
||||
|
||||
static int __init omap2xxx_dt_clk_init(int soc_type) |
||||
{ |
||||
ti_dt_clocks_register(omap2xxx_clks); |
||||
|
||||
if (soc_type == OMAP2_SOC_OMAP2420) |
||||
ti_dt_clocks_register(omap2420_clks); |
||||
else |
||||
ti_dt_clocks_register(omap2430_clks); |
||||
|
||||
omap2xxx_clkt_vps_init(); |
||||
|
||||
omap2_clk_disable_autoidle_all(); |
||||
|
||||
omap2_clk_enable_init_clocks(enable_init_clks, |
||||
ARRAY_SIZE(enable_init_clks)); |
||||
|
||||
pr_info("Clocking rate (Crystal/DPLL/MPU): %ld.%01ld/%ld/%ld MHz\n", |
||||
(clk_get_rate(clk_get_sys(NULL, "sys_ck")) / 1000000), |
||||
(clk_get_rate(clk_get_sys(NULL, "sys_ck")) / 100000) % 10, |
||||
(clk_get_rate(clk_get_sys(NULL, "dpll_ck")) / 1000000), |
||||
(clk_get_rate(clk_get_sys(NULL, "mpu_ck")) / 1000000)); |
||||
|
||||
return 0; |
||||
} |
||||
|
||||
int __init omap2420_dt_clk_init(void) |
||||
{ |
||||
return omap2xxx_dt_clk_init(OMAP2_SOC_OMAP2420); |
||||
} |
||||
|
||||
int __init omap2430_dt_clk_init(void) |
||||
{ |
||||
return omap2xxx_dt_clk_init(OMAP2_SOC_OMAP2430); |
||||
} |
@ -0,0 +1,312 @@ |
||||
/*
|
||||
* DRA7 ATL (Audio Tracking Logic) clock driver |
||||
* |
||||
* Copyright (C) 2013 Texas Instruments, Inc. |
||||
* |
||||
* Peter Ujfalusi <peter.ujfalusi@ti.com> |
||||
* |
||||
* This program is free software; you can redistribute it and/or modify |
||||
* it under the terms of the GNU General Public License version 2 as |
||||
* published by the Free Software Foundation. |
||||
* |
||||
* This program is distributed "as is" WITHOUT ANY WARRANTY of any |
||||
* kind, whether express or implied; without even the implied warranty |
||||
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU General Public License for more details. |
||||
*/ |
||||
|
||||
#include <linux/module.h> |
||||
#include <linux/clk-provider.h> |
||||
#include <linux/slab.h> |
||||
#include <linux/io.h> |
||||
#include <linux/of.h> |
||||
#include <linux/of_address.h> |
||||
#include <linux/platform_device.h> |
||||
#include <linux/pm_runtime.h> |
||||
|
||||
#define DRA7_ATL_INSTANCES 4 |
||||
|
||||
#define DRA7_ATL_PPMR_REG(id) (0x200 + (id * 0x80)) |
||||
#define DRA7_ATL_BBSR_REG(id) (0x204 + (id * 0x80)) |
||||
#define DRA7_ATL_ATLCR_REG(id) (0x208 + (id * 0x80)) |
||||
#define DRA7_ATL_SWEN_REG(id) (0x210 + (id * 0x80)) |
||||
#define DRA7_ATL_BWSMUX_REG(id) (0x214 + (id * 0x80)) |
||||
#define DRA7_ATL_AWSMUX_REG(id) (0x218 + (id * 0x80)) |
||||
#define DRA7_ATL_PCLKMUX_REG(id) (0x21c + (id * 0x80)) |
||||
|
||||
#define DRA7_ATL_SWEN BIT(0) |
||||
#define DRA7_ATL_DIVIDER_MASK (0x1f) |
||||
#define DRA7_ATL_PCLKMUX BIT(0) |
||||
struct dra7_atl_clock_info; |
||||
|
||||
struct dra7_atl_desc { |
||||
struct clk *clk; |
||||
struct clk_hw hw; |
||||
struct dra7_atl_clock_info *cinfo; |
||||
int id; |
||||
|
||||
bool probed; /* the driver for the IP has been loaded */ |
||||
bool valid; /* configured */ |
||||
bool enabled; |
||||
u32 bws; /* Baseband Word Select Mux */ |
||||
u32 aws; /* Audio Word Select Mux */ |
||||
u32 divider; /* Cached divider value */ |
||||
}; |
||||
|
||||
struct dra7_atl_clock_info { |
||||
struct device *dev; |
||||
void __iomem *iobase; |
||||
|
||||
struct dra7_atl_desc *cdesc; |
||||
}; |
||||
|
||||
#define to_atl_desc(_hw) container_of(_hw, struct dra7_atl_desc, hw) |
||||
|
||||
static inline void atl_write(struct dra7_atl_clock_info *cinfo, u32 reg, |
||||
u32 val) |
||||
{ |
||||
__raw_writel(val, cinfo->iobase + reg); |
||||
} |
||||
|
||||
static inline int atl_read(struct dra7_atl_clock_info *cinfo, u32 reg) |
||||
{ |
||||
return __raw_readl(cinfo->iobase + reg); |
||||
} |
||||
|
||||
static int atl_clk_enable(struct clk_hw *hw) |
||||
{ |
||||
struct dra7_atl_desc *cdesc = to_atl_desc(hw); |
||||
|
||||
if (!cdesc->probed) |
||||
goto out; |
||||
|
||||
if (unlikely(!cdesc->valid)) |
||||
dev_warn(cdesc->cinfo->dev, "atl%d has not been configured\n", |
||||
cdesc->id); |
||||
pm_runtime_get_sync(cdesc->cinfo->dev); |
||||
|
||||
atl_write(cdesc->cinfo, DRA7_ATL_ATLCR_REG(cdesc->id), |
||||
cdesc->divider - 1); |
||||
atl_write(cdesc->cinfo, DRA7_ATL_SWEN_REG(cdesc->id), DRA7_ATL_SWEN); |
||||
|
||||
out: |
||||
cdesc->enabled = true; |
||||
|
||||
return 0; |
||||
} |
||||
|
||||
static void atl_clk_disable(struct clk_hw *hw) |
||||
{ |
||||
struct dra7_atl_desc *cdesc = to_atl_desc(hw); |
||||
|
||||
if (!cdesc->probed) |
||||
goto out; |
||||
|
||||
atl_write(cdesc->cinfo, DRA7_ATL_SWEN_REG(cdesc->id), 0); |
||||
pm_runtime_put_sync(cdesc->cinfo->dev); |
||||
|
||||
out: |
||||
cdesc->enabled = false; |
||||
} |
||||
|
||||
static int atl_clk_is_enabled(struct clk_hw *hw) |
||||
{ |
||||
struct dra7_atl_desc *cdesc = to_atl_desc(hw); |
||||
|
||||
return cdesc->enabled; |
||||
} |
||||
|
||||
static unsigned long atl_clk_recalc_rate(struct clk_hw *hw, |
||||
unsigned long parent_rate) |
||||
{ |
||||
struct dra7_atl_desc *cdesc = to_atl_desc(hw); |
||||
|
||||
return parent_rate / cdesc->divider; |
||||
} |
||||
|
||||
static long atl_clk_round_rate(struct clk_hw *hw, unsigned long rate, |
||||
unsigned long *parent_rate) |
||||
{ |
||||
unsigned divider; |
||||
|
||||
divider = (*parent_rate + rate / 2) / rate; |
||||
if (divider > DRA7_ATL_DIVIDER_MASK + 1) |
||||
divider = DRA7_ATL_DIVIDER_MASK + 1; |
||||
|
||||
return *parent_rate / divider; |
||||
} |
||||
|
||||
static int atl_clk_set_rate(struct clk_hw *hw, unsigned long rate, |
||||
unsigned long parent_rate) |
||||
{ |
||||
struct dra7_atl_desc *cdesc = to_atl_desc(hw); |
||||
u32 divider; |
||||
|
||||
divider = ((parent_rate + rate / 2) / rate) - 1; |
||||
if (divider > DRA7_ATL_DIVIDER_MASK) |
||||
divider = DRA7_ATL_DIVIDER_MASK; |
||||
|
||||
cdesc->divider = divider + 1; |
||||
|
||||
return 0; |
||||
} |
||||
|
||||
const struct clk_ops atl_clk_ops = { |
||||
.enable = atl_clk_enable, |
||||
.disable = atl_clk_disable, |
||||
.is_enabled = atl_clk_is_enabled, |
||||
.recalc_rate = atl_clk_recalc_rate, |
||||
.round_rate = atl_clk_round_rate, |
||||
.set_rate = atl_clk_set_rate, |
||||
}; |
||||
|
||||
static void __init of_dra7_atl_clock_setup(struct device_node *node) |
||||
{ |
||||
struct dra7_atl_desc *clk_hw = NULL; |
||||
struct clk_init_data init = { 0 }; |
||||
const char **parent_names = NULL; |
||||
struct clk *clk; |
||||
|
||||
clk_hw = kzalloc(sizeof(*clk_hw), GFP_KERNEL); |
||||
if (!clk_hw) { |
||||
pr_err("%s: could not allocate dra7_atl_desc\n", __func__); |
||||
return; |
||||
} |
||||
|
||||
clk_hw->hw.init = &init; |
||||
clk_hw->divider = 1; |
||||
init.name = node->name; |
||||
init.ops = &atl_clk_ops; |
||||
init.flags = CLK_IGNORE_UNUSED; |
||||
init.num_parents = of_clk_get_parent_count(node); |
||||
|
||||
if (init.num_parents != 1) { |
||||
pr_err("%s: atl clock %s must have 1 parent\n", __func__, |
||||
node->name); |
||||
goto cleanup; |
||||
} |
||||
|
||||
parent_names = kzalloc(sizeof(char *), GFP_KERNEL); |
||||
|
||||
if (!parent_names) |
||||
goto cleanup; |
||||
|
||||
parent_names[0] = of_clk_get_parent_name(node, 0); |
||||
|
||||
init.parent_names = parent_names; |
||||
|
||||
clk = clk_register(NULL, &clk_hw->hw); |
||||
|
||||
if (!IS_ERR(clk)) { |
||||
of_clk_add_provider(node, of_clk_src_simple_get, clk); |
||||
return; |
||||
} |
||||
cleanup: |
||||
kfree(parent_names); |
||||
kfree(clk_hw); |
||||
} |
||||
CLK_OF_DECLARE(dra7_atl_clock, "ti,dra7-atl-clock", of_dra7_atl_clock_setup); |
||||
|
||||
static int of_dra7_atl_clk_probe(struct platform_device *pdev) |
||||
{ |
||||
struct device_node *node = pdev->dev.of_node; |
||||
struct dra7_atl_clock_info *cinfo; |
||||
int i; |
||||
int ret = 0; |
||||
|
||||
if (!node) |
||||
return -ENODEV; |
||||
|
||||
cinfo = devm_kzalloc(&pdev->dev, sizeof(*cinfo), GFP_KERNEL); |
||||
if (!cinfo) |
||||
return -ENOMEM; |
||||
|
||||
cinfo->iobase = of_iomap(node, 0); |
||||
cinfo->dev = &pdev->dev; |
||||
pm_runtime_enable(cinfo->dev); |
||||
|
||||
pm_runtime_get_sync(cinfo->dev); |
||||
atl_write(cinfo, DRA7_ATL_PCLKMUX_REG(0), DRA7_ATL_PCLKMUX); |
||||
|
||||
for (i = 0; i < DRA7_ATL_INSTANCES; i++) { |
||||
struct device_node *cfg_node; |
||||
char prop[5]; |
||||
struct dra7_atl_desc *cdesc; |
||||
struct of_phandle_args clkspec; |
||||
struct clk *clk; |
||||
int rc; |
||||
|
||||
rc = of_parse_phandle_with_args(node, "ti,provided-clocks", |
||||
NULL, i, &clkspec); |
||||
|
||||
if (rc) { |
||||
pr_err("%s: failed to lookup atl clock %d\n", __func__, |
||||
i); |
||||
return -EINVAL; |
||||
} |
||||
|
||||
clk = of_clk_get_from_provider(&clkspec); |
||||
|
||||
cdesc = to_atl_desc(__clk_get_hw(clk)); |
||||
cdesc->cinfo = cinfo; |
||||
cdesc->id = i; |
||||
|
||||
/* Get configuration for the ATL instances */ |
||||
snprintf(prop, sizeof(prop), "atl%u", i); |
||||
cfg_node = of_find_node_by_name(node, prop); |
||||
if (cfg_node) { |
||||
ret = of_property_read_u32(cfg_node, "bws", |
||||
&cdesc->bws); |
||||
ret |= of_property_read_u32(cfg_node, "aws", |
||||
&cdesc->aws); |
||||
if (!ret) { |
||||
cdesc->valid = true; |
||||
atl_write(cinfo, DRA7_ATL_BWSMUX_REG(i), |
||||
cdesc->bws); |
||||
atl_write(cinfo, DRA7_ATL_AWSMUX_REG(i), |
||||
cdesc->aws); |
||||
} |
||||
} |
||||
|
||||
cdesc->probed = true; |
||||
/*
|
||||
* Enable the clock if it has been asked prior to loading the |
||||
* hw driver |
||||
*/ |
||||
if (cdesc->enabled) |
||||
atl_clk_enable(__clk_get_hw(clk)); |
||||
} |
||||
pm_runtime_put_sync(cinfo->dev); |
||||
|
||||
return ret; |
||||
} |
||||
|
||||
static int of_dra7_atl_clk_remove(struct platform_device *pdev) |
||||
{ |
||||
pm_runtime_disable(&pdev->dev); |
||||
|
||||
return 0; |
||||
} |
||||
|
||||
static struct of_device_id of_dra7_atl_clk_match_tbl[] = { |
||||
{ .compatible = "ti,dra7-atl", }, |
||||
{}, |
||||
}; |
||||
MODULE_DEVICE_TABLE(of, of_dra7_atl_clk_match_tbl); |
||||
|
||||
static struct platform_driver dra7_atl_clk_driver = { |
||||
.driver = { |
||||
.name = "dra7-atl", |
||||
.owner = THIS_MODULE, |
||||
.of_match_table = of_dra7_atl_clk_match_tbl, |
||||
}, |
||||
.probe = of_dra7_atl_clk_probe, |
||||
.remove = of_dra7_atl_clk_remove, |
||||
}; |
||||
|
||||
module_platform_driver(dra7_atl_clk_driver); |
||||
|
||||
MODULE_DESCRIPTION("Clock driver for DRA7 Audio Tracking Logic"); |
||||
MODULE_ALIAS("platform:dra7-atl-clock"); |
||||
MODULE_AUTHOR("Peter Ujfalusi <peter.ujfalusi@ti.com>"); |
||||
MODULE_LICENSE("GPL v2"); |
@ -0,0 +1,40 @@ |
||||
/*
|
||||
* This header provides constants for DRA7 ATL (Audio Tracking Logic) |
||||
* |
||||
* The constants defined in this header are used in dts files |
||||
* |
||||
* Copyright (C) 2013 Texas Instruments, Inc. |
||||
* |
||||
* Peter Ujfalusi <peter.ujfalusi@ti.com> |
||||
* |
||||
* This program is free software; you can redistribute it and/or modify |
||||
* it under the terms of the GNU General Public License version 2 as |
||||
* published by the Free Software Foundation. |
||||
* |
||||
* This program is distributed "as is" WITHOUT ANY WARRANTY of any |
||||
* kind, whether express or implied; without even the implied warranty |
||||
* of MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the |
||||
* GNU General Public License for more details. |
||||
*/ |
||||
|
||||
#ifndef _DT_BINDINGS_CLK_DRA7_ATL_H |
||||
#define _DT_BINDINGS_CLK_DRA7_ATL_H |
||||
|
||||
#define DRA7_ATL_WS_MCASP1_FSR 0 |
||||
#define DRA7_ATL_WS_MCASP1_FSX 1 |
||||
#define DRA7_ATL_WS_MCASP2_FSR 2 |
||||
#define DRA7_ATL_WS_MCASP2_FSX 3 |
||||
#define DRA7_ATL_WS_MCASP3_FSX 4 |
||||
#define DRA7_ATL_WS_MCASP4_FSX 5 |
||||
#define DRA7_ATL_WS_MCASP5_FSX 6 |
||||
#define DRA7_ATL_WS_MCASP6_FSX 7 |
||||
#define DRA7_ATL_WS_MCASP7_FSX 8 |
||||
#define DRA7_ATL_WS_MCASP8_FSX 9 |
||||
#define DRA7_ATL_WS_MCASP8_AHCLKX 10 |
||||
#define DRA7_ATL_WS_XREF_CLK3 11 |
||||
#define DRA7_ATL_WS_XREF_CLK0 12 |
||||
#define DRA7_ATL_WS_XREF_CLK1 13 |
||||
#define DRA7_ATL_WS_XREF_CLK2 14 |
||||
#define DRA7_ATL_WS_OSC1_X1 15 |
||||
|
||||
#endif |
Loading…
Reference in new issue