/linux-5.19.10/drivers/clk/sunxi/ ! |
D | clk-sun4i-tcon-ch1.c | 36 struct tcon_ch1_clk *tclk = hw_to_tclk(hw); in tcon_ch1_disable() local 40 spin_lock_irqsave(&tclk->lock, flags); in tcon_ch1_disable() 41 reg = readl(tclk->reg); in tcon_ch1_disable() 43 writel(reg, tclk->reg); in tcon_ch1_disable() 44 spin_unlock_irqrestore(&tclk->lock, flags); in tcon_ch1_disable() 49 struct tcon_ch1_clk *tclk = hw_to_tclk(hw); in tcon_ch1_enable() local 53 spin_lock_irqsave(&tclk->lock, flags); in tcon_ch1_enable() 54 reg = readl(tclk->reg); in tcon_ch1_enable() 56 writel(reg, tclk->reg); in tcon_ch1_enable() 57 spin_unlock_irqrestore(&tclk->lock, flags); in tcon_ch1_enable() [all …]
|
/linux-5.19.10/arch/arm/mach-dove/ ! |
D | common.c | 76 static struct clk *tclk; variable 92 tclk = clk_register_fixed_rate(NULL, "tclk", NULL, 0, dove_tclk); in dove_clk_init() 113 orion_clkdev_add(NULL, "orion_spi.0", tclk); in dove_clk_init() 114 orion_clkdev_add(NULL, "orion_spi.1", tclk); in dove_clk_init() 115 orion_clkdev_add(NULL, "orion_wdt", tclk); in dove_clk_init() 116 orion_clkdev_add(NULL, "mv64xxx_i2c.0", tclk); in dove_clk_init() 186 IRQ_DOVE_UART_0, tclk); in dove_uart0_init() 195 IRQ_DOVE_UART_1, tclk); in dove_uart1_init() 204 IRQ_DOVE_UART_2, tclk); in dove_uart2_init() 213 IRQ_DOVE_UART_3, tclk); in dove_uart3_init()
|
/linux-5.19.10/Documentation/devicetree/bindings/clock/ ! |
D | mvebu-core-clock.txt | 8 0 = tclk (Internal Bus clock) 15 0 = tclk (Internal Bus clock) 21 0 = tclk (Internal Bus clock) 27 0 = tclk (Internal Bus clock) 35 0 = tclk (Internal Bus clock) 41 0 = tclk (Internal Bus clock) 47 0 = tclk (Internal Bus clock) 72 output names ("tclk", "cpuclk", "l2clk", "ddrclk") 85 /* get tclk from core clock provider */
|
D | mvebu-gated-clock.txt | 189 - clocks : default parent clock phandle (e.g. tclk) 196 /* default parent clock is tclk */
|
/linux-5.19.10/arch/arm/mach-mv78xx0/ ! |
D | common.c | 168 static struct clk *tclk; variable 172 tclk = clk_register_fixed_rate(NULL, "tclk", NULL, 0, get_tclk()); in clk_init() 174 orion_clkdev_init(tclk); in clk_init() 294 IRQ_MV78XX0_UART_0, tclk); in mv78xx0_uart0_init() 304 IRQ_MV78XX0_UART_1, tclk); in mv78xx0_uart1_init() 314 IRQ_MV78XX0_UART_2, tclk); in mv78xx0_uart2_init() 323 IRQ_MV78XX0_UART_3, tclk); in mv78xx0_uart3_init()
|
/linux-5.19.10/arch/arm/plat-orion/ ! |
D | time.c | 197 unsigned int irq, unsigned int tclk) in orion_time_init() argument 207 ticks_per_jiffy = (tclk + HZ/2) / HZ; in orion_time_init() 209 orion_delay_timer.freq = tclk; in orion_time_init() 215 sched_clock_register(orion_read_sched_clock, 32, tclk); in orion_time_init() 228 tclk, 300, 32, clocksource_mmio_readl_down); in orion_time_init() 237 clockevents_config_and_register(&orion_clkevt, tclk, 1, 0xfffffffe); in orion_time_init()
|
D | common.c | 38 void __init orion_clkdev_init(struct clk *tclk) in orion_clkdev_init() argument 40 orion_clkdev_add(NULL, "orion_spi.0", tclk); in orion_clkdev_init() 41 orion_clkdev_add(NULL, "orion_spi.1", tclk); in orion_clkdev_init() 42 orion_clkdev_add(NULL, MV643XX_ETH_NAME ".0", tclk); in orion_clkdev_init() 43 orion_clkdev_add(NULL, MV643XX_ETH_NAME ".1", tclk); in orion_clkdev_init() 44 orion_clkdev_add(NULL, MV643XX_ETH_NAME ".2", tclk); in orion_clkdev_init() 45 orion_clkdev_add(NULL, MV643XX_ETH_NAME ".3", tclk); in orion_clkdev_init() 46 orion_clkdev_add(NULL, "orion_wdt", tclk); in orion_clkdev_init() 47 orion_clkdev_add(NULL, MV64XXX_I2C_CTLR_NAME ".0", tclk); in orion_clkdev_init()
|
/linux-5.19.10/drivers/clk/ ! |
D | clk-vt8500.c | 353 unsigned long tclk; in vt8500_find_pll_bits() local 369 tclk = (parent_rate / *prediv) * *multiplier; in vt8500_find_pll_bits() 371 if (tclk != rate) in vt8500_find_pll_bits() 373 rate, tclk); in vt8500_find_pll_bits() 457 unsigned long tclk, rate_err, best_err; in wm8750_find_pll_bits() local 465 tclk = parent_rate * (mul + 1) / ((div1 + 1) * (1 << div2)); in wm8750_find_pll_bits() 466 if (tclk > rate) in wm8750_find_pll_bits() 469 rate_err = rate - tclk; in wm8750_find_pll_bits() 505 unsigned long tclk, rate_err, best_err; in wm8850_find_pll_bits() local 513 tclk = parent_rate * ((mul + 1) * 2) / in wm8850_find_pll_bits() [all …]
|
/linux-5.19.10/arch/arm/mach-orion5x/ ! |
D | common.c | 66 static struct clk *tclk; variable 70 tclk = clk_register_fixed_rate(NULL, "tclk", NULL, 0, orion5x_tclk); in clk_init() 72 orion_clkdev_init(tclk); in clk_init() 149 IRQ_ORION5X_UART0, tclk); in orion5x_uart0_init() 158 IRQ_ORION5X_UART1, tclk); in orion5x_uart1_init()
|
/linux-5.19.10/drivers/power/reset/ ! |
D | qnap-poweroff.c | 50 static unsigned long tclk; variable 55 const unsigned divisor = ((tclk + (8 * cfg->baud)) / (16 * cfg->baud)); in qnap_power_off() 101 tclk = clk_get_rate(clk); in qnap_power_off_probe()
|
/linux-5.19.10/drivers/i2c/busses/ ! |
D | i2c-mv64xxx.c | 775 const int tclk, const int n, const int m) in mv64xxx_calc_freq() argument 778 return tclk / (10 * (m + 1) * (1 << n)); in mv64xxx_calc_freq() 780 return tclk / (10 * (m + 1) * (2 << n)); in mv64xxx_calc_freq() 785 const u32 req_freq, const u32 tclk) in mv64xxx_find_baud_factors() argument 792 freq = mv64xxx_calc_freq(drv_data, tclk, n, m); in mv64xxx_find_baud_factors() 813 u32 bus_freq, tclk; in mv64xxx_of_config() local 824 tclk = clk_get_rate(drv_data->clk); in mv64xxx_of_config() 833 if (!mv64xxx_find_baud_factors(drv_data, bus_freq, tclk)) { in mv64xxx_of_config()
|
D | i2c-octeon-core.c | 660 int tclk, thp_base, inc, thp_idx, mdiv_idx, ndiv_idx, foscl, diff; in octeon_i2c_set_clock() local 673 tclk = i2c->twsi_freq * (mdiv_idx + 1) * 10; in octeon_i2c_set_clock() 674 tclk *= (1 << ndiv_idx); in octeon_i2c_set_clock() 675 thp_base = (i2c->sys_freq / (tclk * 2)) - 1; in octeon_i2c_set_clock()
|
/linux-5.19.10/arch/arm/plat-orion/include/plat/ ! |
D | time.h | 17 unsigned int irq, unsigned int tclk);
|
D | common.h | 106 void __init orion_clkdev_init(struct clk *tclk);
|
/linux-5.19.10/Documentation/devicetree/bindings/watchdog/ ! |
D | snps,dw-wdt.yaml | 50 - const: tclk 97 clock-names = "tclk";
|
/linux-5.19.10/Documentation/devicetree/bindings/timer/ ! |
D | marvell,orion-timer.txt | 7 - clocks: phandle of timer reference clock (tclk)
|
/linux-5.19.10/Documentation/devicetree/bindings/power/reset/ ! |
D | qnap-poweroff.txt | 15 - clocks: tclk clock
|
/linux-5.19.10/Documentation/devicetree/bindings/ptp/ ! |
D | ptp-qoriq.txt | 16 - fsl,tclk-period Timer reference clock period in nanoseconds. 81 fsl,tclk-period = <10>;
|
/linux-5.19.10/arch/mips/include/asm/octeon/ ! |
D | cvmx-uctlx-defs.h | 357 uint64_t tclk:1; member 365 uint64_t tclk:1;
|
/linux-5.19.10/Documentation/devicetree/bindings/pinctrl/ ! |
D | marvell,armada-370-pinctrl.txt | 52 mpp31 31 gpio, tclk, ge0(txerr) 94 mpp63 63 gpio, spi0(sck), tclk
|
/linux-5.19.10/arch/arm/mach-omap1/ ! |
D | clock.c | 814 void propagate_rate(struct omap1_clk *tclk) in propagate_rate() argument 819 if (WARN_ON(!(clk_hw_get_flags(&tclk->hw) & CLK_GET_RATE_NOCACHE))) in propagate_rate() 822 clkp = clk_get_sys(NULL, clk_hw_get_name(&tclk->hw)); in propagate_rate()
|
/linux-5.19.10/drivers/sh/clk/ ! |
D | core.c | 226 void propagate_rate(struct clk *tclk) in propagate_rate() argument 230 list_for_each_entry(clkp, &tclk->children, sibling) { in propagate_rate()
|
/linux-5.19.10/arch/powerpc/boot/dts/fsl/ ! |
D | bsc9131rdb.dtsi | 87 fsl,tclk-period = <5>;
|
D | bsc9132qds.dtsi | 94 fsl,tclk-period = <5>;
|
/linux-5.19.10/arch/riscv/boot/dts/canaan/ ! |
D | k210.dtsi | 374 clock-names = "tclk", "pclk"; 384 clock-names = "tclk", "pclk";
|