-
Notifications
You must be signed in to change notification settings - Fork 9
/
x86-tablet-info
2199 lines (1957 loc) · 80.5 KB
/
x86-tablet-info
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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
============ Ace =============
Ace W5 Pro HDMI stick (in black straightpower 450W psy box)
-HDMI out
-CPU: Cherry Trail x5-Z8350, 2GB RAM
-Wifi: brcmfmac43455-sdio
============ Acer ============
Acer Aspire Switch 10 (SW5-012) (in big black unmarked shoebox)
-10" 1280x800 DSI 24 bpp, PWM: LPSS, freq: actual 1525 VBT 1600, 13-255
-Touchscreen: SYNA7300 06CB:0E75, without capacitive home-button
-Has separate physical home button
-CPU: Bay Trail Z3735F, 2G RAM
-Wifi: RTL8723BS
-Accel: INVN6500
-Ambient light: Capella cm3218?
-Audio codec: ALC5640
-PMIC: Crystal Cove (BYT), charging only through power-barrel 12V, 1.5A
-Dock:
-GL850G usb-hub
-GL3321G USB3 to 6gbps SATA chip
-ITE it8595e-128 keyboard + touchpad controller
-USB 06cb:81a7 supports standard HID multi-touch
-Touchpad controller: Synaptics S9102B or S91028 likely: S910ZB
-Touchpad on/off toggle is handled inside the dock,
touchpad stops sending events when toggled
-HID events are send when the touchpad is toggled on/off, mapped to KEY_TOUCHPAD_ON / _OFF
-PWM is not listed in ACPI, breaking backlight ctrl, requires DSDT override fix
-https://linux-hardware.org/index.php?computer=d0a7a08478d7
Acer Aspire Switch 10E (SW3-016) (in hema bin behind amplifier)
-10" 1280x800 DSI 24 bpp, PWM: LPSS
-Touchscreen: ELAN1001 i2c-hid, without capacitive home-button
-Has separate physical home button
-Looses calibration after a while and then starts ging crazy with ghost touches
-Workaround:
1. Run a systemd timer which does:
gpioset 'INT33FF:01' 25=0
gpioset 'INT33FF:01' 25=1
Which resets the controller every 2 minutes
2. Run a bash script which monitors SW_TABLET_MODE and resets the
touchscreen controller immediately if SW_TABLET_MODE changes
-CPU: Cherry Trail x5-Z8300, 2GB RAM
-Wifi: RTL8723BS
-Accel: KIOX0009, mount matrix ok
-ALS: CPLM3218
-Audio codec: ALC5640
-PMIC: TI Dollar Cove, charging only through micro USB 5V/2A
-Dock, seems to have 2 separate USB connections on the dock connector,
1 for the A-port and one for the kbd/mouse
-ITE8910 kbd controller
-USB 06cb:73f5 (same as S1003) supports standard HID multi-touch
-Touchpad on/off toggle is handled inside the dock,
touchpad stops sending events when toggled
-HID events are send when the touchpad is toggled on/off, mapped to KEY_TOUCHPAD_ON / _OFF
-https://linux-hardware.org/index.php?computer=7af9d429ab03
-https://www.acer.com/ac/en/US/content/support-product/6460?b=1&pn=NT.G8VEH.004
Acer Aspire Switch V 10 (SW5-017) (in dark blue asics shoebox)
-10" 1280x800 DSI 24 bpp, PWM: LPSS
-Touchscreen: FTSC1000 i2c-hid, without capacitive home-button
-Has separate physical home button
-CPU: Cherry Trail x5-Z8350, 4GB RAM
-Wifi: Atheros QCA6174 802.11ac (PCI)
-Accel: BOSC0200, mount matrix ok
-ALS: CPLM3218
-Audio codec: ALC5645
-PMIC: TI Dollar Cove, charging through power-barrel at 12V 1.5A, or through
Type-C with PD also at 12V
-Type-C connector: superspeed, PD charging at 12V, DP altmode, everything works OOTB
-Camera sensor HIMX2051: Supported by unicam driver in android_kernel_intel_cherrytrail
-Camera sensor OVTI5670: Has sensor driver in main kernel
Also in Kernel-for-Asus-Zenfone-2/drivers/external_drivers/camera/drivers/media/i2c/ov5670.c
-USB fingerprint reader
-Dock, seems to have 2 separate USB connections on the dock connector,
1 for the A-port and one for the kbd/mouse
-ITE8910 kbd controller
-USB 06cb:73f6 supports standard HID multi-touch
-Touchpad on/off toggle is handled inside the dock,
touchpad stops sending events when toggled
-HID events are send when the touchpad is toggled on/off, mapped to KEY_TOUCHPAD_ON / _OFF
-https://linux-hardware.org/?probe=d4ff3ee29e
Acer One 10 (S1002 (aka N15P2) (in hema bin behind amplifier)
-10" 1280x800 DSI 24 bpp, PWM: LPSS
-Touchscreen: FTSC9999 2808:5012
-With capacative home-button through gpio-keys
-CPU: Bay Trail Z3735G, 1G RAM
-Wifi: RTL8723BS
-Accel: SMO8500, mount-matrix ok
-Audio codec: ALC5640
-PMIC: Crystal Cove (BYT), charging through both power-barrel 5V/3A or micro-usb 5V/2A
Charge-IC BQ24192
-OTG: No mux, host mode only
-Dock:
-ITE8910 kbd controller
-USB 06cb:73f4 supports standard HID multi-touch
-Touchpad on/off toggle is handled inside the dock,
touchpad stops sending events when toggled
-HID events are send when the touchpad is toggled on/off, mapped to KEY_TOUCHPAD_ON / _OFF
-https://linux-hardware.org/?probe=23688b2708
Acer One 10 (S1003) (in hema bin next to spkr)
-10" 800x1280 DSI panel
-Touchscreen: GDIX1001, without capacitive home-button, no pen support
-Has separate physical home button
-CPU: Cherry Trail x5-Z8300, 2GB RAM
-Wifi: AP6212 brcmfmac43430a0
-Accel: KIOX0009, mount-matrix ok
-Audio codec: ALC5645
-PMIC: AXP288, charging only through micro USB 5V/2A
-BIOS reacts to ID pin, host mode + charging not possible at same time
-DSDT: PMID = 0x02
-Dock, seems to have 2 separate USB connections on the dock connector,
1 for the A-port and one for the kbd/mouse
-ITE8910 kbd controller
-USB 06cb:73f5 supports standard HID multi-touch
-Touchpad controller: Synaptics S910ZB?
-Touchpad on/off toggle is handled inside the dock,
touchpad stops sending events when toggled
-No HID events are send when the touchpad is toggled on/off, where as
the Aspire Switch 10E (SW3-016) kbd-dock with the same usb-id (but
physcially different) does send HID events for this
-https://linux-hardware.org/index.php?computer=c0e64319d0b1
Acer Iconia One 7 B1-750 (in red kickers shoebox)
-7" 800x1280 DSI panel 24 bpp, PWM: LPSS
-Touchscreen: Novatouch NVT-ts, without capacitive home-button
-and without separate physical home button
-CPU: Bay Trail Z3735G, 1G RAM
-Wifi: brcmfmac43340-sdio, 2.4Ghz only
-Accel: BMA250, mount matrix ok
-Audio codec: ALC5640
-PMIC: AXP288, charging only through micro USB 5V/2A
-Camera sensors: ov5670+vcm gc0310 # ov5670 has libcamera ready mainline driver ...
-https://linux-hardware.org/?probe=e4ffb3787d
Acer Iconia Tab 8 W1-810 (in big Caterpillar shoebox)
-8" 800x1280 DSI panel
-Touchscreen: Goodix GT811, without capacitive home-button
-and without separate physical home button
-PCB: TQ080BT7_V11
-CPU: Bay Trail Z3735G, 1G RAM
-Wifi: AP6383, brcmfmac4330-sdio
-Accel: BMA250, mount matrix ok
-Audio codec: ALC5640
-PMIC: AXP288, charging only through micro USB 5V/2A
Acer Iconia W4-820 (in red kickers shoebox)
-8" 800x1280 DSI 24 bpp, PWM: CRC
+ Micro HDMI
-Touchscreen: SYNA7300 i2c-hid,
-with separate physical home button
-CPU: Bay Trail Z3740, 2G RAM
-Wifi: brcmfmac43241b4 2.4G + 5G
-Accel: SMO91D0
-Audio codec: ALC5640
-PMIC: Crystal Cove (BYT), charging only through micro USB at 5V/2A
-Camera sensors: ov5693 + AD5823-vcm, ov2722
-Appears to have a USB mux but no ULPI phy
-https://linux-hardware.org/?probe=cf25eeba85
============ Advantech ============
Advantech MICA-071 (in red kickers shoebox, dock in hema bin next to spkr)
-7" 800x1280 eDP panel
+Full size HDMI connector on dock
-Touchscreen: FTSC1000 (i2c-hid)
-Non capacitive home button through gpio-buttons
-CPU: Bay Trail Z3770, 4G RAM
-Wifi: brcmfmac43241b4 2.4G + 5G
-Accel: SMO91D0, mount-matrix ok
-Audio codec: ALC5640
-PMIC: Crystal Cove (BYT), charging only from dock. Dock power-barrel: 5V, 4A
-Dock: ASM 174c:2074 USB2 hub, ASM 174c:3074 USB3 hub, rtl8153 USB3 gbit ethernet,
2 USB-2 ports, 1 USB-3 port, Full size HDMI
-https://linux-hardware.org/?probe=d7025eb475
Acer Aspire One 532 (ao532) (in hema bin next to spkr)
-10" netbook ...
============ Archos ============
Archos 80 Cesium
-8" 800x1280 DSI panel
-Touchscreen: FTSC1000
-CPU: Bay Trail Z3735G, 1G RAM
-Wifi: RTL8723BS
-Accel: SMO8500, mount-matrix ok
-Audio codec: ALC5640
-PMIC: AXP288, charging only through micro-usb 5V/2A max
-USB-mux: SGM7223, lacks matching TI T1210B USB-phy, so no device mode
============ Asus ============
Asus ME176c (aka R013) (in red kickers shoebox)
-7" 800x1280 DSI 24 bpp, PWM: CRC
-No HDMI
-Touchscreen: Goodix, without capacitive home-button
-CPU: Bay Trail Z3745, 1G RAM
-Wifi: brcmfmac43362-sdio
-BT: BCM2076B1 acpi:BCM2E3A
-Accel: kxtj21009, mount-matrix ok
-Compass: ak09911
-Audio codec: ALC5640
-PMIC: Crystal Cove (BYT), charging only through micro-usb 5V/2A max
-Has USB-mux + TI T1210B USB-phy, uses USB-phy for charger-type detection
-Camera sensors: hm2056b gc0339
-To disconnect battery for storage:
i2cset -y -f 0 0x6b 0x07 0x64
Asus T100TA (1x in black straightpower 450W psy box, 1x on top of records)
-10" 1368x768 DSI 24 bpp, PWM: CRC, freq: actual 200 VBT 200, 0-255
+ Micro HDMI
-Touchscreen: Atmel MXT1664TXES-C2U 1330B TW QLG9F, without capacitive home-button
-Has separate physical home button
-CPU: Bay Trail Z3740, 2G RAM
-Wifi: brcmfmac43241b4-sdio 2.4 + 5 GHz
-Accel: INVN6500, mount-matrix ok
-Ambient light: Capella cm32181
-Audio Codec: Realtek ALC5642
-GPIO based headphone detect (AMCR0F28): no
-PMIC: Crystal Cove (BYT), charging only through micro USB at 5V/2A
-Phison PS2251-68-5 UO1329C D75J0.11AA (USB2.0 usb-stick controller)
-Winbond 250(Q)64FW1G 1329 6236 QP30003 (BIOS/UEFI)
-Intel Q326A657 SR1M5 02962 '12 (the main cpu Z3740)
-M F20 P02 CFQ0589 (No idea)
-ITE IT8568VG 1331-AXO ZC0P1A (No idea)
-SANDISK 9.15 XC4*00 SanDisk32G (The eMMC storage unit, 32GB version)
-Webcam LED on INT33FC:02 pin 8
-BIOS version 314 set atomisp mode:
Save https://fedorapeople.org/~jwrdegoede/grub-efi-setup_var/grubia32.efi
as grubia32-setupvar.efi in same dir as distro grubia32.efi
From distro grub cmdline:
chainloader (hd1,gpt1)/EFI/fedora/grubia32-setupvar.efi
boot
In grubia32-setupvar.efi:
setup_var_3 0x69 2 # set atomisp to PCI mode
setup_var_3 0x69 1 # set atomisp to default GPU child mode
or use efivar util to write:
efivar -n ec87d643-eba4-4bb5-a1e5-3f3e36b20da9-Setup --datafile ISP-LINUX-Setup-ec87d643-eba4-4bb5-a1e5-3f3e36b20da9.noheader -w
Asus T100TAF (in hema bin next to spkr)
-10" 1368x768 DSI 24 bpp, PWM: LPSS
+ Micro HDMI
-Touchscreen: SIS0817:00 0457:1071, without capacitive home-button
-Has separate physical home button
-Wifi: brcmfmac43340 2.4 + 5 Ghz
-Accel: INVN6500
-Audio Codec: Realtek ALC5642
-PMIC: TI Dollar Cove, charging only through micro USB 5V/2A
Asus T100TAM (on top of records)
-10" 1368x768 DSI 24 bpp, PWM: CRC
+ Micro HDMI
-Touchscreen: SIS0817:00 0457:1071, without capacitive home-button
-Has separate physical home button
-CPU: Bay Trail Z3775, 2G RAM
-Wifi: brcmfmac43241b4-sdio 2.4 + 5 GHz
-Accel: INVN6500, mount-matrix ok
-Ambient light: Capella cm32181
-Audio Codec: ALC5640
-PMIC: Crystal Cove (BYT), charging only through micro USB at 5V/2A
-Camera sensor: mt9m114 (INT33F0)
-HDD keyboard dock with:
0b05:17f6 USB 3.0 2 port 5 Gbit hub
0b05:17f7 USB 2.0 2 port 480 Mbit hub
0b05:17f9 USB 3.0 USB sata bridge (mass-storage proto only)
0b05:17e0 USB HID for keyboard and touchpad
-https://linux-hardware.org/?probe=c1216daf6a
-BIOS version 205 set atomisp mode, same as T100TA BIOS version 314
Asus T100CHI (ewaste, kbd 2x in dark blue asics shoebox)
-10" 1920x1200 DSI panel 24 bpp, PMIC/CRC PWM
+ Micro HDMI
-Touchscreen: SYNA7508 06CB:11E5, with support for PR77S pen, without capacitive home-button
-CPU: Bay Trail Z3775, 2G RAM
-Wifi: brcmfmac43241b4-sdio 2.4 + 5 GHz
-Accel: INVN6500, mount-matrix ok
-Ambient light: Capella cm32181
-Audio codec: ALC5640
-PMIC: Crystal Cove (BYT), supports 9V 2A charging with Asus adapt. Using a Qualcomm
SMB1357 QC2.0 charger chip in the tablet, using a separate charging micro-B connector
-USB3 micro-B connector does superspeed host mode when used with a
UBS-3 micro-*A* to USB3-A receptacle cable
-Webcam LED on INT33FC:01 pin 24
Asus TF103c (aka K010) (in hema bin next to spkr)
-10" 1280x800 DSI panel 24 bpp, PMIC/CRC PWM
-Touchscreen: atmel_mxt_ts, without capacitive home-button (Android fact. os)
-CPU: Bay Trail Z3745, 1G RAM
-Wifi: brcmfmac43340-sdio
-Accel: kxtj21009, mount-matrix handled by x86-android-tablets
-Audio codec: ALC5640
-PMIC: Crystal Cove (BYT), 5V 2A charging through micro-USB, used tusb1211 phy
for charger-type (BC1.2) detection
-I2C devices:
-bq24192 charger IC at 1-006b
-ug31xx-gauge at 1-0070
-rt5640 at 2-001c (present in DSDT as "10EC5640")
-bcm2079x-i2c at 2-0077 -> This is an NFC controller, false positive ?
-asuspec at 3-001b -> dock-keyboard + touchpad
Present in DSDT as "NPCE69A", but all the GPIOs it uses are not listed
as resources
-gc0339 camera sensor at 4-0021
-hm2056b camera sensor at 4-0024
-SAK0991 / akm09911 compass sensor at 5-000c, present in DSDT as "AKM9911"
-KXTJ2100 sensor at 5-000f, present in DSDT as "KXTJ2100"
-atmel_mxt_ts touchscreen at 6-004a, present in DSDT as "ATML1664", DSDT
claims it is HID over I2C compatible, which it is not
-Crystal Cove PMIC at 7-005e + 7-006e, present in DSDT as "INT33FD"
-Camera sensors: hm2056b gc0339
-To disconnect battery for storage:
i2cset -y -f 0 0x6b 0x07 0x6b
Asus T200TA (on top of shoeboxes)
-11.6" 1366x768 eDP panel
-Touchscreen: SIS0817 (sis9203 + sis9251 ICs)
-CPU: Bay Trail Z3775, 2G RAM
-Wifi: AP6234
-Accel: INVN6500, mount-matrix ok
-Audio codec: ALC5640
-PMIC: Crystal Cove (BYT), charging only through power-barrel 19.5V/1.75A
-Battery somewhat dead, does work on charger. Needs to charge for a bit
before powering on then need unplug of charger to see true battery state.
-ITE IT8568VG
-GPS module: no markings
-Webcam LED on INT33FC:02 pin 8
Asus T100HA (on top of shoeboxes)
-10" 1280x800 DSI panel 24 bpp, PWM: CRC, freq: actual 200 VBT 200
+ Micro HDMI
-Touchscreen: SIS0457 i2c-hid (IC: SIS9255)
-CPU: Cherry Trail x5-Z8500, 2GB RAM
-Wifi: AP6234A
-Audio Codec: ALC5645
-PMIC: Crystal Cove (CHT), charging only through micro USB 5V/2A or 9V/2A
-EC: ITE8825FN
-Keyboard: USB 0b05:1807 multi-touch touchpad supported by hid-asus (ITE 8910?)
Asus T101HA (on top of shoeboxes)
-10" 800x1280 DSI 24 bpp, PWM: LPSS, freq: actual 292 VBT 200, 15-255
+ Micro HDMI
-Touchscreen: SIS0457 i2c-hid
-CPU: Cherry Trail x5-Z8350, 4GB RAM
-Wifi: Atheros QCA9377
-Audio Codec: ALC5645
-PMIC: TI, charging only through micro USB 5V/2A or 9V/2A
-Keyboard: USB 0b05:183d standard HID multi-touch touchpad, touchpad-toggle key
sends touchpad-toggle key-press, handled by userspace
============ Axxo ============
AXXO WT-1011 10" 2-in-1 (given away)
-10" 1280x800 eDP panel
-Realtek RTD2136 eDP to LVDS chip
-Touchscreen: FTSC1000 i2c-hid
-Square cam lens version: Digitizer cable id: 101178-01A-V2
-Round cam lens version: Digitizer cable id: ?
-CPU: Bay Trail Z3735F, 2GB RAM
-Wifi RTL8723BS
-Accel: SMO8500
-Audio codec: ALC5640
-PMIC: AXP288, charging only through micro USB 5V/2A
-USB-phy: TI T1210B
Dock:
-ite8595 keyboard + touchpad controller
============ Chuwi ============
Chuwi Vi10 (CWI505) (on top of shoeboxes)
-10" 1366x768 LVDS panel via LVDS to eDP chip
-Touchscreen: Silead GSL3680, with capacitive home-button, fw NOT in EFI
-CPU: Bay Trail Z3736F, 2G RAM
-Wifi: RTL8723BS
-Accel: BMA250E, mount-matrix ok
-Audio codec: ALC5640
-Cameras: back: ov2680 front: HIMX2056
-PMIC: AXP288, charging only through micro-usb 5V/2A max
-USB-phy: TI T1210B
-USB-hub: FE 1.1 USB2.0 hub
-DP-to-LVDS: Parade PS8622
-Other: ATMLH434 02DM (probably flash or uc to bring up the PS8622)
-Keyboard: USB 1c4f:0075 keyboard/touchpad(mouse mode only) combo dock
Touchpad on/off toggle key handled inside kbd-dock, does not send events
-Can use the same BIOS settings hack from patched grub as Hi8 (CWI509) models,
tested with G1D_S165_206 10/29/2014 BIOS
Chuwi Vi8 (CWI501, Q32G22150103200) (in big Caterpillar shoebox)
-8" 800x1280 DSI panel 24 bpp, PWM: LPSS
-Touchscreen GSL3676, with capacitive home-button, fw NOT in EFI
-PCB: INET-I86M-REV03 Zeng-gc 2014-12-19
-CPU: Bay Trail Z3735F, 2GB RAM
-Wifi: RTL8723BS
-Accel: BMA250E
-Audio codec: Realtek ALC5640
-PMIC: AXP288, charging only through micro USB 5V/2A
-No mux? No phy (yet OTG controller enabled by default in BIOS?)
Chuwi Vi8 (CWI506) (in big black unmarked shoebox)
-8" 800x1280 DSI panel 24 bpp
-Touchscreen GSL3676, with capacitive home-button, fw NOT in EFI
-PCB: INET-I86M-REV03 Zeng-gc 2014-12-19
-CPU: Bay Trail Z3735F, 2GB RAM
-Wifi: RTL8723BS
-Accel: BMA250E
-Audio codec: Realtek ALC5640, analog mic3, mono speaker
-GPIO based headphone detect (AMCR0F28): yes!
-PMIC: AXP288, charging only through micro USB 5V/2A
-USB-phy: TI T1210B
-With cover with bluetooth keyboard
Chuwi Hi8 (CWI509)
-1x Q32G22150910320 (given away)
-2x Q32G221512035xx (with cover with bluetooth keyboard, in black boost (yellow letters) shoebox)
-1x Q32G22160505024 (in big Caterpillar shoebox)
-8" 1200x1920 DSI panel 24 bpp, PWM: LPSS
-No HDMI
-Touchscreen GSL3676, with capacitive home-button, fw NOT in EFI
-Q32G22160505024 has wrong fw in EFI
-CPU: Bay Trail Z3736F, 2GB RAM
-Wifi: brcmfmac43430a0 (Q32G22150910320, Q32G221512035xx)
brcmfmac43430a1 (Q32G22160505024)
-Accel: BMA250E
-ALS: CPLM3218
-Audio codec: ALC5640
-PMIC: AXP288, charging only through micro USB 5V/2A
-OTG:
-5V boost converter broken on Q32G22150910320
-Has mux
-USB-phy: TI T1210B
-Camera sensors: ov2680, gc0310 (on all versions?)
-BIOS settings hack from patched grub, only use with H1D_S806_206 10/29/2014 BIOS!!!
menuentry 'Set BIOS to Windows' {
setup_var_3 0x215 1
reboot
}
menuentry 'Set BIOS to Android' {
setup_var_3 0x215 2
reboot
}
menuentry 'Fixup Windows settings' {
# Enable DWC3
setup_var_3 0x137 1
# Put ISP on PCI device 00:03.0
setup_var_3 0x12b 2
reboot
}
-hw-probe brcmfmac43430a0 version:
https://linux-hardware.org/?probe=d089301e66
-hw-probe brcmfmac43430a1 version:
https://linux-hardware.org/?probe=3a3ccd7c55
Chuwi Hi8 Pro (CWI513) (in big Caterpillar shoebox)
-2x serial: PQ32G22170904949, serial: PQ32G22170801975
-8" 1200x1920 DSI panel 24 bpp, PWM: LPSS
+ Micro HDMI
-Touchscreen GSL3676, with capacitive home-button, fw in EFI
-CPU: Cherry Trail x5-Z8350, 2G RAM
-Wifi: RTL8723BS
-Accel: BOSC0200 -> BMA250E, mount-matrix ok
-Audio codec: ALC5651
-PMIC: AXP288, charging only through Type-C 5V/2A, does not do PD needs to
charge with USB-A charger + USB-A to C cable, otherwise it charges at only 500mA
-Type-C: host + gadget + charging, does superspeed only in 1 orientation?
-DSDT: PMID == 0x02
-Android Model: Hi8 pro, Android version: 5.1, kernel 3.14.37-x86_64-L1-R517
-Camera info atomisp-css2401a0_v21 front camera:
Front camera android sensor-driver gc2355:
-gc2355 i2c-GCTI2355:01: camera pdata: port: 0 lanes: 1 order: 00000000
-gpio-306 (cam_gpio0) when camera goes on, GPIO goes from low -> high
-gpio-313 (cam_gpio1) when camera goes on, GPIO goes from high -> low
-clock pltclk 4 using source 0 (19.2 MHz Xosc)
-Camera info atomisp-css2401a0_v21 back camera:
-gc2355b i2c-GCT2355:00: camera pdata: port: 1 lanes: 1 order: 00000000
-gpio-396 (cam_gpio0) when camera goes on, GPIO goes from low -> high
-gpio-388 (cam_gpio1) when camera goes on, GPIO goes from high -> low
-clock pltclk 4 using source 0 (19.2 MHz Xosc)
-Multi-boot menu:
-Fedora only install:
-Having shim binaries under EFI/BOOT do fallback leads to fbx64.efi getting run
-Install Fedora which installs shimx64.efi as EFI\BOOT\BOOTX64.EFI
-You should now get Android as option in the graphical OS chooser built
into the BIOS, this is important because it remembers the last OS choosen.
It will be either in 32 bit UEFI mode using Windows settings or in
64 bit UEFI mode using Android settings, based on the last time an os
was chosen in the chooser.
-Choose Android at least once to get 64 bit UEFI
-Select always continue boot on fbx64.efi menu shown to avoid boot-looping
-Optionally to hide OS chooser build into BIOS:
-Add an entry pointing to EFI/fedora/shimx64.efi to efibootmgr list,
remove all other entries
-Remove all files under EFI/BOOT to hide the bootchooser and fix fb64x64.efi
getting run every boot
-Android + Fedora dual-boot install
-Install Android
-Install Fedora in free-space
-Select always continue boot on fbx64.efi menu shown to avoid boot-looping
-Run as root
# Avoid updates overwriting /boot/efi/EFI/BOOT/boot*.efi files:
rpm -e shim-x64 shim-ia32
# For Android
cp /boot/efi/loader.efi /boot/efi/EFI/BOOT/bootx64.efi
# For Windows (really Fedora)
mkdir -p /boot/efi/EFI/MICROSOFT/BOOT
cp /boot/efi/EFI/fedora/grubia32.efi /boot/efi/EFI/BOOT/BOOTIA32.EFI
cp /boot/efi/EFI/fedora/grubia32.efi /boot/efi/EFI/MICROSOFT/BOOT/BOOTMGFW.EFI
-Remove all efibootmgr entries to let the BIOS do its default thing
-Go into BIOS and do F3 to load defaults, change USB mode from auto to PCI,
F4 to save and reboot
-Now we should get the OS choser with both OS-es visible
-https://linux-hardware.org/?probe=e7eb855568
Chuwi Hi8 Pro, chipone + brcmfmac43430a0 model (CWI513, serial: PQ32G22160411929, given away)
-8" 1200x1920 DSI panel 24 bpp, PWM: LPSS
+ Micro HDMI
-Touchscreen Chipone ICN8505, with capacitive home-button
-FW not in EFI, for multi-boot OS-choser press volume-up for Android, down for Windows
-CPU: Cherry Trail x5-Z8300, 2G RAM
-Wifi: brcmfmac43430a0
-Accel: BOSC0200 -> BMA250E, mount-matrix ok
-Audio codec: ALC5651
-PMIC: AXP288, charging only through Type-C 5V/2A, does not do PD needs to
charge with USB-A charger + USB-A to C cable, otherwise it charges at only 500mA
-Type-C: host + gadget + charging, USB2 highspeed only?
-DSDT: PMID == 0x02
Chuwi HiBook (CWI514) (in big black unmarked shoebox)
-10.1" 1200x1920 DSI panel 24 bpp, PWM: LPSS
+ Micro HDMI
-Touchscreen MSSL0017 GSL36??, with capacitive home-button, fw in EFI, no pen support
-CPU: Cherry Trail x5-Z8300, 4G RAM
-Wifi: RTL8723BS
-Accel: BOSC0200, mount-matrix ok
-ALS: CPLM3218
-Audio codec: ALC5651
-PMIC: AXP288, charging only through Type-C 5V/2A, does not do PD needs to
charge with USB-A charger + USB-A to C cable, otherwise it charges at only 500mA
-Type-C: host + gadget + charging, USB-2 - only
-Micro-B: USB-2 host-only
-Camera info atomisp-css2401a0_v21 front camera:
-ov2680 i2c-front:10: camera pdata: port: 0 lanes: 1 order: 00000002
-clock pltclk 2 using source 0 (19.2 MHz Xosc)
-V1P6_ELDO1
-V1P8_ELDO2
-V2P8_ALDO1
-Camera info atomisp-css2401a0_v21 back camera:
-ppr_cam(ov5648) i2c-INT5648:00:36: camera pdata: port: 1 lanes: 2 order: 00000002
-clock pltclk 4 using source 0 (19.2 MHz Xosc)
-V1P8_ELDO2
-V2P8_ALDO1
-appears to have non-fixed-focus / vcm
-FLDO1 + FLDO2 are permanently on at 1.25V (p-o-r defaults)
-Keyboard: USB 1c4f:0063 keyboard/touchpad(mouse mode only) combo dock
Touchpad on/off toggle key handled inside kbd-dock, does not send events
-https://linux-hardware.org/?probe=c1a354c2e2
Chuwi Vi8 Plus (CWI519) (in big Caterpillar shoebox)
-8" 800x1280 LCD
+ Micro HDMI
-Touchscreen Chipone ICN8505, fw in EFI
-CPU: Cherry Trail x5-Z8300, 2G RAM
-Wifi: Soldered on PCB, with unmarked shield, brcmfmac43430
-Accel: BOSC0200 -> BMA250E, mount-matrix ok
-Audio codec: ALC5651
-PMIC: AXP288, charging only through Type-C 5V/2A, does not do PD needs to
charge with USB-A charger + USB-A to C cable, otherwise it charges at only 500mA
-Type-C: host + gadget + charging, USB-2 only
-DSTD: PMID == 0x02
-Camera info atomisp-css2401a0_v21 front camera:
-ov2680 i2c-front:10: camera pdata: port: 0 lanes: 1 order: 00000002
-gpio-306 (cam_gpio0) when camera goes on, GPIO goes from low -> high
-gpio-313 (cam_gpio1) when camera goes on, GPIO goes from low -> high
-clock pltclk 2 using source 0 (19.2 MHz Xosc)
-Camera info atomisp-css2401a0_v21 back camera:
-ov2680b i2c-rear:36: camera pdata: port: 1 lanes: 1 order: 00000002
-gpio-396 (cam_gpio0) when camera goes on, GPIO goes from low -> high
-gpio-388 (cam_gpio1) when camera goes on, GPIO goes from low -> high
-clock pltclk 4 using source 0 (19.2 MHz Xosc)
-Battery is dead (browns out an consumption peaks)
-needs to always have a charger connected
-to re-install Fedora:
1. Charge battery to 100% (in sofar this helps), then turn off
2. Connect an OTG charging hub (one which always passes the 5V),
with kbd + Fedora live USB connected:
-with the switch in OTG mode
-without 5V connected to the hub
-power on the tablet, press ESC repeatedly to enter BIOS
3. At BIOS screen connected 5V, change switch to charging mode and
then press ctrl+alt+del to reboot and press ESC to enter BIOS again.
Now the tablet is charging while the USB port is in host mode
4. In BIOS in the Save & Exit tab select the Fedora live USB from
the boot override menu
5. Edit kernel commandline, add the following to avoid the kernel switching
the port back to device-mode causing the livecd to loose its rootfs:
modprobe.blaclist=extcon_intel_int3496 gpiolib_acpi.run_edge_events_on_boot=0 3
(the 3 is to enter text mode, rather then starting gdm)
6. Use a static compiled i2cset to tweak the charger settings so that the tablet
gets enough power:
# set current input limit to 2A
i2cset -y -f 6 0x34 0x35 0x48
# set vhold to 4.3V
i2cset -y -f 6 0x34 0x30 0x1a
# lower brightness for power saving
echo 20 > /sys/class/backlight/intel_backlight/brightness
7. Run "systemctl start gdm" to start the graphical session and install as usual
Chuwi Hi12 (CWI520) (on top of records)
-12" 2160x1440 eDP panel 24 bpp
+ Micro HDMI
-Touchscreen GDIX1001, with capacitive home-button, pen support with trekstor pen
-CPU: Cherry Trail x5-Z8350, 4G RAM
-Wifi: RTL8723BS
-Accel: BOSC0200, mount-matrix ok
-Audio codec: ESS8316
-PMIC: AXP288, charging only through micro-USB
Chuwi Hi10 Pro (CWI529, in black straightpower 450W psy box)
-10.1" 1200x1920 DSI panel 24 bpp, PWM: LPSS
+ Micro HDMI
-Touchscreen GSL36??, with capacitive home-button, fw in EFI
-CPU: Cherry Trail x5-Z8350, 4G RAM
-Wifi: RTL8723BS
-Accel: BOSC0200, mount-matrix ok
-Audio codec: ALC5651
-PMIC: AXP288, charging only through Type-C 5V/2A, does not do PD needs to
charge with USB-A charger + USB-A to C cable, otherwise it charges at only 500mA
-Type-C: host + gadget + charging, USB-3 / superspeed
-Micro-B: USB-2 host-only
-Camera info atomisp-css2401a0_v21 front camera:
-hm2051 i2c-HIMT2051:00: camera pdata: port: 0 lanes: 1 order: 00000002
-clock pltclk 2 using source 0 (19.2 MHz Xosc)
-Camera info atomisp-css2401a0_v21 back camera:
-hm2051b i2c-HIMX2051:00: camera pdata: port: 1 lanes: 1 order: 00000002
-clock pltclk 4 using source 0 (19.2 MHz Xosc)
-Keyboard: USB 1c4f:0063 keyboard/touchpad(mouse mode only) combo dock
Touchpad on/off toggle key handled inside kbd-dock, does not send events
Chuwi Hi13 (in its original box)
-13" 3000x2000 eDP panel 24bpp
+ Micro HDMI
-Light sensor: CM32181
-Touschscreen: GDIX1002 goodix touchscreen, with capacitive home-button, pen support
with own pen (also Trekstor pen alt channel but that works less well)
-CPU: Apollo Lake N3450, 4G RAM
-Wifi: Intel 3165
-Accel: BOSC0200, mount-matrix ok
-Audio: HDA
-Camera: Uses IPU4 for cameras
-Keyboard: USB 1c4f:0063 keyboard/touchpad(mouse mode only) combo dock
Touchpad on/off toggle key handled inside kbd-dock, does not send events
============ Connect ============
Connect Tablet 9 (given away)
-8.9" 800x1280 DSI panel
-Touchscreen: Silead GSL3680, without capacitive home-button, fw NOT in EFI
-Has separate physical home button
-CPU: Bay Trail Z3735G, 1G RAM
-Wifi: RTL8723BS
-Accel: KIOX000A, mount-matrix ok
-Audio codec: ALC5640
-PMIC: AXP288, charging only through micro-usb 5V/2A max
-Appears to have a USB mux but no ULPI phy
-https://linux-hardware.org/?probe=6d68fde5d8
============ Cube ============
Cube iwork 8 Air (in big Caterpillar shoebox)
-8" 1200x1920 screen
+ Micro HDMI
-Touchscreen: gsl3670, without capacitive home-button, fw in EFI
-Has separate physical home button
-CPU: Cherry Trail Z8300, 2G RAM
-Wifi: RTL8723BS
-Accel: KIOX000A, mount-matrix ok
-Audio codec: nuvoton nau88l24i
-PMIC: AXP288, charging only through micro USB 5V/2A
-Other chips: winbond 25064fwig
-DSTD: BDID = One, OSID = 0x04, PMID = 0x02
============ CyberBook ============
CyberBook T116 (in hema bin next to spkr)
-10.1" 800x1280 DSI 24 bpp, PWM: LPSS
-Mini HDMI
-Touchscreen: GDIX1001, without capacitive home-button, with pen support with trekstor pen
-Has 2 programmable buttons labeled P and F
-CPU: Cherry Trail Z8350, 2G RAM
-Wifi: brcmfmac43455
-Accel: KIOX000A
-ALS: CPLM3218
-Audio codec: NAU8824
-Cameras: back: ov5648 front: ov2680
-PMIC: AXP288, charging through micro USB 5V/2A or power-barrel 5V/2A
-OTG: micro-USB id pin appears hard-wired to V5 boost output. Can do host +
gadget (untested) mode but need to manually set usb_role ...
-CP210x RS232, CP210x internal connector for barcode scanner
-r8152 100Mbit ethernet
-12d1:15c1 Huawei Technologies Co., Ltd. ME906s LTE M.2 Module
-Ublox G7020 GPS receiver
https://wiki.odroid.com/accessory/connectivity/usb_gps
-https://linux-hardware.org/?probe=9569a530e8
============ Dell ============
Dell Venue 8 Pro 5830: (1 in big Caterpillar shoebox, 1 in Be Quiet psy box)
-8" 800x1280 DSI 24bpp, PWM: CRC, freq: actual 200 VBT 200, 15-255
-No HDMI
-Touchscreen: SYNA7500, with support for PR77S pen, without capacitive home-button
-Has separate physical home button
-CPU: Bay Trail Z3740D, 2G RAM
-Wifi: Atheros ar6004
-Accel: HID-sensors
-Audio codec: ALC5640
-GPIO based headphone detect (AMCR0F28): no
-PMIC: Crystal Cove (BYT), charging only through micro USB 5V/2A
-OTG:
-Has a mux
-Locked BIOS cannot test for device-mode phy / gadget mode
-Supports ACA mode
Dell Venue 8 Pro 5855: (in big Caterpillar shoebox)
-8" 1200x1920 DSI 24bpp, PWM: CRC
-No HDMI
-Touchscreen: WCOM4809, without capacitive home-button
-Has separate physical home button
-CPU: Cherry Trail x5-Z8550, 4G RAM
-Wifi: Intel Dual Band Wireless AC 826
-Accel: ISH HID-sensors
-Audio codec: ALC5672
-PMIC: Crystal Cove (CHT), charging through Type-C connector (5V or 20V USB-PD)
-Type-C: Supports DP-altmode
Dell Venue 10 Pro 5055 8BN8J52 (in orange giga shoebox)
-10.1" 1280x800 DSI 24 bpp, PWM: LPSS
+ Micro HDMI
-Touchscreen: WCOM4802, without capacitive home-button
-Has separate physical home button
-CPU: Bay Trail Z3735F, 2G RAM
-Wifi: brcmfmac43241b4-sdio 2.4GHz + 5GHz
-Audio codec: ALC5672
-PMIC: TI Dollar Cove, charging only through micro USB 5V/2A
-OTG:
-Has a mux
-Locked BIOS cannot test for device-mode phy / gadget mode
-Does NOT support ACA mode
-Has a vibrator, which according to the schematic I found is connected to a PWM of
the SoC, presumably PWM2, the schematic might be for the Android version though
-https://linux-hardware.org/?probe=39feaef221
Dell Venue 11 Pro 7130 vPro (on top of shoeboxes)
-10.8" 1920x1080 eDP
+ Mini HDMI
-Touchscreen: SYNA7500
-With capacitive home-button with force-feedback, reported through AT keyboard
-CPU: i5-4300Y, 4G RAM
-Wifi: Intel AC7260
-Accel: SMO91D0 HID sensors
-ALS: SMO91D0 HID sensors
-OTG: Micro-usb connector is for charging with special Dell charger which supports
19.5V/1.2A or 5V/2A only
-Modem: Dell Wireless 5570e HSPA+ aka Sierra Wireless AirPrime EM8805
-Needs a manual "qmicli -p -d /dev/cdc-wdm0 --dms-set-fcc-authentication"
before the WWAN connection will work
-https://gitlab.freedesktop.org/mobile-broadband/ModemManager/-/issues/339
-https://linux-hardware.org/?probe=9cbca84e95
Dell Latitude D430 (in hema bin behind amplifier)
-12.1" ...
Dell Latitude E6430 (laptop)
-14.1" 1600x900 LVDS (intel iGPU + Nvidia GF108GLM)
+HDMI
-CPU i5-3320M + 8G (2 DDR3 DIMM slots, 1 x 8G, 1 x empty)
-Wifi: Intel N6300
-Bluetooth: BCM20702A1
-Audio: HDA
-https://linux-hardware.org/?probe=c7a98ce916
Dell Latitude 7285 (laptop)
-12.3" 2880x1920 eDP 24bpp
-2x TB3
-Touchscreen: WCOM484F, with pen support, reports pen-battery through HID on
touchscreen resulting in 0% battery reading when no pen is used
touchscreen if flakey on my model, only works on some boots
-CPU: Core i5-7Y57, 8G RAM
-Wifi: Intel 8265
-Accel + ALS: ISH HID sensors
-Audio: HDA (non sof)
-USB-PD charging through 2x TB3 connectors
============ Estar ============
Beauty HD MID 7316R (in big Caterpillar shoebox)
-7" 1024x600 DSI 24bpp, PWM: LPSS
-No HDMI
-Touchscreen: Goodix GDIX1001, without capacitive home-button
-and without separate physical home button
-CPU: Bay Trail Z3735G, 1G RAM
-Wifi: RTL8723BS
-Accel: SMO8500, mount-matrix ok
-Audio codec: ALC5640, uses OMTP headset pinout instead of the usual CTIA one
-PMIC: AXP288, charging only through micro USB 5V/2A
-OTG:
-USB-phy: TI T1210B
-USB-mux: has a mux, unknown which one
-https://linux-hardware.org/?probe=59c1597fbb
============ Glavey ============
Glavey TM800A550L (in big Caterpillar shoebox)
-Android x86 tablet
-Needs "dis_ucode_ldr" on the kernel commandline
-8" 800x1280 DSI 24bpp, PWM: LPSS
-No HDMI
-Touchscreen: Goodix GT912 1550-H09D
-Needs firmware upload to work
-without capacitive home-button and without separate physical home button
I2C addr: 0x14
IRQ: GPO2 pin 3
Reset: GPO1 pin 26
-PCB: PX4S78T rev 4.0
-BIOS chip: Winbond 25Q64F
-CPU: Bay Trail Z3735G, 1G RAM
-Wifi: RTL8723BS
-Accel: KXCJ9000, needs mount-matrix quirk to be added
-Audio codec: ALC5640, Stereo speakers, analog mic
-PMIC: AXP288, charging only through micro USB 5V/2A
-OTG:
-Has a mux
-USB-phy: TI T1210B
============ GPD ============
GPD-win (in its own box)
-5.5" 720x1280 DSI panel, mounted 90 degree rotated
-mounted 90 degree rotated
+ mini HDMI + DP-over-type-C
-Touchscreen: GDIX1001, without capacitive home-button, no pen support
-PCB: WINI55
-CPU: Cherry Trail Z8700, 4G RAM
-Accel: KIOX000A
-Audio codec: ALC5645
-PMIC: Intel 6835A P10 Whiskey Cove (CHT), charging only through Type-C PD 5-12V
-Charge IC: TI bq24292i
-Unknown IC 17047 36a1s
-DSDT: OSID == One, PMID == 0x03, (BDID == 0x09) || (BDID == 0x0A)
GPD-pocket (borrowed, given back)
-7" 1200x1920 DSI, 24 bpp, PWM: LPSS, freq: actual 21972 VBT 22000, 20-255
-mounted 90 degree rotated
+ mini HDMI + DP-over-type-C
-Touchscreen: GDIX1001, without capacitive home-button
-CPU: Cherry Trail Z8750, 8G RAM
-Audio codec: ALC5645
-PMIC: Whiskey Cove (CHT), charging only through Type-C PD 5-12V
GPD Micro PC (in hema bin next to spkr)
-6" 1280x720 DSI panel 24bpp, mounted 90° rotated, right side up
-No touchscreen
-CPU: Celeron N4100 (Gemini Lake), 8G RAM
-M2 2442 256GB sata SSD
-Wifi: Intel Wireless 3165
-Ethernet: RTL8111
============ GP-electronic ============
GP-electronic T701 (in big Caterpillar shoebox)
-7" 1024x600 DSI panel 24 bpp, mounted upside-down
-Touchscreen: Silead gsl1680, without capacitive home-button, fw NOT in EFI
-and without separate physical home button
-CPU: Bay Trail Z3735G, 1G RAM
-Wifi: RTL8723BS
-Accel: KIOX000A, mount-matrix ok
-Audio codec: ESS8316
-PMIC: AXP288, charging only through micro USB 5V/2A
============ HP ============
HP ElitePad 1000 G2 (in 2nd hema bin behind amplifier)
-10.1" ...
-Wifi: brcmfmac43241b4
HP Pavilion X2 10-n000nd (on top of shoeboxes)
-10" 1280x800 DSI panel, PWM: LPSS, freq: actual 9918 VBT 10000, 0-255
-Touchscreen: SYNA7508, with support for PR77S pen, without capacitive home-button
-Has separate physical home button
-PCB: DORITOS1-6050A2755401-MB unreadable TPN-I121
-CPU: Bay Trail Z3736F, 2GB RAM
-Wifi: RTL8723BS
-Sensor: BSG1160:
Accel: BMC150A at addr 0x11
Gyro: BMG160 at addr 0x68
Magneto: BMC150B at addr 0x13
-Ambient light: Capella cm32181
-Audio codec: ALC5642
-PMIC: AXP288, charging only through Type-C, no host functionality. Cc-pins not
connected at all so it does not work with PD chargers, only with chargers which
unconditionally send out 5V/3A. Input-current-limit hardcoded to 3A.
-I/O chip (superio?) ENE IO3737LU-B1
-Unknown IC: 89=2c w25 ??
-Unknown IC: B7 k442 (type-c controller?)
-Unknown IC: 007 A502 074
-Unknown IC: 2620E 4245F2
-Unknown IC: 27b56
-Unknown IC: A338 AQ552
-2x Unknown IC: cnf581 (power regulator?)
-USB-2 hub: gl852g
-DSDT: PMID == 0x05
HP Pavilion X2 10-p002nd (Eowyn)
-10" 1280x800 eDP panel
+ Micro HDMI
-Touchscreen: SYNP1000, without capacitive home-button
-and without separate physical home button
-CPU: Cherry Trail x5-Z8350, 2GB RAM
-Wifi: Intel 3165
-Sensor: HID-sensors, mount-matrix ok
-Audio codec: ALC3276 aka ALC5640
-PMIC: TI Dollar Cove, Type-C USB-PD charging at up to 15V 3A
-Type-C only supports USB-2 speeds
HP x2 10 variant info:
1. Bay Trail SoC + AXP288 PMIC, Micro-USB charging (10-k010nz, ...)
DMI_SYS_VENDOR: "Hewlett-Packard"
DMI_PRODUCT_NAME: "HP Pavilion x2 Detachable PC 10"
DMI_BOARD_NAME: "8021"
2. Bay Trail SoC + AXP288 PMIC, Type-C charging (10-n000nd, 10-n010nl, ...)
DMI_SYS_VENDOR: "Hewlett-Packard"
DMI_PRODUCT_NAME: "HP Pavilion x2 Detachable"
DMI_BOARD_NAME: "815D"
3. Cherry Trail SoC + AXP288 PMIC, Type-C charging (10-n101ng, ...)
DMI_SYS_VENDOR: "HP"
DMI_PRODUCT_NAME: "HP Pavilion x2 Detachable"
DMI_BOARD_NAME: "813E"
4. Cherry Trail SoC + TI PMIC, Type-C charging (10-p002nd, 10-p018wm, ...)
DMI_SYS_VENDOR: "HP"
DMI_PRODUCT_NAME: "HP x2 Detachable 10-p0XX"
DMI_BOARD_NAME: "827C"
5. Cherry Trail SoC + TI PMIC, Type-C charging (x2-210-g2, ...)
DMI_SYS_VENDOR: "HP"
DMI_PRODUCT_NAME: "HP x2 210 G2"
DMI_BOARD_NAME: "82F4"
HP Stream 7: (in big Caterpillar shoebox)
-7" 800x1280 DSI panel 24 bpp
-No HDMI
-Touchscreen: Goodix GDIX1001 0416:038f, with capacitive home-button
-CPU: Bay Trail Z3735G, 1G RAM
-Wifi: RTL8723BS
-Accel: SMO8500, mount-matrix ok
-Audio codec: ALC5640
-PMIC: AXP288, charging only through micro USB 5V/2A
-OTG: no mux
HP Pro Tablet 608 (in Poelman shoebox)
...
Type-C: Charges only at 5V, needs 3A Rp (or PD?) for charging with > 1A
============ Intels ============
Intel Compute Stick STK1AW32SC (in black straightpower 450W psy box)
-HDMI
-CPU: Cherry Trail x5-Z8330, 2GB RAM
-...
Intel Edison (in black straightpower 450W psy box)
-...
-Intel MinnonwBoard MAX (in big black unmarked shoebox)
-...
============ Irbis ============
Irbis TW90 (in big black unmarked shoebox)
-10" 1200x1920 DSI 24bpp, PWM: LPSS, freq: actual 19921 VBT 20000, 13-255
+ Mini HDMI
-Touchscreen: GSL3680?, with capacitive home-button, fw NOT in EFI
-CPU: Cherry Trail x5-Z8350, 2G RAM
-Wifi: RTL8723BS
-Accel: BOSC0200, mount-matrix ok
-Audio codec: ES8396 with stereo speakers and analog mic