Home
last modified time | relevance | path

Searched refs:analog (Results 1 – 25 of 302) sorted by relevance

12345678910>>...13

/openbmc/linux/drivers/input/joystick/
H A Danalog.c91 struct analog { struct
101 struct analog analog[2]; argument
119 static void analog_decode(struct analog *analog, int *axes, int *initial, int buttons) in analog_decode() argument
121 struct input_dev *dev = analog->dev; in analog_decode()
124 if (analog->mask & ANALOG_HAT_FCS) in analog_decode()
132 if (analog->mask & (0x10 << i)) in analog_decode()
133 input_report_key(dev, analog->buttons[j++], (buttons >> i) & 1); in analog_decode()
135 if (analog->mask & ANALOG_HBTN_CHF) in analog_decode()
137 input_report_key(dev, analog->buttons[j++], (buttons >> (i + 10)) & 1); in analog_decode()
139 if (analog->mask & ANALOG_BTN_TL) in analog_decode()
[all …]
/openbmc/qemu/hw/misc/
H A Dimx7_ccm.c28 memset(s->analog, 0, sizeof(s->analog)); in imx7_analog_reset()
30 s->analog[ANALOG_PLL_ARM] = 0x00002042; in imx7_analog_reset()
31 s->analog[ANALOG_PLL_DDR] = 0x0060302c; in imx7_analog_reset()
32 s->analog[ANALOG_PLL_DDR_SS] = 0x00000000; in imx7_analog_reset()
33 s->analog[ANALOG_PLL_DDR_NUM] = 0x06aaac4d; in imx7_analog_reset()
34 s->analog[ANALOG_PLL_DDR_DENOM] = 0x100003ec; in imx7_analog_reset()
35 s->analog[ANALOG_PLL_480] = 0x00002000; in imx7_analog_reset()
36 s->analog[ANALOG_PLL_480A] = 0x52605a56; in imx7_analog_reset()
37 s->analog[ANALOG_PLL_480B] = 0x52525216; in imx7_analog_reset()
38 s->analog[ANALOG_PLL_ENET] = 0x00001fc0; in imx7_analog_reset()
[all …]
H A Dimx6_ccm.c240 VMSTATE_UINT32_ARRAY(analog, IMX6CCMState, CCM_ANALOG_MAX),
249 if (EXTRACT(dev->analog[CCM_ANALOG_PLL_SYS], DIV_SELECT)) { in imx6_analog_get_pll2_clk()
265 / EXTRACT(dev->analog[CCM_ANALOG_PFD_528], PFD0_FRAC); in imx6_analog_get_pll2_pfd0_clk()
277 / EXTRACT(dev->analog[CCM_ANALOG_PFD_528], PFD2_FRAC); in imx6_analog_get_pll2_pfd2_clk()
419 s->analog[CCM_ANALOG_PLL_ARM] = 0x00013042; in imx6_ccm_reset()
420 s->analog[CCM_ANALOG_PLL_USB1] = 0x00012000; in imx6_ccm_reset()
421 s->analog[CCM_ANALOG_PLL_USB2] = 0x00012000; in imx6_ccm_reset()
422 s->analog[CCM_ANALOG_PLL_SYS] = 0x00013001; in imx6_ccm_reset()
423 s->analog[CCM_ANALOG_PLL_SYS_SS] = 0x00000000; in imx6_ccm_reset()
424 s->analog[CCM_ANALOG_PLL_SYS_NUM] = 0x00000000; in imx6_ccm_reset()
[all …]
H A Dimx6ul_ccm.c290 VMSTATE_UINT32_ARRAY(analog, IMX6ULCCMState, CCM_ANALOG_MAX),
308 if (FIELD_EX32(dev->analog[CCM_ANALOG_PLL_SYS], in imx6ul_analog_get_pll2_clk()
334 / FIELD_EX32(dev->analog[CCM_ANALOG_PFD_528], in imx6ul_analog_get_pll2_pfd0_clk()
347 / FIELD_EX32(dev->analog[CCM_ANALOG_PFD_528], in imx6ul_analog_get_pll2_pfd2_clk()
574 s->analog[CCM_ANALOG_PLL_ARM] = 0x00013063; in imx6ul_ccm_reset()
575 s->analog[CCM_ANALOG_PLL_USB1] = 0x00012000; in imx6ul_ccm_reset()
576 s->analog[CCM_ANALOG_PLL_USB2] = 0x00012000; in imx6ul_ccm_reset()
577 s->analog[CCM_ANALOG_PLL_SYS] = 0x00013001; in imx6ul_ccm_reset()
578 s->analog[CCM_ANALOG_PLL_SYS_SS] = 0x00000000; in imx6ul_ccm_reset()
579 s->analog[CCM_ANALOG_PLL_SYS_NUM] = 0x00000000; in imx6ul_ccm_reset()
[all …]
/openbmc/linux/Documentation/devicetree/bindings/arm/amlogic/
H A Danalog-top.txt1 Amlogic Meson8 and Meson8b "analog top" registers:
4 The analog top registers contain information about the so-called
8 - reg: the register range of the analog top registers
10 - "amlogic,meson8-analog-top"
11 - "amlogic,meson8b-analog-top"
17 analog_top: analog-top@81a8 {
18 compatible = "amlogic,meson8-analog-top", "syscon";
/openbmc/linux/drivers/phy/amlogic/
H A Dphy-meson-axg-pcie.c30 struct phy *analog; member
47 ret = phy_power_on(priv->analog); in phy_axg_pcie_power_on()
61 ret = phy_power_off(priv->analog); in phy_axg_pcie_power_off()
75 ret = phy_init(priv->analog); in phy_axg_pcie_init()
88 ret = phy_exit(priv->analog); in phy_axg_pcie_exit()
100 ret = phy_reset(priv->analog); in phy_axg_pcie_reset()
161 priv->analog = devm_phy_get(dev, "analog"); in phy_axg_pcie_probe()
162 if (IS_ERR(priv->analog)) in phy_axg_pcie_probe()
163 return PTR_ERR(priv->analog); in phy_axg_pcie_probe()
H A Dphy-meson-axg-mipi-dphy.c172 struct phy *analog; member
188 ret = phy_init(priv->analog); in phy_meson_axg_mipi_dphy_init()
209 ret = phy_configure(priv->analog, opts); in phy_meson_axg_mipi_dphy_configure()
224 ret = phy_power_on(priv->analog); in phy_meson_axg_mipi_dphy_power_on()
308 phy_power_off(priv->analog); in phy_meson_axg_mipi_dphy_power_off()
318 ret = phy_exit(priv->analog); in phy_meson_axg_mipi_dphy_exit()
367 priv->analog = devm_phy_get(dev, "analog"); in phy_meson_axg_mipi_dphy_probe()
368 if (IS_ERR(priv->analog)) in phy_meson_axg_mipi_dphy_probe()
369 return PTR_ERR(priv->analog); in phy_meson_axg_mipi_dphy_probe()
H A DMakefile7 obj-$(CONFIG_PHY_MESON_G12A_MIPI_DPHY_ANALOG) += phy-meson-g12a-mipi-dphy-analog.o
9 obj-$(CONFIG_PHY_MESON_AXG_MIPI_PCIE_ANALOG) += phy-meson-axg-mipi-pcie-analog.o
/openbmc/linux/Documentation/hwmon/
H A Dltc2978.rst12 Datasheet: https://www.analog.com/en/products/ltc2972.html
20 Datasheet: https://www.analog.com/en/products/ltc2974
28 Datasheet: https://www.analog.com/en/products/ltc2975
36 Datasheet: https://www.analog.com/en/products/ltc2977
44 Datasheet: https://www.analog.com/en/products/ltc2978
46 https://www.analog.com/en/products/ltc2978a
54 Datasheet: https://www.analog.com/en/products/ltc2979
62 Datasheet: https://www.analog.com/en/products/ltc2980
70 Datasheet: https://www.analog.com/en/products/ltc3880
78 Datasheet: https://www.analog.com/en/products/ltc3882
[all …]
H A Dtwl4030-madc-hwmon.rst29 2 GP analog input
30 3 GP analog input
31 4 GP analog input
32 5 GP analog input
33 6 GP analog input
34 7 GP analog input
H A Dpcf8591.rst25 The PCF8591 is an 8-bit A/D and D/A converter (4 analog inputs and one
26 analog output) for the I2C bus produced by Philips Semiconductors (now NXP).
29 The PCF8591 has 4 analog inputs programmable as single-ended or
87 the value of the corresponding channel. Depending on the current analog inputs
92 The out0_enable file is RW. Reading gives "1" for analog output enabled and
93 "0" for analog output disabled. Writing accepts "0" and "1" accordingly.
96 the value to the digital-to-analog converter. Note that a voltage will
H A Dadm1275.rst12 Datasheet: www.analog.com/static/imported-files/data_sheets/ADM1075.pdf
20 Datasheet: www.analog.com/static/imported-files/data_sheets/ADM1272.pdf
28 Datasheet: www.analog.com/static/imported-files/data_sheets/ADM1275.pdf
36 Datasheet: www.analog.com/static/imported-files/data_sheets/ADM1276.pdf
44 Datasheet: www.analog.com/static/imported-files/data_sheets/ADM1278.pdf
52 Datasheet: https://www.analog.com/media/en/technical-documentation/data-sheets/ADM1293_1294.pdf
67 integrated 12 bit analog-to-digital converter (ADC), accessed using a
H A Dadt7410.rst14 https://www.analog.com/static/imported-files/data_sheets/ADT7410.pdf
23 https://www.analog.com/static/imported-files/data_sheets/ADT7420.pdf
33 https://www.analog.com/static/imported-files/data_sheets/ADT7310.pdf
43 https://www.analog.com/static/imported-files/data_sheets/ADT7320.pdf
/openbmc/linux/drivers/gpu/drm/sti/
H A DNOTES14 - The HDMI / DVO / HD Analog / SD analog IP builds the video signals
16 - The HD analog signal is typically driven by a YCbCr cable, supporting up to
18 - The SD analog signal is typically used for legacy TV
27 | | | | | +---+ HD analog +--> YCbCr
29 dec | | | mixer| | +---+ SD analog +--> CVBS
45 - The Bridges/Connectors are mapped to the HDMI / DVO / HD Analog / SD analog
55 | | | | | | | +-> | | HD analog | <-+
57 | | | mixer| | +-> | | SD analog | <-+
/openbmc/linux/Documentation/devicetree/bindings/sound/
H A Drockchip,rk3288-hdmi-analog.txt1 ROCKCHIP RK3288 with HDMI and analog audio
4 - compatible: "rockchip,rk3288-hdmi-analog"
8 - rockchip,audio-codec: The phandle of the analog audio codec.
17 headphone (when the analog output is an headphone).
19 (when the analog output is an headphone).
25 compatible = "rockchip,rk3288-hdmi-analog";
H A Dtscs42xx.txt5 - compatible : "tempo,tscs42A1" for analog mic
8 - reg : <0x71> for analog mic
/openbmc/linux/Documentation/driver-api/iio/
H A Dintro.rst9 analog-to-digital conversion (ADC) or digital-to-analog conversion (DAC)
19 * analog to digital converters (ADCs)
22 * digital to analog converters (DACs)
/openbmc/u-boot/drivers/adc/
H A DKconfig19 - 10 analog input channels
28 - 4 analog input channels
38 - 8 analog input channels
47 - 2~6 analog input channels
55 This enables driver for STMicroelectronics STM32 analog-to-digital
/openbmc/linux/drivers/iio/addac/
H A DKconfig6 menu "Analog to digital and digital to analog converters"
45 integrated analog PC/104 card.
48 differential) analog inputs, 2 channels of analog output, 4 digital
/openbmc/linux/drivers/media/usb/au0828/
H A DKconfig16 This is a hybrid analog/digital tv capture driver for
23 bool "Auvitek AU0828 v4l2 analog video support"
32 Choose Y here to include support for v4l2 analog video
/openbmc/linux/sound/soc/sunxi/
H A DMakefile5 obj-$(CONFIG_SND_SUN8I_CODEC_ANALOG) += sun8i-codec-analog.o
6 obj-$(CONFIG_SND_SUN50I_CODEC_ANALOG) += sun50i-codec-analog.o
/openbmc/linux/Documentation/sound/cards/
H A Dmixart.rst30 stereo analog capture 'pcm0c' and 1 stereo analog playback 'pcm0p' device.
45 can be muted for each stream to use 8 analog/digital outputs separately.
55 analog volume control of playback and capture PCM.
57 digital volume control of each analog substream.
/openbmc/linux/sound/soc/fsl/
H A Defika-audio-fabric.c32 SND_SOC_DAILINK_DEFS(analog,
48 SND_SOC_DAILINK_REG(analog),
/openbmc/linux/drivers/gpu/drm/bridge/
H A Ddisplay-connector.c223 bool analog, digital; in display_connector_probe() local
225 analog = of_property_read_bool(pdev->dev.of_node, "analog"); in display_connector_probe()
227 if (analog && !digital) { in display_connector_probe()
229 } else if (!analog && digital) { in display_connector_probe()
231 } else if (analog && digital) { in display_connector_probe()
/openbmc/linux/Documentation/input/joydev/
H A Djoystick.rst79 usually you'll have an analog joystick::
81 modprobe analog
88 above input joydev ns558 analog
89 options analog map=gamepad,none,2btn
115 some analog joysticks, that either do not use linear resistors, or if you
144 The analog.c driver uses the standard analog inputs of the gameport, and thus
163 module command line, when inserting analog into the kernel. The
166 analog.map=<type1>,<type2>,<type3>,....
175 none No analog joystick on that port
249 by the analog driver described above.
[all …]

12345678910>>...13