Firmware of Silead Touchscreen Controller for Jumper EZpad 6 Pro.
修订版 | 97fbf24b89b90a710358280543a631c767033a21 (tree) |
---|---|
时间 | 2016-11-19 02:55:46 |
作者 | Gregor Riepl <onitake@gmai...> |
Commiter | GitHub |
Merge pull request #24 from jwrdegoede/master
Add firmware files ready for use with the upstream Linux silead.ko driver
@@ -0,0 +1,27 @@ | ||
1 | +# Firmware files ready for use with the upstream Linux silead.ko driver | |
2 | + | |
3 | +This directory containts firmware images in the format expected by | |
4 | +the silead.ko driver which is now part of the mainline kernel; and | |
5 | +with filenames such as expected by the devicetree files (for ARM) | |
6 | +shipped with the mainline kernel. | |
7 | + | |
8 | +## Installation | |
9 | + | |
10 | +To install these firmware files for use with the mainline kernel | |
11 | +simply copy the silead directory to /lib/firmware/silead: | |
12 | + | |
13 | + cp -pr silead /lib/firmware | |
14 | + | |
15 | +## List of included firmware files | |
16 | + | |
17 | +| Filename | For use with | | |
18 | +|----------------------------------|--------------| | |
19 | +| gsl1680-a082-q8-700.fw | Allwinner SoC Q8 tablets (https://linux-sunxi.org/Format_Q8) with a gsl1680 with chip-id a082, variant 0 | | |
20 | +| gsl1680-a082-q8-a70.fw | Allwinner SoC Q8 tablets (https://linux-sunxi.org/Format_Q8) with a gsl1680 with chip-id a082, variant 1 | | |
21 | +| gsl1680-b482-q8-d702.fw | Allwinner SoC Q8 tablets (https://linux-sunxi.org/Format_Q8) with a gsl1680 with chip-id b482, variant 0 | | |
22 | +| gsl1680-b482-q8-a70.fw | Allwinner SoC Q8 tablets (https://linux-sunxi.org/Format_Q8) with a gsl1680 with chip-id b482, variant 1 | | |
23 | +| gsl1680-inet86dz.fw | Allwinner A23 7" tablets with inet86dz mainboard | | |
24 | +| gsl1680-polaroid-mid2407pxe03.fw | Polaroid 7" MID2407PXE03 tablets | | |
25 | +| gsl3670-polaroid-mid2809pxe04.fw | Polaroid 9" MID2809PXE04 tablets | | |
26 | +| gsl3675-ga10h.fw | Allwinner A33 10" tablets with ga10h mainboard | | |
27 | +| gsl3675-gt90h.fw | Allwinner A23 9" tablets with ga10h mainboard | |
@@ -20,9 +20,10 @@ if len(args) != 1: | ||
20 | 20 | |
21 | 21 | rodata = args[0] |
22 | 22 | |
23 | -args = rodata.split() | |
23 | +args = rodata.split(']') | |
24 | +args = args[1].split() | |
24 | 25 | |
25 | -offset = int(args[4], 16) | |
26 | +offset = int(args[3], 16) | |
26 | 27 | |
27 | 28 | print ".rodata offset is ", offset, "\n" |
28 | 29 |