Home
last modified time | relevance | path

Searched full:driver (Results 1 – 25 of 2181) sorted by relevance

12345678910>>...88

/Zephyr-Core-2.7.6/modules/
DKconfig.stm3219 Enable STM32Cube Analog-to-Digital Converter (ADC) HAL module driver
25 module driver
30 Enable STM32Cube Controller Area Network (CAN) HAL module driver
35 Enable STM32Cube HDMI-CEC controller (CEC) HAL module driver
41 driver
46 Enable STM32Cube CORTEX HAL module driver
52 module driver
58 (CRC) HAL module driver
63 Enable STM32Cube Cryptographic processor (CRYP) HAL module driver
69 driver
[all …]
/Zephyr-Core-2.7.6/drivers/i2c/
DKconfig12 Enable I2C Driver Configuration
52 I2C device driver initialization priority.
60 bool "Gecko I2C driver"
64 Enable the SiLabs Gecko I2C bus driver.
67 bool "Atmel SAM (TWIHS) I2C driver"
70 Enable Atmel SAM MCU Family (TWIHS) I2C bus driver.
73 bool "Atmel SAM (TWIM) I2C driver"
76 Enable Atmel SAM MCU Family (TWIM) I2C bus driver.
79 bool "Atmel SAM (TWI) I2C driver"
82 Enable Atmel SAM MCU Family (TWI) I2C bus driver.
[all …]
/Zephyr-Core-2.7.6/drivers/usb/device/
DKconfig14 bool "Designware USB Device Controller Driver"
16 Designware USB Device Controller Driver.
25 bool "USB device controller driver for STM32 devices"
42 bool "SAM0 series USB Device Controller driver"
46 SAM0 family USB device controller Driver.
51 bool "SAM4L USBC Device Controller driver"
55 SAM4L family USBC device controller Driver.
58 bool "SAM series USB HS Device Controller driver"
62 SAM family USB HS device controller Driver.
65 bool "Nordic Semiconductor USB Device Controller Driver"
[all …]
/Zephyr-Core-2.7.6/modules/hal_nordic/nrfx/
DKconfig11 bool "Enable ADC driver"
15 bool "Enable CLOCK driver"
23 bool "Enable COMP driver"
31 bool "Enable EGU driver"
66 bool "Enable GPIOTE driver"
70 bool "Enable I2S driver"
74 bool "Enable IPC driver"
78 bool "Enable LPCOMP driver"
82 bool "Enable NFCT driver"
88 bool "Enable NVMC driver"
[all …]
/Zephyr-Core-2.7.6/drivers/gpio/
DKconfig.dw9 Enable driver for Designware GPIO
20 Device driver initialization priority.
34 Include Designware GPIO driver
48 When interrupts fire, the driver's ISR function is being called directly.
55 When interrupts fire, the shared IRQ driver is notified. Then the shared IRQ
56 driver dispatches the interrupt to other drivers.
63 Include Designware GPIO driver
77 When interrupts fire, the driver's ISR function is being called directly.
84 When interrupts fire, the shared IRQ driver is notified. Then the shared IRQ
85 driver dispatches the interrupt to other drivers.
[all …]
DKconfig.lmp90xxx7 bool "LMP90xxx GPIO driver"
10 Enable GPIO driver for LMP90xxx.
16 GPIO controller driver with read/write support.
19 int "Driver init priority"
23 Device driver initialization priority. This driver must be
24 initialized after the LMP90xxx ADC driver.
/Zephyr-Core-2.7.6/drivers/hwinfo/
DKconfig1 # HW Info driver configuration options
7 bool "Hardware Information driver"
9 Enable hwinfo driver.
29 Enable STM32 hwinfo driver.
36 Enable Nordic NRF hwinfo driver.
43 Enable NXP kinetis mcux RCM hwinfo driver.
50 Enable NXP kinetis mcux SIM hwinfo driver.
57 Enable NXP LPC mcux hwinfo driver.
64 Enable NXP i.mx RT hwinfo driver.
71 Enable Atmel SAM hwinfo driver.
[all …]
/Zephyr-Core-2.7.6/drivers/display/
Dssd16xx.c25 * SSD1673, SSD1608, SSD1681, ILI3897 compatible EPD controller driver.
79 static inline int ssd16xx_write_cmd(struct ssd16xx_data *driver, in ssd16xx_write_cmd() argument
86 gpio_pin_set(driver->dc, SSD16XX_DC_PIN, 1); in ssd16xx_write_cmd()
87 err = spi_write_dt(&driver->config->bus, &buf_set); in ssd16xx_write_cmd()
95 gpio_pin_set(driver->dc, SSD16XX_DC_PIN, 0); in ssd16xx_write_cmd()
96 err = spi_write_dt(&driver->config->bus, &buf_set); in ssd16xx_write_cmd()
105 static inline void ssd16xx_busy_wait(struct ssd16xx_data *driver) in ssd16xx_busy_wait() argument
107 int pin = gpio_pin_get(driver->busy, SSD16XX_BUSY_PIN); in ssd16xx_busy_wait()
112 pin = gpio_pin_get(driver->busy, SSD16XX_BUSY_PIN); in ssd16xx_busy_wait()
143 static inline int ssd16xx_set_ram_param(struct ssd16xx_data *driver, in ssd16xx_set_ram_param() argument
[all …]
DKconfig.ili9xxx1 # ILI9XXX display driver configuration options
14 bool "ILI9340 display driver"
18 Enable driver for ILI9340 display driver.
21 bool "ILI9341 display driver"
25 Enable driver for ILI9341 display driver.
28 bool "ILI9488 display driver"
32 Enable driver for ILI9488 display driver.
Dgd7965.c23 * GD7965 compatible EPD controller driver.
71 static inline int gd7965_write_cmd(struct gd7965_data *driver, in gd7965_write_cmd() argument
77 gpio_pin_set(driver->dc, GD7965_DC_PIN, 1); in gd7965_write_cmd()
78 if (spi_write_dt(&driver->config->bus, &buf_set)) { in gd7965_write_cmd()
85 gpio_pin_set(driver->dc, GD7965_DC_PIN, 0); in gd7965_write_cmd()
86 if (spi_write_dt(&driver->config->bus, &buf_set)) { in gd7965_write_cmd()
94 static inline void gd7965_busy_wait(struct gd7965_data *driver) in gd7965_busy_wait() argument
96 int pin = gpio_pin_get(driver->busy, GD7965_BUSY_PIN); in gd7965_busy_wait()
102 pin = gpio_pin_get(driver->busy, GD7965_BUSY_PIN); in gd7965_busy_wait()
108 struct gd7965_data *driver = dev->data; in gd7965_update_display() local
[all …]
/Zephyr-Core-2.7.6/drivers/timer/
DKconfig1 # Timer driver configuration options
63 Extremely simple timer driver based the local APIC TSC
97 This module implements a kernel device driver for the ARCv2 processor timer 0
98 and provides the standard "system clock driver" interfaces.
114 This module implements a kernel device driver for the ARM architected
132 This module implements a kernel device driver for the Cortex-M processor
133 SYSTICK timer and provides the standard "system clock driver" interfaces.
140 This module implements a kernel device driver for the Altera Avalon
143 standard "system clock driver" interfaces.
146 bool "ITE it8xxx2 timer driver"
[all …]
/Zephyr-Core-2.7.6/drivers/entropy/
DKconfig.mcux1 # mcux entropy generator driver configuration
7 bool "MCUX RNGA driver"
12 driver based on the MCUX RNGA driver.
15 bool "MCUX TRNG driver"
20 driver based on the MCUX TRNG driver.
23 bool "MCUX RNG driver"
28 driver based on the MCUX RNG driver on LPC Family.
/Zephyr-Core-2.7.6/drivers/ipm/
DKconfig12 bool "MCUX IPM driver"
15 Driver for MCUX mailbox
18 bool "IMX IPM driver"
21 Driver for NXP i.MX messaging unit
67 bool "IPM MHU driver"
69 Driver for SSE 200 MHU (Message Handling Unit)
72 bool "IPM NRF driver"
76 Driver for Nordic nRF messaging unit, based
92 Driver for stm32 IPCC mailboxes
103 bool "CAVS DSP Intra-DSP Communication (IDC) driver"
[all …]
/Zephyr-Core-2.7.6/boards/arm/npcx9m6f_evb/
Dnpcx9m6f_evb_defconfig26 # UART Driver
30 # GPIO Driver
33 # PWM Driver
36 # ADC Driver
39 # WDT Driver
42 # ESPI Driver
45 # I2C Driver
48 # Console Driver
/Zephyr-Core-2.7.6/boards/arm/npcx7m6fb_evb/
Dnpcx7m6fb_evb_defconfig26 # UART Driver
30 # GPIO Driver
33 # PWM Driver
36 # ADC Driver
39 # WDT Driver
42 # ESPI Driver
45 # I2C Driver
48 # Console Driver
/Zephyr-Core-2.7.6/drivers/bluetooth/hci/
DKconfig6 comment "Bluetooth HCI Driver Options"
12 prompt "Bluetooth HCI driver"
21 Bluetooth H:4 UART driver. Requires hardware flow control
30 Bluetooth three-wire (H:5) UART driver. Implementation of HCI
36 Bluetooth HCI driver for communication with another CPU
57 bool "HCI User Channel based driver"
60 This driver provides access to the local Linux host's Bluetooth
67 bool "ESP32 HCI driver"
72 bool "No default HCI driver"
74 This is intended for unit tests where no internal driver
[all …]
/Zephyr-Core-2.7.6/drivers/adc/
DKconfig.mcux7 bool "MCUX ADC12 driver"
10 Enable the MCUX ADC12 driver.
13 bool "MCUX ADC16 driver"
16 Enable the MCUX ADC16 driver.
19 bool "MCUX LPADC driver"
22 Enable the MCUX LPADC driver.
57 bool "Enable EDMA for adc driver"
60 Enable the MCUX ADC16 driver.
68 Device driver initialization priority.
/Zephyr-Core-2.7.6/drivers/espi/
DKconfig.xec7 bool "XEC Microchip ESPI driver"
10 Enable the Microchip XEC ESPI driver.
37 This tells the driver to which SoC UART to direct the UART traffic
58 bool "XEC Microchip ESPI SAF driver"
62 Enable Slave Attached Flash eSPI driver. SAF depends upon ESPI XEC driver
66 int "ESPI SAF driver initialization priority"
70 Driver initialization priority for eSPI SAF driver.
/Zephyr-Core-2.7.6/drivers/serial/
DKconfig.pl0115 bool "ARM PL011 UART Driver"
9 This option enables the UART driver for the PL011
14 bool "Enable driver for UART 0"
16 Build the driver to utilize UART controller Port 0.
19 bool "Enable driver for UART 1"
21 Build the driver to utilize UART controller Port 1.
26 Enable SBSA mode for PL011 driver. SBSA stands for
/Zephyr-Core-2.7.6/drivers/ps2/
DKconfig.npcx7 bool "Nuvoton NPCX embedded controller (EC) PS2 driver"
10 Enable the NPCX family PS2 driver. It provides four PS/2 channels.
13 PS/2-compatible pointing device.The driver also depends on the KBC
19 int "PS/2 channel driver init priority"
22 PS/2 channel device driver initialization priority.
24 NPCX PS/2 controller device driver should initialize
25 prior to channel device driver.
/Zephyr-Core-2.7.6/drivers/led_strip/
DKconfig.ws281211 bool "Enable WS2812 (and compatible) LED strip driver"
14 Enable LED strip driver for daisy chains of WS2812-ish (or WS2812B,
18 prompt "Driver backend"
23 bool "Enable the SPI driver"
26 The SPI driver is portable, but requires significantly more
30 bool "Enable the GPIO driver"
35 The GPIO driver does bit-banging with inline assembly,
38 Note that this driver is not compatible with the Everlight B1414
/Zephyr-Core-2.7.6/drivers/watchdog/
DKconfig.mcux7 bool "MCUX WDOG driver"
10 Enable the mcux wdog driver.
13 bool "MCUX WDOG32 driver"
16 Enable the mcux wdog32 driver.
19 bool "MCUX WWDT driver"
22 Enable the mcux wwdt driver.
/Zephyr-Core-2.7.6/drivers/net/
DKconfig13 bool "Point-to-point (PPP) UART based driver"
26 string "PPP Driver name"
29 This option sets the driver name
88 module-str = Log level for ppp driver
89 module-help = Sets log level for ppp driver.
98 bool "SLIP driver" if !QEMU_TARGET
106 string "SLIP Driver name"
109 This option sets the driver name
113 module-str = Log level for slip driver
114 module-help = Sets log level for slip driver.
[all …]
/Zephyr-Core-2.7.6/drivers/sensor/iis2dlpc/
DKconfig1 # ST Microelectronics IIS2DLPC 3-axis accelerometer driver
7 bool "IIS2DLPC I2C/SPI accelerometer sensor driver"
12 Enable driver for IIS2DLPC accelerometer sensor driver
19 Specify the type of triggering to be used by the driver.
46 Priority of thread used by the driver to handle interrupts.
53 Stack size of thread used by the driver to handle interrupts.
/Zephyr-Core-2.7.6/drivers/sensor/lis2dw12/
DKconfig1 # ST Microelectronics LIS2DW12 3-axis accelerometer driver
7 bool "LIS2DW12 I2C/SPI accelerometer sensor driver"
12 Enable driver for LIS2DW12 accelerometer sensor driver
19 Specify the type of triggering to be used by the driver.
46 Priority of thread used by the driver to handle interrupts.
53 Stack size of thread used by the driver to handle interrupts.

12345678910>>...88