diff options
author | Tom Rini <trini@konsulko.com> | 2023-02-04 14:53:00 -0500 |
---|---|---|
committer | Tom Rini <trini@konsulko.com> | 2023-02-04 14:53:00 -0500 |
commit | f8f47e6ff214a3ba7a61025bcc4dc058f507c279 (patch) | |
tree | 081b7f28b6d20344bcfc064dd8b39f0dce742061 /include/dm/ofnode.h | |
parent | a209c3e6b48cf042d0220245a2d1636f74389c17 (diff) | |
parent | 03610ebf3520ae768ff90c4831f39088088ee666 (diff) |
Merge tag 'video-20230204' of https://source.denx.de/u-boot/custodians/u-boot-video
- restore TI AM335x LCDC driver with DM support
- make simple panel independent of backlight
- add ofnode panel timing decode functions with test
- add TIDSS video driver and AM62x splash screen
- add TI logo
Diffstat (limited to 'include/dm/ofnode.h')
-rw-r--r-- | include/dm/ofnode.h | 12 |
1 files changed, 12 insertions, 0 deletions
diff --git a/include/dm/ofnode.h b/include/dm/ofnode.h index fa9865602d8..3f6b0843c58 100644 --- a/include/dm/ofnode.h +++ b/include/dm/ofnode.h @@ -975,6 +975,18 @@ int ofnode_decode_display_timing(ofnode node, int index, struct display_timing *config); /** + * ofnode_decode_panel_timing() - decode display timings + * + * Decode panel timings from the supplied 'panel-timings' node. + * + * @node: 'display-timing' node containing the timing subnodes + * @config: Place to put timings + * Return: 0 if OK, -FDT_ERR_NOTFOUND if not found + */ +int ofnode_decode_panel_timing(ofnode node, + struct display_timing *config); + +/** * ofnode_get_property() - get a pointer to the value of a node property * * @node: node to read |