-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathpanel-mipi-dbi.bbclass
48 lines (42 loc) · 1.17 KB
/
panel-mipi-dbi.bbclass
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
# SPDX-License-Identifier: MIT
#
# Copyright Pengutronix <[email protected]>
#
# Class to generate firmware files for use with the `panel-mipi-dbi` Linux
# driver.
#
# The firmware source file contains a list of commands to send to the display
# controller in order to initialize it:
#
# $ cat shineworld,lh133k.txt
# command 0x11 # exit sleep mode
# delay 120
#
# # Enable color inversion
# command 0x21 # INVON
# ...
#
# A recipe to compile such a command list into a firmware blob for use with
# the `panel-mipi-dbi` driver looks something like this:
#
# $ cat panel-shineworld-lh133k.bb
# inherit panel-mipi-dbi
#
# SRC_URI = "file://${PANEL_FIRMWARE}"
#
# PANEL_FIRMWARE = "shineworld,lh133k.txt"
# ...
DEPENDS = "panel-mipi-dbi-native"
PANEL_FIRMWARE_BIN ?= "${@d.getVar('PANEL_FIRMWARE').removesuffix('.txt')}.bin"
do_configure[noexec] = "1"
do_compile () {
mipi-dbi-cmd \
"${B}/${PANEL_FIRMWARE_BIN}" \
"${UNPACKDIR}/${PANEL_FIRMWARE}"
}
do_install () {
install -m 0644 -D \
"${B}/${PANEL_FIRMWARE_BIN}" \
"${D}${nonarch_base_libdir}/firmware/${PANEL_FIRMWARE_BIN}"
}
FILES:${PN} = "${nonarch_base_libdir}/firmware/"