| /Zephyr-latest/drivers/mipi_dsi/ |
| D | dsi_test.c | 17 const struct mipi_dsi_device *mdev) in vnd_mipi_dsi_attach() argument 21 ARG_UNUSED(mdev); in vnd_mipi_dsi_attach() 37 const struct mipi_dsi_device *mdev) in vnd_mipi_dsi_detach() argument 41 ARG_UNUSED(mdev); in vnd_mipi_dsi_detach()
|
| D | dsi_renesas_ra.c | 45 const struct mipi_dsi_device *mdev) in mipi_dsi_renesas_ra_attach() argument 51 if (!(mdev->mode_flags & MIPI_DSI_MODE_VIDEO)) { in mipi_dsi_renesas_ra_attach() 56 if (channel == 0 && (mdev->mode_flags & MIPI_DSI_MODE_LPM) == 0) { in mipi_dsi_renesas_ra_attach() 62 cfg.num_lanes = mdev->data_lanes; in mipi_dsi_renesas_ra_attach() 64 if (mdev->pixfmt == MIPI_DSI_PIXFMT_RGB888) { in mipi_dsi_renesas_ra_attach() 66 } else if (mdev->pixfmt == MIPI_DSI_PIXFMT_RGB565) { in mipi_dsi_renesas_ra_attach() 72 cfg.horizontal_active_lines = mdev->timings.hactive; in mipi_dsi_renesas_ra_attach() 73 cfg.horizontal_front_porch = mdev->timings.hfp; in mipi_dsi_renesas_ra_attach() 74 cfg.horizontal_back_porch = mdev->timings.hbp; in mipi_dsi_renesas_ra_attach() 75 cfg.horizontal_sync_lines = mdev->timings.hsync; in mipi_dsi_renesas_ra_attach() [all …]
|
| D | dsi_stm32.c | 234 const struct mipi_dsi_device *mdev) in mipi_dsi_stm32_attach() argument 241 if (!(mdev->mode_flags & MIPI_DSI_MODE_VIDEO)) { in mipi_dsi_stm32_attach() 249 if (mdev->mode_flags & MIPI_DSI_MODE_VIDEO_BURST) { in mipi_dsi_stm32_attach() 251 } else if (mdev->mode_flags & MIPI_DSI_MODE_VIDEO_SYNC_PULSE) { in mipi_dsi_stm32_attach() 257 vcfg->PacketSize = mdev->timings.hactive; in mipi_dsi_stm32_attach() 262 (mdev->timings.hsync * data->lane_clk_khz) / data->pixel_clk_khz; in mipi_dsi_stm32_attach() 264 (mdev->timings.hbp * data->lane_clk_khz) / data->pixel_clk_khz; in mipi_dsi_stm32_attach() 266 ((mdev->timings.hactive + mdev->timings.hsync + mdev->timings.hbp + in mipi_dsi_stm32_attach() 267 mdev->timings.hfp) * data->lane_clk_khz) / data->pixel_clk_khz; in mipi_dsi_stm32_attach() 268 vcfg->VerticalSyncActive = mdev->timings.vsync; in mipi_dsi_stm32_attach() [all …]
|
| D | dsi_mcux_2l.c | 264 const struct mipi_dsi_device *mdev) in dsi_mcux_attach() argument 276 dsi_config.numLanes = mdev->data_lanes; in dsi_mcux_attach() 299 switch (mdev->pixfmt) { in dsi_mcux_attach() 314 mdev->pixfmt); in dsi_mcux_attach() 333 uint8_t data_lanes = mdev->data_lanes; in dsi_mcux_attach() 389 if (((dsi_pixel_clk_freq * bit_width) / mdev->data_lanes) > dphy_bit_clk_freq) { in dsi_mcux_attach() 409 if (mdev->mode_flags & MIPI_DSI_MODE_VIDEO) { in dsi_mcux_attach() 411 DSI_SetDpiConfig(config->base, &config->dpi_config, mdev->data_lanes, in dsi_mcux_attach() 462 const struct mipi_dsi_device *mdev) in dsi_mcux_detach() argument
|
| D | dsi_mcux.c | 159 const struct mipi_dsi_device *mdev) in dsi_mcux_attach() argument 169 dsi_config.numLanes = mdev->data_lanes; in dsi_mcux_attach() 208 if (mdev->mode_flags & MIPI_DSI_MODE_VIDEO) { in dsi_mcux_attach() 211 &config->dpi_config, mdev->data_lanes, in dsi_mcux_attach()
|
| /Zephyr-latest/include/zephyr/drivers/ |
| D | mipi_dsi.h | 124 const struct mipi_dsi_device *mdev); 128 const struct mipi_dsi_device *mdev); 142 const struct mipi_dsi_device *mdev) in mipi_dsi_attach() argument 146 return api->attach(dev, channel, mdev); in mipi_dsi_attach() 236 const struct mipi_dsi_device *mdev) in mipi_dsi_detach() argument 244 return api->detach(dev, channel, mdev); in mipi_dsi_detach()
|
| /Zephyr-latest/drivers/display/ |
| D | display_nt35510.c | 319 struct mipi_dsi_device mdev; in nt35510_init() local 361 mdev.data_lanes = cfg->data_lanes; in nt35510_init() 362 mdev.mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST | MIPI_DSI_MODE_LPM; in nt35510_init() 365 mdev.pixfmt = MIPI_DSI_PIXFMT_RGB565; in nt35510_init() 367 mdev.pixfmt = MIPI_DSI_PIXFMT_RGB888; in nt35510_init() 370 mdev.timings.hactive = data->xres; in nt35510_init() 371 mdev.timings.hbp = NT35510_480X800_HBP; in nt35510_init() 372 mdev.timings.hfp = NT35510_480X800_HFP; in nt35510_init() 373 mdev.timings.hsync = NT35510_480X800_HSYNC; in nt35510_init() 374 mdev.timings.vactive = data->yres; in nt35510_init() [all …]
|
| D | display_ili9806e_dsi.c | 370 struct mipi_dsi_device mdev; in ili9806e_init() local 403 mdev.pixfmt = MIPI_DSI_PIXFMT_RGB565; in ili9806e_init() 405 mdev.pixfmt = MIPI_DSI_PIXFMT_RGB888; in ili9806e_init() 407 mdev.data_lanes = cfg->data_lanes; in ili9806e_init() 408 mdev.mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_LPM; in ili9806e_init() 409 mdev.timings.hactive = cfg->width; in ili9806e_init() 410 mdev.timings.hbp = ILITEK_ILI9806E_HBP; in ili9806e_init() 411 mdev.timings.hfp = ILITEK_ILI9806E_HFP; in ili9806e_init() 412 mdev.timings.hsync = ILITEK_ILI9806E_HSYNC; in ili9806e_init() 413 mdev.timings.vactive = cfg->height; in ili9806e_init() [all …]
|
| D | display_otm8009a.c | 620 struct mipi_dsi_device mdev; in otm8009a_init() local 662 mdev.data_lanes = cfg->data_lanes; in otm8009a_init() 663 mdev.pixfmt = data->dsi_pixel_format; in otm8009a_init() 664 mdev.mode_flags = MIPI_DSI_MODE_VIDEO | MIPI_DSI_MODE_VIDEO_BURST | MIPI_DSI_MODE_LPM; in otm8009a_init() 666 mdev.timings.hactive = data->xres; in otm8009a_init() 667 mdev.timings.hbp = OTM8009A_HBP; in otm8009a_init() 668 mdev.timings.hfp = OTM8009A_HFP; in otm8009a_init() 669 mdev.timings.hsync = OTM8009A_HSYNC; in otm8009a_init() 670 mdev.timings.vactive = data->yres; in otm8009a_init() 671 mdev.timings.vbp = OTM8009A_VBP; in otm8009a_init() [all …]
|
| D | display_rm67162.c | 217 struct mipi_dsi_device mdev = {0}; in rm67162_init() local 223 mdev.data_lanes = config->num_of_lanes; in rm67162_init() 224 mdev.pixfmt = data->pixel_format; in rm67162_init() 226 ret = mipi_dsi_attach(config->mipi_dsi, config->channel, &mdev); in rm67162_init() 562 struct mipi_dsi_device mdev = {0}; in rm67162_pm_action() local 564 mdev.data_lanes = config->num_of_lanes; in rm67162_pm_action() 565 mdev.pixfmt = data->pixel_format; in rm67162_pm_action() 570 return mipi_dsi_detach(config->mipi_dsi, config->channel, &mdev); in rm67162_pm_action() 572 return mipi_dsi_attach(config->mipi_dsi, config->channel, &mdev); in rm67162_pm_action()
|
| D | display_hx8394.c | 540 struct mipi_dsi_device mdev; in hx8394_init() local 556 mdev.data_lanes = config->num_of_lanes; in hx8394_init() 557 mdev.pixfmt = config->pixel_format; in hx8394_init() 559 mdev.mode_flags = MIPI_DSI_MODE_VIDEO; in hx8394_init() 561 ret = mipi_dsi_attach(config->mipi_dsi, config->channel, &mdev); in hx8394_init()
|
| D | display_rm68200.c | 176 struct mipi_dsi_device mdev; in rm68200_init() local 178 mdev.data_lanes = config->num_of_lanes; in rm68200_init() 179 mdev.pixfmt = config->pixel_format; in rm68200_init() 181 mdev.mode_flags = MIPI_DSI_MODE_VIDEO; in rm68200_init() 183 ret = mipi_dsi_attach(config->mipi_dsi, config->channel, &mdev); in rm68200_init()
|
| /Zephyr-latest/samples/drivers/ethernet/eth_ivshmem/ |
| D | README.rst | 118 rtt min/avg/max/mdev = 0.646/1.124/1.450/0.345 ms
|