Home
last modified time | relevance | path

Searched refs:rate_config (Results 1 – 8 of 8) sorted by relevance

/linux-3.4.99/arch/arm/mach-spear6xx/
Dclock.c79 .rate_config = {pll_rtbl, ARRAY_SIZE(pll_rtbl), 1},
132 .rate_config = {bus_rtbl, ARRAY_SIZE(bus_rtbl), 2},
170 .rate_config = {aux_rtbl, ARRAY_SIZE(aux_rtbl), 2},
225 .rate_config = {aux_rtbl, ARRAY_SIZE(aux_rtbl), 2},
271 .rate_config = {aux_rtbl, ARRAY_SIZE(aux_rtbl), 2},
332 .rate_config = {gpt_rtbl, ARRAY_SIZE(gpt_rtbl), 2},
394 .rate_config = {gpt_rtbl, ARRAY_SIZE(gpt_rtbl), 2},
438 .rate_config = {gpt_rtbl, ARRAY_SIZE(gpt_rtbl), 2},
514 .rate_config = {bus_rtbl, ARRAY_SIZE(bus_rtbl), 2},
/linux-3.4.99/arch/arm/plat-spear/
Dclock.c422 for (index = 0; index < clk->rate_config.count; index++) { in round_rate_index()
434 } else if (index == clk->rate_config.count) { in round_rate_index()
436 index = clk->rate_config.count - 1; in round_rate_index()
491 struct pll_rate_tbl *tbls = clk->rate_config.tbls; in pll_calc_rate()
546 struct pll_rate_tbl *tbls = clk->rate_config.tbls; in pll_clk_set_rate()
590 struct bus_rate_tbl *tbls = clk->rate_config.tbls; in bus_calc_rate()
614 struct bus_rate_tbl *tbls = clk->rate_config.tbls; in bus_clk_set_rate()
643 struct aux_rate_tbl *tbls = clk->rate_config.tbls; in aux_calc_rate()
690 struct aux_rate_tbl *tbls = clk->rate_config.tbls; in aux_clk_set_rate()
726 struct gpt_rate_tbl *tbls = clk->rate_config.tbls; in gpt_calc_rate()
[all …]
/linux-3.4.99/arch/arm/mach-spear3xx/
Dclock.c80 .rate_config = {pll_rtbl, ARRAY_SIZE(pll_rtbl), 1},
133 .rate_config = {bus_rtbl, ARRAY_SIZE(bus_rtbl), 2},
171 .rate_config = {aux_rtbl, ARRAY_SIZE(aux_rtbl), 1},
217 .rate_config = {aux_rtbl, ARRAY_SIZE(aux_rtbl), 1},
278 .rate_config = {gpt_rtbl, ARRAY_SIZE(gpt_rtbl), 2},
322 .rate_config = {gpt_rtbl, ARRAY_SIZE(gpt_rtbl), 2},
366 .rate_config = {gpt_rtbl, ARRAY_SIZE(gpt_rtbl), 2},
434 .rate_config = {bus_rtbl, ARRAY_SIZE(bus_rtbl), 2},
/linux-3.4.99/arch/arm/plat-spear/include/plat/
Dclock.h66 struct rate_config { struct
105 struct rate_config rate_config; member
/linux-3.4.99/drivers/staging/rtl8192e/rtl8192e/
Drtl_core.c764 void rtl8192_config_rate(struct net_device *dev, u16 *rate_config) in rtl8192_config_rate() argument
775 *rate_config |= RRSR_1M; in rtl8192_config_rate()
778 *rate_config |= RRSR_2M; in rtl8192_config_rate()
781 *rate_config |= RRSR_5_5M; in rtl8192_config_rate()
784 *rate_config |= RRSR_11M; in rtl8192_config_rate()
787 *rate_config |= RRSR_6M; in rtl8192_config_rate()
790 *rate_config |= RRSR_9M; in rtl8192_config_rate()
793 *rate_config |= RRSR_12M; in rtl8192_config_rate()
796 *rate_config |= RRSR_18M; in rtl8192_config_rate()
799 *rate_config |= RRSR_24M; in rtl8192_config_rate()
[all …]
Dr8192E_dev.c961 u16 rate_config = 0; in rtl8192_net_update() local
964 rtl8192_config_rate(dev, &rate_config); in rtl8192_net_update()
966 priv->basic_rate = rate_config &= 0x15f; in rtl8192_net_update()
Drtl_core.h1063 void rtl8192_config_rate(struct net_device *dev, u16 *rate_config);
/linux-3.4.99/drivers/staging/rtl8192u/
Dr8192U_core.c1587 void rtl8192_config_rate(struct net_device* dev, u16* rate_config) in rtl8192_config_rate() argument
1599 case MGN_1M: *rate_config |= RRSR_1M; break; in rtl8192_config_rate()
1600 case MGN_2M: *rate_config |= RRSR_2M; break; in rtl8192_config_rate()
1601 case MGN_5_5M: *rate_config |= RRSR_5_5M; break; in rtl8192_config_rate()
1602 case MGN_11M: *rate_config |= RRSR_11M; break; in rtl8192_config_rate()
1603 case MGN_6M: *rate_config |= RRSR_6M; break; in rtl8192_config_rate()
1604 case MGN_9M: *rate_config |= RRSR_9M; break; in rtl8192_config_rate()
1605 case MGN_12M: *rate_config |= RRSR_12M; break; in rtl8192_config_rate()
1606 case MGN_18M: *rate_config |= RRSR_18M; break; in rtl8192_config_rate()
1607 case MGN_24M: *rate_config |= RRSR_24M; break; in rtl8192_config_rate()
[all …]