Searched refs:iclk (Results 1 - 20 of 20) sorted by relevance

/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/core/
H A Dwdt.c64 dsp_wdt.iclk = clk_get(NULL, "wdt3_ick");
65 if (!dsp_wdt.iclk) {
98 if (dsp_wdt.iclk)
99 clk_put(dsp_wdt.iclk);
102 dsp_wdt.iclk = NULL;
112 if (wdt_enable == enable || !dsp_wdt.fclk || !dsp_wdt.iclk)
119 clk_enable(dsp_wdt.iclk);
127 clk_disable(dsp_wdt.iclk);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/staging/tidspbridge/include/dspbridge/
H A Dwdt.h31 * @iclk handle to wdt3 interface clock
41 struct clk *iclk; member in struct:dsp_wdt_setting
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/host/
H A Dehci-atmel.c18 static struct clk *iclk, *fclk; variable in typeref:struct:clk
25 clk_enable(iclk);
33 clk_disable(iclk);
168 iclk = clk_get(&pdev->dev, "ehci_clk");
169 if (IS_ERR(iclk)) {
193 clk_put(iclk);
219 clk_put(iclk);
220 fclk = iclk = NULL;
H A Dohci-at91.c29 static struct clk *iclk, *fclk, *hclk; variable in typeref:struct:clk
40 clk_enable(iclk);
48 clk_disable(iclk);
143 iclk = clk_get(&pdev->dev, "ohci_clk");
161 clk_put(iclk);
198 clk_put(iclk);
199 fclk = iclk = hclk = NULL;
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-omap1/
H A Dclock.c58 struct arm_idlect1_clk * iclk = (struct arm_idlect1_clk *)clk; local
63 if (iclk->no_idle_count > 0 && !(--iclk->no_idle_count))
64 arm_idlect1_mask |= 1 << iclk->idlect_shift;
69 struct arm_idlect1_clk * iclk = (struct arm_idlect1_clk *)clk; local
74 if (iclk->no_idle_count++ == 0)
75 arm_idlect1_mask &= ~(1 << iclk->idlect_shift);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/mach-omap2/
H A Ddevices.c540 struct clk *iclk, *fclk; local
570 iclk = clk_get(dev, "ick");
571 if (iclk && clk_enable(iclk))
572 iclk = NULL;
578 if (!iclk || !fclk) {
595 if (iclk) {
596 clk_disable(iclk);
597 clk_put(iclk);
H A Dpm34xx.c199 u32 wkst, fclk, iclk, clken; local
210 iclk = cm_read_mod_reg(module, iclk_off);
226 cm_write_mod_reg(iclk, module, iclk_off);
H A Dsram34xx.S178 bic r12, r12, #EN_SDRC_MASK @ disable iclk bit for SDRC
203 orr r12, r12, #EN_SDRC_MASK @ enable iclk bit for SDRC
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/i2c/busses/
H A Di2c-omap.c178 struct clk *iclk; /* Interface clock */ member in struct:omap_i2c_dev
272 dev->iclk = clk_get(dev->dev, "ick");
273 if (IS_ERR(dev->iclk)) {
274 ret = PTR_ERR(dev->iclk);
275 dev->iclk = NULL;
282 if (dev->iclk != NULL) {
283 clk_put(dev->iclk);
284 dev->iclk = NULL;
297 clk_put(dev->iclk);
298 dev->iclk
[all...]
H A Di2c-sh7760.c387 * derived from I2C module clock (iclk) which in turn is derived from
389 * iclk = mclk/(CDF + 1). iclk must be < 20MHz.
390 * scl = iclk/(SCGD*8 + 20).
395 unsigned long mck, m1, dff, odff, iclk; local
410 iclk = mck / (1 + cdf);
411 if (iclk >= 20000000)
413 scgds = ((iclk / scl_hz) - 20) >> 3;
415 m1 = iclk / (20 + (scgd << 3));
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/powerpc/sysdev/
H A Dfsl_gtm.c172 u8 iclk = GTMDR_ICLK_ICLK; local
192 iclk = GTMDR_ICLK_SLGO;
217 clrsetbits_be16(tmr->gtmdr, 0xFFFF, iclk | GTMDR_SPS(sps) |
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/usb/gadget/
H A Dat91_udc.h142 struct clk *iclk, *fclk; member in struct:at91_udc
H A Dat91_udc.c881 clk_enable(udc->iclk);
892 clk_disable(udc->iclk);
1791 udc->iclk = clk_get(dev, "udc_clk");
1793 if (IS_ERR(udc->iclk) || IS_ERR(udc->fclk)) {
1805 clk_enable(udc->iclk);
1810 clk_disable(udc->iclk);
1911 clk_put(udc->iclk);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/mmc/host/
H A Domap_hsmmc.c146 struct clk *iclk; member in struct:omap_hsmmc_host
1101 clk_disable(host->iclk);
1112 clk_enable(host->iclk);
2040 host->iclk = clk_get(&pdev->dev, "ick");
2041 if (IS_ERR(host->iclk)) {
2042 ret = PTR_ERR(host->iclk);
2043 host->iclk = NULL;
2050 clk_put(host->iclk);
2062 clk_put(host->iclk);
2067 if (clk_enable(host->iclk) !
[all...]
H A Domap.c129 struct clk * iclk; member in struct:mmc_omap_host
1459 host->iclk = clk_get(&pdev->dev, "ick");
1460 if (IS_ERR(host->iclk)) {
1461 ret = PTR_ERR(host->iclk);
1464 clk_enable(host->iclk);
1505 clk_disable(host->iclk);
1506 clk_put(host->iclk);
1534 clk_disable(host->iclk);
1535 clk_put(host->iclk);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/crypto/
H A Domap-sham.c137 struct clk *iclk; member in struct:omap_sham_dev
229 clk_enable(dd->iclk);
456 clk_disable(dd->iclk);
1148 dd->iclk = clk_get(dev, "ick");
1149 if (!dd->iclk) {
1162 clk_enable(dd->iclk);
1166 clk_disable(dd->iclk);
1185 clk_put(dd->iclk);
1216 clk_put(dd->iclk);
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-omap/
H A Ddmtimer.c157 struct clk *iclk, *fclk; member in struct:omap_dm_timer
431 clk_enable(timer->iclk);
446 clk_disable(timer->iclk);
781 timer->iclk = clk_get(NULL, clk_name);
H A Dmcbsp.c763 clk_enable(mcbsp->iclk);
813 clk_disable(mcbsp->iclk);
844 clk_disable(mcbsp->iclk);
1787 mcbsp->iclk = clk_get(&pdev->dev, "ick");
1788 if (IS_ERR(mcbsp->iclk)) {
1789 ret = PTR_ERR(mcbsp->iclk);
1812 clk_put(mcbsp->iclk);
1835 clk_disable(mcbsp->iclk);
1837 clk_put(mcbsp->iclk);
1842 mcbsp->iclk
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/drivers/serial/
H A Dsh-sci.c85 struct clk *iclk; member in struct:sci_port
826 sci_port->port.uartclk = clk_get_rate(sci_port->iclk);
837 clk_enable(sci_port->iclk);
838 sci_port->port.uartclk = clk_get_rate(sci_port->iclk);
847 clk_disable(sci_port->iclk);
1651 sci_port->iclk = clk_get(&dev->dev, "sci_ick");
1652 if (IS_ERR(sci_port->iclk)) {
1653 sci_port->iclk = clk_get(&dev->dev, "peripheral_clk");
1654 if (IS_ERR(sci_port->iclk)) {
1655 dev_err(&dev->dev, "can't get iclk\
[all...]
/netgear-R7000-V1.0.7.12_1.2.5/components/opensource/linux/linux-2.6.36/arch/arm/plat-omap/include/plat/
H A Dmcbsp.h455 struct clk *iclk; member in struct:omap_mcbsp

Completed in 152 milliseconds