new drm panel driver

キャンセル
次の結果を表示 
表示  限定  | 次の代わりに検索 
もしかして: 
3,267件の閲覧回数
electronic15
Contributor III

Hi,

I must write a driver for a new MIPI DSI panel (HX8394-A01) and I'm not sure about which headers files I must include and which function must be called from them. How do I tell to the uppers layers which function must be called to initialize the panel, or to shut down it, etc?

Is there any documentation about the MIPI DSI API I can consult?

Best regards, 

Gonzalo.

 

0 件の賞賛
返信
1 解決策
3,196件の閲覧回数
electronic15
Contributor III

I found some answers to my question in this post:

https://community.nxp.com/t5/i-MX-Processors/how-to-add-a-new-panel-with-imx8mm-evk-I-got-some-probl...

Also analyzing the panel-raydium-rm67191.c driver I understood that any drm panel driver must contain the these structures and all the functions defined inside them

static const struct backlight_ops my_bl_ops = {
       .update_status = my_bl_update_status,
       .get_brightness = my_bl_get_brightness,
};

static const struct drm_panel_funcs my_panel_funcs = {
    .prepare = my_panel_prepare,
    .unprepare = my_panel_unprepare,
    .enable = my_panel_enable,
    .disable = my_panel_disable,
    .get_modes = my_panel_get_modes,
};

static const struct of_device_id my_of_match[] = {
    { .compatible = "xxxxxx,xxxxxx", }, //must be the same as compatible node in device tree
    { }
};
MODULE_DEVICE_TABLE(of, my_of_match);

static struct mipi_dsi_driver my_panel_driver = {
    .driver = {
         .name = "panel-my-panel-driver", 
         .of_match_table = my_of_match,
     },
    .probe = my_panel_probe, // this is the entry point of the driver
    .remove = my_panel_remove,
    .shutdown = my_panel_shutdown,
};
module_mipi_dsi_driver(my_panel_driver);

 

I was able to add my driver to the AOSP image and configure the device tree files. Although the driver seems to be working well (the MIPI interface is sending the DCS commands properly) the display is still not working so I guess it might be a timing issue. I will keep trying and if I succeed I will share the solution.

元の投稿で解決策を見る

0 件の賞賛
返信
3 返答(返信)
3,197件の閲覧回数
electronic15
Contributor III

I found some answers to my question in this post:

https://community.nxp.com/t5/i-MX-Processors/how-to-add-a-new-panel-with-imx8mm-evk-I-got-some-probl...

Also analyzing the panel-raydium-rm67191.c driver I understood that any drm panel driver must contain the these structures and all the functions defined inside them

static const struct backlight_ops my_bl_ops = {
       .update_status = my_bl_update_status,
       .get_brightness = my_bl_get_brightness,
};

static const struct drm_panel_funcs my_panel_funcs = {
    .prepare = my_panel_prepare,
    .unprepare = my_panel_unprepare,
    .enable = my_panel_enable,
    .disable = my_panel_disable,
    .get_modes = my_panel_get_modes,
};

static const struct of_device_id my_of_match[] = {
    { .compatible = "xxxxxx,xxxxxx", }, //must be the same as compatible node in device tree
    { }
};
MODULE_DEVICE_TABLE(of, my_of_match);

static struct mipi_dsi_driver my_panel_driver = {
    .driver = {
         .name = "panel-my-panel-driver", 
         .of_match_table = my_of_match,
     },
    .probe = my_panel_probe, // this is the entry point of the driver
    .remove = my_panel_remove,
    .shutdown = my_panel_shutdown,
};
module_mipi_dsi_driver(my_panel_driver);

 

I was able to add my driver to the AOSP image and configure the device tree files. Although the driver seems to be working well (the MIPI interface is sending the DCS commands properly) the display is still not working so I guess it might be a timing issue. I will keep trying and if I succeed I will share the solution.

0 件の賞賛
返信
3,255件の閲覧回数
jamesbone
NXP TechSupport
NXP TechSupport

Can you please clarify which device are you using? or planning to use? is an i.MX RT?  are you using LINUX or Android?

 

0 件の賞賛
返信
3,252件の閲覧回数
electronic15
Contributor III

Hi James,

Yes sure, I completely forgot that information. We are using a SOM from variscite based on the imx8 mini processor running Android 9.

Regards,

Gonzalo.

0 件の賞賛
返信