Home
last modified time | relevance | path

Searched full:hertz (Results 1 – 25 of 41) sorted by relevance

12

/linux/rust/kernel/
H A Dclk.rs13 /// Represents a frequency in hertz, wrapping a [`c_ulong`] value.
18 /// use kernel::clk::Hertz;
21 /// let rate = Hertz(hz);
24 /// assert_eq!(rate, Hertz(hz));
25 /// assert_eq!(rate, Hertz::from_khz(hz / 1_000));
26 /// assert_eq!(rate, Hertz::from_mhz(hz / 1_000_000));
27 /// assert_eq!(rate, Hertz::from_ghz(hz / 1_000_000_000));
30 pub struct Hertz(pub c_ulong); struct
32 impl Hertz { impl
52 /// Get the frequency in hertz
[all …]
H A Dopp.rs12 clk::Hertz,
162 /// use kernel::clk::Hertz;
168 /// fn create_opp(dev: &ARef<Device>, freq: Hertz, volt: MicroVolt, level: u32) -> Result<Token> {
177 freq: Hertz,
211 /// use kernel::clk::Hertz;
217 /// fn create_opp(dev: &ARef<Device>, freq: Hertz, volt: MicroVolt, level: u32) -> Result<Token> {
231 pub fn new(freq: Hertz, volt: MicroVolt, level: u32, turbo: bool) -> Self { in new() argument
251 fn freq(&self) -> Hertz { in freq() argument
252 Hertz(self.0.freq) in freq()
263 /// use kernel::clk::Hertz;
[all …]
H A Dcpufreq.rs12 clk::Hertz,
251 pub fn freq(&self, index: TableIndex) -> Result<Hertz> { in freq() argument
254 Ok(Hertz::from_khz(unsafe { in freq()
326 /// use kernel::clk::Hertz;
331 /// builder.add(Hertz::from_mhz(700), 0, 1).unwrap();
332 /// builder.add(Hertz::from_mhz(800), 2, 3).unwrap();
333 /// builder.add(Hertz::from_mhz(900), 4, 5).unwrap();
334 /// builder.add(Hertz::from_ghz(1), 6, 7).unwrap();
341 /// assert_eq!(table.freq(index0), Ok(Hertz::from_mhz(700)));
345 /// assert_eq!(table.freq(index2), Ok(Hertz::from_mhz(900)));
[all …]
/linux/include/linux/phy/
H A Dphy-hdmi.h11 * @tmds_char_rate: HDMI TMDS Character Rate in Hertz.
H A Dphy-mipi-dphy.h258 * Clock rate, in Hertz, of the high-speed clock.
265 * Clock rate, in Hertz, of the low-power clock.
H A Dphy-lvds.h13 * @differential_clk_rate: Clock rate, in Hertz, of the LVDS
/linux/samples/bpf/
H A Dsampleip_user.c32 printf(" -F freq # sample frequency (Hertz), default 99\n"); in usage()
217 printf("Sampling at %d Hertz for %d seconds. Ctrl-C also ends.\n", in main()
/linux/Documentation/devicetree/bindings/clock/
H A Dfsl,plldig.yaml31 description: Optional for VCO frequency of the PLL in Hertz. The VCO frequency
H A Dti,lmk04832.yaml61 description: Optional to set VCO frequency of the PLL in Hertz.
/linux/Documentation/devicetree/bindings/media/
H A Dallwinner,sun4i-a10-ir.yaml54 IR Receiver clock frequency, in Hertz.
/linux/Documentation/devicetree/bindings/regulator/
H A Dmps,mp886x.yaml35 description: The valid switch frequency in Hertz.
/linux/drivers/media/platform/verisilicon/
H A Dhantro_g1_h264_dec.c6 * Hertz Wong <hertz.wong@rock-chips.com>
/linux/drivers/gpu/drm/nouveau/dispnv50/
H A Dheadc37d.c241 NVVAL(NVC37D, HEAD_SET_PIXEL_CLOCK_FREQUENCY, HERTZ, m->clock * 1000)); in headc37d_mode()
244 NVVAL(NVC37D, HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX, HERTZ, m->clock * 1000)); in headc37d_mode()
H A Dhead907d.c364 NVVAL(NV907D, HEAD_SET_PIXEL_CLOCK_FREQUENCY, HERTZ, m->clock * 1000) | in head907d_mode()
373 NVVAL(NV907D, HEAD_SET_PIXEL_CLOCK_FREQUENCY_MAX, HERTZ, m->clock * 1000) | in head907d_mode()
/linux/arch/arm/mach-omap2/
H A Domap_opp_data.h27 * @freq: Frequency in hertz corresponding to this OPP
/linux/Documentation/devicetree/bindings/auxdisplay/
H A Dholtek,ht16k33.yaml31 description: Display update interval in Hertz for dot-matrix displays
/linux/Documentation/devicetree/bindings/input/touchscreen/
H A Dhycon,hy46xx.yaml60 description: Allows setting the report speed in Hertz.
H A Dedt-ft5x06.yaml95 Allows setting the scan rate in Hertz.
/linux/Documentation/devicetree/bindings/mmc/
H A Dti,omap2430-sdhci.yaml123 or bus operates, measured in Hertz (Hz). This value is crucial for configuring
/linux/drivers/net/wireless/ti/wlcore/
H A Dwlcore_i.h202 u32 ref_clock_freq; /* in Hertz */
203 u32 tcxo_clock_freq; /* in Hertz, tcxo is always XTAL */
/linux/Documentation/hwmon/
H A Dmax31760.rst73 pwm1_freq PWM frequency in hertz
/linux/Documentation/gpu/
H A Dzynqmp.rst87 Rate in hertz. One of
/linux/Documentation/devicetree/bindings/net/
H A Dqca,ar803x.yaml51 description: Clock output frequency in Hertz.
/linux/drivers/i2c/busses/
H A Di2c-pca-isa.c194 MODULE_PARM_DESC(clock, "Clock rate in hertz.\n\t\t"
/linux/Documentation/userspace-api/media/rc/
H A Dlirc-dev-intro.rst116 the carrier frequency in Hertz.

12