Home
last modified time | relevance | path

Searched refs:hw_if (Results 1 – 10 of 10) sorted by relevance

/bsp/hpmicro/libraries/hpm_sdk/components/panel/panels/
A Dcc10128007.c13 LVB_Type *lvb_base = panel->hw_if.video.lvds.lvb_base; in lvds_panel_lvb_init()
24 if (panel->hw_if.video.lvds.channel_di_index == 0) in lvds_panel_lvb_init()
29 if (panel->hw_if.video.lvds.channel_index == 0) { in lvds_panel_lvb_init()
76 if (!panel->hw_if.set_reset_pin_level) in reset()
79 panel->hw_if.set_reset_pin_level(0); in reset()
82 panel->hw_if.set_reset_pin_level(1); in reset()
88 if (panel->hw_if.set_video_router) in init()
89 panel->hw_if.set_video_router(); in init()
98 panel->hw_if.set_backlight) { in power_on()
110 panel->hw_if.set_backlight) { in power_off()
[all …]
A Dmc10128007_31b.c219 MIPI_DSI_Type *mipi_host = panel->hw_if.video.mipi.mipi_host_base; in mipi_panel_init_cmd_send()
248 MIPI_DSI_Type *mipi_host = panel->hw_if.video.mipi.mipi_host_base; in mipi_panel_host_init()
270 MIPI_DSI_Type *mipi_host = panel->hw_if.video.mipi.mipi_host_base; in mipi_panel_phy_init()
284 if (!panel->hw_if.set_reset_pin_level) in reset()
287 panel->hw_if.set_reset_pin_level(0); in reset()
290 panel->hw_if.set_reset_pin_level(1); in reset()
296 if (panel->hw_if.set_video_router) in init()
297 panel->hw_if.set_video_router(); in init()
311 if (panel->hw_if.set_backlight) { in power_on()
325 if (panel->hw_if.set_backlight) in power_off()
[all …]
A Dtm070rdh13.c11 if (!panel->hw_if.set_reset_pin_level) in reset()
14 panel->hw_if.set_reset_pin_level(0); in reset()
17 panel->hw_if.set_reset_pin_level(1); in reset()
23 if (panel->hw_if.set_video_router) in init()
24 panel->hw_if.set_video_router(); in init()
30 panel->hw_if.set_backlight) { in power_on()
34 panel->hw_if.set_backlight(panel->state.backlight_percent); in power_on()
42 panel->hw_if.set_backlight) { in power_off()
44 panel->hw_if.set_backlight(0); in power_off()
A Dtm103xdgp01.c13 LVB_Type *lvb_base = panel->hw_if.video.lvds.lvb_base; in lvds_panel_lvb_init()
24 if (panel->hw_if.video.lvds.channel_di_index == 0) in lvds_panel_lvb_init()
38 LVB_Type *lvb_base = panel->hw_if.video.lvds.lvb_base; in lvds_panel_phy_init()
40 uint32_t pixel_clk = panel->hw_if.lcdc_pixel_clk_khz * 1000; in lvds_panel_phy_init()
68 if (!panel->hw_if.set_reset_pin_level) in reset()
71 panel->hw_if.set_reset_pin_level(0); in reset()
74 panel->hw_if.set_reset_pin_level(1); in reset()
80 if (panel->hw_if.set_video_router) in init()
81 panel->hw_if.set_video_router(); in init()
/bsp/hpmicro/libraries/hpm_sdk/components/panel/
A Dhpm_panel.c67 void hpm_panel_register_interface(hpm_panel_t *panel, hpm_panel_hw_interface_t *hw_if) in hpm_panel_register_interface() argument
69 if (hw_if) in hpm_panel_register_interface()
70 memcpy(&panel->hw_if, hw_if, sizeof(*hw_if)); in hpm_panel_register_interface()
102 if (panel->hw_if.set_backlight && in hpm_panel_set_backlight()
104 panel->hw_if.set_backlight(percent); in hpm_panel_set_backlight()
A Dhpm_panel.h91 hpm_panel_hw_interface_t hw_if; member
148 void hpm_panel_register_interface(hpm_panel_t *panel, hpm_panel_hw_interface_t *hw_if);
/bsp/hpmicro/hpm6800evk/board/
A Dboard.c624 hpm_panel_hw_interface_t hw_if = {0}; in board_init_lcd_rgb_tm070rdh13() local
632 hpm_panel_register_interface(panel, &hw_if); in board_init_lcd_rgb_tm070rdh13()
666 hpm_panel_hw_interface_t hw_if = {0}; in board_init_lcd_lvds_cc10128007() local
674 hw_if.video.lvds.channel_di_index = 0; in board_init_lcd_lvds_cc10128007()
676 hw_if.video.lvds.lvb_base = HPM_LVB; in board_init_lcd_lvds_cc10128007()
678 hpm_panel_register_interface(panel, &hw_if); in board_init_lcd_lvds_cc10128007()
710 hpm_panel_hw_interface_t hw_if = {0}; in board_init_lcd_mipi_mc10128007_31b() local
720 hpm_panel_register_interface(panel, &hw_if); in board_init_lcd_mipi_mc10128007_31b()
755 hpm_panel_hw_interface_t hw_if = {0}; in board_init_lcd_lvds_tm103xdgp01() local
764 hw_if.video.lvds.channel_di_index = 0; in board_init_lcd_lvds_tm103xdgp01()
[all …]
/bsp/hpmicro/hpm6750evkmini/board/
A Dboard.c287 hpm_panel_hw_interface_t hw_if = {0}; in board_init_lcd_rgb_tm070rdh13() local
291 hw_if.set_reset_pin_level = set_reset_pin_level_tm070rdh13; in board_init_lcd_rgb_tm070rdh13()
292 hw_if.set_backlight = set_backlight_tm070rdh13; in board_init_lcd_rgb_tm070rdh13()
293 hw_if.lcdc_pixel_clk_khz = lcdc_pixel_clk_khz; in board_init_lcd_rgb_tm070rdh13()
294 hpm_panel_register_interface(panel, &hw_if); in board_init_lcd_rgb_tm070rdh13()
/bsp/hpmicro/hpm6750evk2/board/
A Dboard.c254 hpm_panel_hw_interface_t hw_if = {0}; in board_init_lcd_rgb_tm070rdh13() local
258 hw_if.set_reset_pin_level = set_reset_pin_level_tm070rdh13; in board_init_lcd_rgb_tm070rdh13()
259 hw_if.set_backlight = set_backlight_tm070rdh13; in board_init_lcd_rgb_tm070rdh13()
260 hw_if.lcdc_pixel_clk_khz = lcdc_pixel_clk_khz; in board_init_lcd_rgb_tm070rdh13()
261 hpm_panel_register_interface(panel, &hw_if); in board_init_lcd_rgb_tm070rdh13()
/bsp/hpmicro/hpm6750evk/board/
A Dboard.c271 hpm_panel_hw_interface_t hw_if = {0}; in board_init_lcd_rgb_tm070rdh13() local
275 hw_if.set_reset_pin_level = set_reset_pin_level_tm070rdh13; in board_init_lcd_rgb_tm070rdh13()
276 hw_if.set_backlight = set_backlight_tm070rdh13; in board_init_lcd_rgb_tm070rdh13()
277 hw_if.lcdc_pixel_clk_khz = lcdc_pixel_clk_khz; in board_init_lcd_rgb_tm070rdh13()
278 hpm_panel_register_interface(panel, &hw_if); in board_init_lcd_rgb_tm070rdh13()

Completed in 31 milliseconds