Home
last modified time | relevance | path

Searched refs:degrees (Results 1 – 25 of 138) sorted by relevance

123456

/linux/include/linux/
A Dfixp-arith.h54 if (degrees > 180) { in __fixp_sin32()
56 degrees -= 180; in __fixp_sin32()
58 if (degrees > 90) in __fixp_sin32()
59 degrees = 180 - degrees; in __fixp_sin32()
61 ret = sin_table[degrees]; in __fixp_sin32()
75 degrees = (degrees % 360 + 360) % 360; in fixp_sin32()
77 return __fixp_sin32(degrees); in fixp_sin32()
115 int degrees; in fixp_sin32_rad() local
127 degrees = (degrees % 360 + 360) % 360; in fixp_sin32_rad()
128 v1 = __fixp_sin32(degrees); in fixp_sin32_rad()
[all …]
/linux/drivers/mmc/host/
A Ddw_mmc-hi3798mv200.c94 static const int degrees[] = { 0, 45, 90, 135, 180, 225, 270, 315 }; in dw_mci_hi3798mv200_execute_tuning_mix_mode() local
108 for (i = 0; i < ARRAY_SIZE(degrees); i++) { in dw_mci_hi3798mv200_execute_tuning_mix_mode()
109 clk_set_phase(priv->sample_clk, degrees[i]); in dw_mci_hi3798mv200_execute_tuning_mix_mode()
147 fall_point = ARRAY_SIZE(degrees) - 1; in dw_mci_hi3798mv200_execute_tuning_mix_mode()
150 (ARRAY_SIZE(degrees) - 1)) in dw_mci_hi3798mv200_execute_tuning_mix_mode()
153 mid = (raise_point + ARRAY_SIZE(degrees) - 1) / 2; in dw_mci_hi3798mv200_execute_tuning_mix_mode()
162 priv->phase_map.phase[MMC_TIMING_MMC_HS200].in_deg = degrees[mid]; in dw_mci_hi3798mv200_execute_tuning_mix_mode()
163 priv->phase_map.phase[MMC_TIMING_MMC_HS400].in_deg = degrees[mid]; in dw_mci_hi3798mv200_execute_tuning_mix_mode()
164 priv->phase_map.phase[MMC_TIMING_UHS_SDR104].in_deg = degrees[mid]; in dw_mci_hi3798mv200_execute_tuning_mix_mode()
166 clk_set_phase(priv->sample_clk, degrees[mid]); in dw_mci_hi3798mv200_execute_tuning_mix_mode()
[all …]
A Ddw_mmc-hi3798cv200.c63 static const int degrees[] = { 0, 45, 90, 135, 180, 225, 270, 315 }; in dw_mci_hi3798cv200_execute_tuning() local
71 for (i = 0; i < ARRAY_SIZE(degrees); i++) { in dw_mci_hi3798cv200_execute_tuning()
72 clk_set_phase(priv->sample_clk, degrees[i]); in dw_mci_hi3798cv200_execute_tuning()
97 fall_point = ARRAY_SIZE(degrees) - 1; in dw_mci_hi3798cv200_execute_tuning()
100 (ARRAY_SIZE(degrees) - 1)) in dw_mci_hi3798cv200_execute_tuning()
103 i = (raise_point + ARRAY_SIZE(degrees) - 1) / 2; in dw_mci_hi3798cv200_execute_tuning()
108 clk_set_phase(priv->sample_clk, degrees[i]); in dw_mci_hi3798cv200_execute_tuning()
110 raise_point, fall_point, degrees[i]); in dw_mci_hi3798cv200_execute_tuning()
A Ddw_mmc-rockchip.c48 u16 degrees; in rockchip_mmc_get_internal_phase() local
61 degrees = (raw_value & ROCKCHIP_MMC_DEGREE_MASK) * 90; in rockchip_mmc_get_internal_phase()
70 degrees += DIV_ROUND_CLOSEST(delay_num * factor, 1000000); in rockchip_mmc_get_internal_phase()
73 return degrees % 360; in rockchip_mmc_get_internal_phase()
87 static int rockchip_mmc_set_internal_phase(struct dw_mci *host, bool sample, int degrees) in rockchip_mmc_set_internal_phase() argument
112 nineties = degrees / 90; in rockchip_mmc_set_internal_phase()
113 remainder = (degrees % 90); in rockchip_mmc_set_internal_phase()
156 sample ? "sample" : "drv", degrees, delay_num, in rockchip_mmc_set_internal_phase()
163 static int rockchip_mmc_set_phase(struct dw_mci *host, bool sample, int degrees) in rockchip_mmc_set_phase() argument
169 return rockchip_mmc_set_internal_phase(host, sample, degrees); in rockchip_mmc_set_phase()
[all …]
/linux/drivers/clk/rockchip/
A Dclk-mmc-phase.c50 u16 degrees; in rockchip_mmc_get_phase() local
59 degrees = (raw_value & ROCKCHIP_MMC_DEGREE_MASK) * 90; in rockchip_mmc_get_phase()
68 degrees += DIV_ROUND_CLOSEST(delay_num * factor, 1000000); in rockchip_mmc_get_phase()
71 return degrees % 360; in rockchip_mmc_get_phase()
74 static int rockchip_mmc_set_phase(struct clk_hw *hw, int degrees) in rockchip_mmc_set_phase() argument
100 nineties = degrees / 90; in rockchip_mmc_set_phase()
101 remainder = (degrees % 90); in rockchip_mmc_set_phase()
141 clk_hw_get_name(hw), degrees, delay_num, in rockchip_mmc_set_phase()
A Dclk-inverter.c35 static int rockchip_inv_set_phase(struct clk_hw *hw, int degrees) in rockchip_inv_set_phase() argument
40 if (degrees % 180 == 0) { in rockchip_inv_set_phase()
41 val = !!degrees; in rockchip_inv_set_phase()
44 __func__, degrees, clk_hw_get_name(hw)); in rockchip_inv_set_phase()
/linux/drivers/clk/meson/
A Dclk-phase.c26 static unsigned int meson_clk_degrees_to_val(int degrees, unsigned int width) in meson_clk_degrees_to_val() argument
28 unsigned int val = DIV_ROUND_CLOSEST(degrees, phase_step(width)); in meson_clk_degrees_to_val()
48 static int meson_clk_phase_set_phase(struct clk_hw *hw, int degrees) in meson_clk_phase_set_phase() argument
54 val = meson_clk_degrees_to_val(degrees, phase->ph.width); in meson_clk_phase_set_phase()
107 static int meson_clk_triphase_set_phase(struct clk_hw *hw, int degrees) in meson_clk_triphase_set_phase() argument
113 val = meson_clk_degrees_to_val(degrees, tph->ph0.width); in meson_clk_triphase_set_phase()
164 static int meson_sclk_ws_inv_set_phase(struct clk_hw *hw, int degrees) in meson_sclk_ws_inv_set_phase() argument
170 val = meson_clk_degrees_to_val(degrees, tph->ph.width); in meson_sclk_ws_inv_set_phase()
/linux/Documentation/hwmon/
A Dds1621.rst107 and 80 degrees respectively).
125 - DS1621: +/- 0.5 degree Celsius (from 0 to +70 degrees)
126 - DS1625: +/- 0.5 degree Celsius (from 0 to +70 degrees)
127 - DS1631: +/- 0.5 degree Celsius (from 0 to +70 degrees)
128 - DS1721: +/- 1.0 degree Celsius (from -10 to +85 degrees)
129 - DS1731: +/- 1.0 degree Celsius (from -10 to +85 degrees)
146 0 0 9 bits, 0.5 degrees Celsius
147 1 0 10 bits, 0.25 degrees Celsius
148 0 1 11 bits, 0.125 degrees Celsius
149 1 1 12 bits, 0.0625 degrees Celsius
[all …]
A Dlm77.rst37 was 80 degrees C, and the hysteresis was 75 degrees C, and you change
38 the critical limit to 90 degrees C, then the hysteresis will
39 automatically change to 85 degrees C.
A Dw83773g.rst26 Temperature is measured in degrees Celsius.
28 range of -40 to +125 degrees Celsius (for local sensor) and -40 to +127
29 degrees Celsius (for remote sensors).
A Dk8temp.rst42 Temperatures are measured in degrees Celsius and measurement resolution is
45 206 degrees C.
61 70 degrees C. The rule of the thumb -> CPU temperature should not cross
62 60 degrees C too much.
A Demc1403.rst83 was 80 degrees C, and the hysteresis was 75 degrees C, and you change
84 the critical limit to 90 degrees C, then the hysteresis will
85 automatically change to 85 degrees C.
A Dtmp513.rst34 The temperatures are measured in degrees Celsius with a range of
35 -40 to + 125 degrees with a resolution of 0.0625 degree C.
39 hysteresis value. The hysteresis is in degrees Celsius with a range of
40 0 to 127.5 degrees with a resolution of 0.5 degree.
A Dad7314.rst28 sensor with 1lsb = 0.25 degrees centigrade. The adt7301 and
29 adt7302 have 14 bit sensors with 1lsb = 0.03125 degrees centigrade.
A Dw83l785ts.rst24 theoretically defined as 85 or 100 degrees C through a combination
27 degrees C. The datasheet is rather poor and obviously inaccurate
30 All temperature values are given in degrees Celsius. Resolution
A Dlm70.rst56 13-bit temperature data (0.0625 degrees celsius resolution).
61 with 0.25 degrees Celsius resolution.
64 data (0.03125 degrees celsius resolution).
A Dhs3001.rst24 and temperature family. Temperature is measured in degrees celsius, relative
26 scaled by 1000, i.e. the value for 31.5 degrees celsius is 31500.
A Dadc128d818.rst24 Temperatures are measured in degrees Celsius. There is one set of limits.
27 Measurements are guaranteed between -55 and +125 degrees. The temperature
28 measurement has a resolution of 0.5 degrees; the limits have a resolution
/linux/Documentation/devicetree/bindings/media/
A Dvideo-interface-devices.yaml29 The camera rotation is expressed as the angular difference in degrees
116 and the projected scene reference system 'Rp'. It is expressed in degrees
121 0 degrees camera rotation:
157 90 degrees camera rotation:
181 180 degrees camera rotation:
199 270 degrees camera rotation:
249 0 degrees, no rotation correction needs to be applied to the resulting
266 'Rp' being rotated 180 degrees relatively to 'Rc':
285 The image once captured to memory will then be rotated by 180 degrees:
299 A software rotation correction of 180 degrees should be applied to
[all …]
/linux/Documentation/devicetree/bindings/iio/afe/
A Dtemperature-sense-rtd.yaml15 (usually 0 to 100 degrees Celsius).
66 between 0 and 100 degrees Celsius.
70 Where, R_100 is the resistance of the sensor at 100 degrees Celsius, and
71 R_0 (or r-naught-ohms) is the resistance of the sensor at 0 degrees
79 Resistance of the sensor at 0 degrees Celsius.
A Dtemperature-transducer.yaml67 This offset is commonly used to convert from Kelvins to degrees Celsius.
83 degrees Celsius or micro-volts per degrees Celsius. The is the main
101 sense-offset-millicelsius = <(-273150)>; /* Kelvin to degrees Celsius */
111 sense-offset-millicelsius = <(-273150)>; /* Kelvin to degrees Celsius */
/linux/drivers/clk/hisilicon/
A Dclk-hisi-phase.c54 int degrees) in hisi_phase_degrees_to_regval() argument
59 if (phase->phase_degrees[i] == degrees) in hisi_phase_degrees_to_regval()
65 static int hisi_clk_set_phase(struct clk_hw *hw, int degrees) in hisi_clk_set_phase() argument
72 regval = hisi_phase_degrees_to_regval(phase, degrees); in hisi_clk_set_phase()
/linux/drivers/clk/sunxi-ng/
A Dccu_phase.c56 static int ccu_phase_set_phase(struct clk_hw *hw, int degrees) in ccu_phase_set_phase() argument
85 if (degrees != 180) { in ccu_phase_set_phase()
105 delay = DIV_ROUND_CLOSEST(degrees, step); in ccu_phase_set_phase()
/linux/Documentation/devicetree/bindings/iio/temperature/
A Dmelexis,mlx90632.yaml17 measured object temperature is in range between -20 to 200 degrees
20 operate and measure ambient temperature in range of -20 to 85 degrees
33 measured object temperature is in range between -20 to 100 degrees
37 operate and measure ambient temperature in range of -20 to 85 degrees
/linux/drivers/gpu/drm/nouveau/dispnv04/
A Doverlay.c75 sin_mul(int degrees, int factor) in sin_mul() argument
77 if (degrees > 180) { in sin_mul()
78 degrees -= 180; in sin_mul()
81 return factor * 4 * degrees * (180 - degrees) / in sin_mul()
82 (40500 - degrees * (180 - degrees)); in sin_mul()
87 cos_mul(int degrees, int factor) in cos_mul() argument
89 return sin_mul((degrees + 90) % 360, factor); in cos_mul()

Completed in 32 milliseconds

123456