Based on kernel version 6.11
. Page generated on 2024-09-24 08:21 EST
.
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 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 | # SPDX-License-Identifier: GPL-2.0 %YAML 1.2 --- $id: http://devicetree.org/schemas/arm/rockchip.yaml# $schema: http://devicetree.org/meta-schemas/core.yaml# title: Rockchip platforms maintainers: - Heiko Stuebner <heiko@sntech.de> properties: $nodename: const: '/' compatible: oneOf: - description: 96boards RK3399 Ficus (ROCK960 Enterprise Edition) items: - const: vamrs,ficus - const: rockchip,rk3399 - description: 96boards RK3399 Rock960 (ROCK960 Consumer Edition) items: - const: vamrs,rock960 - const: rockchip,rk3399 - description: Amarula Vyasa RK3288 items: - const: amarula,vyasa-rk3288 - const: rockchip,rk3288 - description: Anbernic RK3326 Handheld Gaming Console items: - enum: - anbernic,rg351m - anbernic,rg351v - const: rockchip,rk3326 - description: Anbernic RK3566 Handheld Gaming Console items: - enum: - anbernic,rg353p - anbernic,rg353ps - anbernic,rg353v - anbernic,rg353vs - anbernic,rg503 - anbernic,rg-arc-d - anbernic,rg-arc-s - const: rockchip,rk3566 - description: ArmSoM Sige7 board items: - const: armsom,sige7 - const: rockchip,rk3588 - description: Asus Tinker board items: - const: asus,rk3288-tinker - const: rockchip,rk3288 - description: Asus Tinker board S items: - const: asus,rk3288-tinker-s - const: rockchip,rk3288 - description: Beelink A1 items: - const: azw,beelink-a1 - const: rockchip,rk3328 - description: bq Curie 2 tablet items: - const: mundoreader,bq-curie2 - const: rockchip,rk3066a - description: bq Edison 2 Quad-Core tablet items: - const: mundoreader,bq-edison2qc - const: rockchip,rk3188 - description: ChipSPARK PopMetal-RK3288 items: - const: chipspark,popmetal-rk3288 - const: rockchip,rk3288 - description: ChipSPARK Rayeager PX2 items: - const: chipspark,rayeager-px2 - const: rockchip,rk3066a - description: Cool Pi Compute Module 5(CM5) EVB items: - enum: - coolpi,pi-cm5-evb - const: coolpi,pi-cm5 - const: rockchip,rk3588 - description: Cool Pi 4 Model B items: - const: coolpi,pi-4b - const: rockchip,rk3588s - description: Edgeble Neural Compute Module 2(Neu2) SoM based boards items: - const: edgeble,neural-compute-module-2-io # Edgeble Neural Compute Module 2 IO Board - const: edgeble,neural-compute-module-2 # Edgeble Neural Compute Module 2 SoM - const: rockchip,rv1126 - description: Edgeble Neural Compute Module 6(Neu6) SoM based boards items: - const: edgeble,neural-compute-module-6a-io # Edgeble NCM6A-IO Board - enum: - edgeble,neural-compute-module-6a # Edgeble Neural Compute Module 6A SoM - edgeble,neural-compute-module-6b # Edgeble Neural Compute Module 6B SoM - const: rockchip,rk3588 - description: Elgin RV1108 R1 items: - const: elgin,rv1108-r1 - const: rockchip,rv1108 - description: EmbedFire LubanCat 1 items: - const: embedfire,lubancat-1 - const: rockchip,rk3566 - description: EmbedFire LubanCat 2 items: - const: embedfire,lubancat-2 - const: rockchip,rk3568 - description: Engicam PX30.Core C.TOUCH 2.0 items: - const: engicam,px30-core-ctouch2 - const: engicam,px30-core - const: rockchip,px30 - description: Engicam PX30.Core C.TOUCH 2.0 10.1" Open Frame items: - const: engicam,px30-core-ctouch2-of10 - const: engicam,px30-core - const: rockchip,px30 - description: Engicam PX30.Core EDIMM2.2 Starter Kit items: - const: engicam,px30-core-edimm2.2 - const: engicam,px30-core - const: rockchip,px30 - description: Firefly Firefly-RK3288 items: - enum: - firefly,firefly-rk3288 - firefly,firefly-rk3288-beta - const: rockchip,rk3288 - description: Firefly Firefly-RK3288 Reload items: - const: firefly,firefly-rk3288-reload - const: rockchip,rk3288 - description: Firefly Firefly-RK3399 items: - const: firefly,firefly-rk3399 - const: rockchip,rk3399 - description: Firefly ROC-RK3308-CC items: - const: firefly,roc-rk3308-cc - const: rockchip,rk3308 - description: Firefly roc-rk3328-cc items: - const: firefly,roc-rk3328-cc - const: rockchip,rk3328 - description: Firefly ROC-RK3328-PC items: - const: firefly,roc-rk3328-pc - const: rockchip,rk3328 - description: Firefly ROC-RK3399-PC items: - enum: - firefly,roc-rk3399-pc - firefly,roc-rk3399-pc-mezzanine - const: rockchip,rk3399 - description: Firefly ROC-RK3399-PC-PLUS items: - enum: - firefly,roc-rk3399-pc-plus - const: rockchip,rk3399 - description: Firefly Station M2 items: - const: firefly,rk3566-roc-pc - const: rockchip,rk3566 - description: Firefly Station P2 items: - const: firefly,rk3568-roc-pc - const: rockchip,rk3568 - description: Forlinx FET3588-C SoM items: - enum: - forlinx,ok3588-c - const: forlinx,fet3588-c - const: rockchip,rk3588 - description: FriendlyElec NanoPi R2 series boards items: - enum: - friendlyarm,nanopi-r2c - friendlyarm,nanopi-r2c-plus - friendlyarm,nanopi-r2s - const: rockchip,rk3328 - description: FriendlyElec NanoPi4 series boards items: - enum: - friendlyarm,nanopc-t4 - friendlyarm,nanopi-m4 - friendlyarm,nanopi-m4b - friendlyarm,nanopi-neo4 - friendlyarm,nanopi-r4s - friendlyarm,nanopi-r4s-enterprise - const: rockchip,rk3399 - description: FriendlyElec NanoPi R5 series boards items: - enum: - friendlyarm,nanopi-r5c - friendlyarm,nanopi-r5s - const: rockchip,rk3568 - description: FriendlyElec NanoPi R6 series boards items: - enum: - friendlyarm,nanopi-r6c - friendlyarm,nanopi-r6s - const: rockchip,rk3588s - description: FriendlyElec NanoPC T6 items: - const: friendlyarm,nanopc-t6 - const: rockchip,rk3588 - description: FriendlyElec CM3588-based boards items: - enum: - friendlyarm,cm3588-nas - const: friendlyarm,cm3588 - const: rockchip,rk3588 - description: GameForce Chi items: - const: gameforce,chi - const: rockchip,rk3326 - description: GeekBuying GeekBox items: - const: geekbuying,geekbox - const: rockchip,rk3368 - description: Geniatech XPI-3128 items: - const: geniatech,xpi-3128 - const: rockchip,rk3128 - description: Google Bob (Asus Chromebook Flip C101PA) items: - const: google,bob-rev13 - const: google,bob-rev12 - const: google,bob-rev11 - const: google,bob-rev10 - const: google,bob-rev9 - const: google,bob-rev8 - const: google,bob-rev7 - const: google,bob-rev6 - const: google,bob-rev5 - const: google,bob-rev4 - const: google,bob - const: google,gru - const: rockchip,rk3399 - description: Google Brain (dev-board) items: - const: google,veyron-brain-rev0 - const: google,veyron-brain - const: google,veyron - const: rockchip,rk3288 - description: Google Fievel (AOPEN Chromebox Mini) items: - const: google,veyron-fievel-rev8 - const: google,veyron-fievel-rev7 - const: google,veyron-fievel-rev6 - const: google,veyron-fievel-rev5 - const: google,veyron-fievel-rev4 - const: google,veyron-fievel-rev3 - const: google,veyron-fievel-rev2 - const: google,veyron-fievel-rev1 - const: google,veyron-fievel-rev0 - const: google,veyron-fievel - const: google,veyron - const: rockchip,rk3288 - description: Google Gru (dev-board) items: - const: google,gru-rev15 - const: google,gru-rev14 - const: google,gru-rev13 - const: google,gru-rev12 - const: google,gru-rev11 - const: google,gru-rev10 - const: google,gru-rev9 - const: google,gru-rev8 - const: google,gru-rev7 - const: google,gru-rev6 - const: google,gru-rev5 - const: google,gru-rev4 - const: google,gru-rev3 - const: google,gru-rev2 - const: google,gru - const: rockchip,rk3399 - description: Google Jaq (Haier Chromebook 11 and more w/ uSD) items: - const: google,veyron-jaq-rev5 - const: google,veyron-jaq-rev4 - const: google,veyron-jaq-rev3 - const: google,veyron-jaq-rev2 - const: google,veyron-jaq-rev1 - const: google,veyron-jaq - const: google,veyron - const: rockchip,rk3288 - description: Google Jerry (Hisense Chromebook C11 and more) items: - const: google,veyron-jerry-rev15 - const: google,veyron-jerry-rev14 - const: google,veyron-jerry-rev13 - const: google,veyron-jerry-rev12 - const: google,veyron-jerry-rev11 - const: google,veyron-jerry-rev10 - const: google,veyron-jerry-rev7 - const: google,veyron-jerry-rev6 - const: google,veyron-jerry-rev5 - const: google,veyron-jerry-rev4 - const: google,veyron-jerry-rev3 - const: google,veyron-jerry - const: google,veyron - const: rockchip,rk3288 - description: Google Kevin (Samsung Chromebook Plus) items: - const: google,kevin-rev15 - const: google,kevin-rev14 - const: google,kevin-rev13 - const: google,kevin-rev12 - const: google,kevin-rev11 - const: google,kevin-rev10 - const: google,kevin-rev9 - const: google,kevin-rev8 - const: google,kevin-rev7 - const: google,kevin-rev6 - const: google,kevin - const: google,gru - const: rockchip,rk3399 - description: Google Mickey (Asus Chromebit CS10) items: - const: google,veyron-mickey-rev8 - const: google,veyron-mickey-rev7 - const: google,veyron-mickey-rev6 - const: google,veyron-mickey-rev5 - const: google,veyron-mickey-rev4 - const: google,veyron-mickey-rev3 - const: google,veyron-mickey-rev2 - const: google,veyron-mickey-rev1 - const: google,veyron-mickey-rev0 - const: google,veyron-mickey - const: google,veyron - const: rockchip,rk3288 - description: Google Mighty (Haier Chromebook 11 and more w/ SD) items: - const: google,veyron-mighty-rev5 - const: google,veyron-mighty-rev4 - const: google,veyron-mighty-rev3 - const: google,veyron-mighty-rev2 - const: google,veyron-mighty-rev1 - const: google,veyron-mighty - const: google,veyron - const: rockchip,rk3288 - description: Google Minnie (Asus Chromebook Flip C100P) items: - const: google,veyron-minnie-rev4 - const: google,veyron-minnie-rev3 - const: google,veyron-minnie-rev2 - const: google,veyron-minnie-rev1 - const: google,veyron-minnie-rev0 - const: google,veyron-minnie - const: google,veyron - const: rockchip,rk3288 - description: Google Pinky (dev-board) items: - const: google,veyron-pinky-rev2 - const: google,veyron-pinky - const: google,veyron - const: rockchip,rk3288 - description: Google Scarlet - Dumo (ASUS Chromebook Tablet CT100) items: - const: google,scarlet-rev15-sku0 - const: google,scarlet-rev15 - const: google,scarlet-rev14-sku0 - const: google,scarlet-rev14 - const: google,scarlet-rev13-sku0 - const: google,scarlet-rev13 - const: google,scarlet-rev12-sku0 - const: google,scarlet-rev12 - const: google,scarlet-rev11-sku0 - const: google,scarlet-rev11 - const: google,scarlet-rev10-sku0 - const: google,scarlet-rev10 - const: google,scarlet-rev9-sku0 - const: google,scarlet-rev9 - const: google,scarlet-rev8-sku0 - const: google,scarlet-rev8 - const: google,scarlet-rev7-sku0 - const: google,scarlet-rev7 - const: google,scarlet-rev6-sku0 - const: google,scarlet-rev6 - const: google,scarlet-rev5-sku0 - const: google,scarlet-rev5 - const: google,scarlet - const: google,gru - const: rockchip,rk3399 - description: Google Scarlet - Kingdisplay (Acer Chromebook Tab 10) items: - const: google,scarlet-rev15-sku7 - const: google,scarlet-rev15 - const: google,scarlet-rev14-sku7 - const: google,scarlet-rev14 - const: google,scarlet-rev13-sku7 - const: google,scarlet-rev13 - const: google,scarlet-rev12-sku7 - const: google,scarlet-rev12 - const: google,scarlet-rev11-sku7 - const: google,scarlet-rev11 - const: google,scarlet-rev10-sku7 - const: google,scarlet-rev10 - const: google,scarlet-rev9-sku7 - const: google,scarlet-rev9 - const: google,scarlet-rev8-sku7 - const: google,scarlet-rev8 - const: google,scarlet-rev7-sku7 - const: google,scarlet-rev7 - const: google,scarlet-rev6-sku7 - const: google,scarlet-rev6 - const: google,scarlet-rev5-sku7 - const: google,scarlet-rev5 - const: google,scarlet-rev4-sku7 - const: google,scarlet-rev4 - const: google,scarlet-rev3-sku7 - const: google,scarlet-rev3 - const: google,scarlet - const: google,gru - const: rockchip,rk3399 - description: | Google Scarlet - Innolux display (Acer Chromebook Tab 10 and more) items: - const: google,scarlet-rev15-sku2 - const: google,scarlet-rev15-sku4 - const: google,scarlet-rev15-sku6 - const: google,scarlet-rev15 - const: google,scarlet-rev14-sku2 - const: google,scarlet-rev14-sku4 - const: google,scarlet-rev14-sku6 - const: google,scarlet-rev14 - const: google,scarlet-rev13-sku2 - const: google,scarlet-rev13-sku4 - const: google,scarlet-rev13-sku6 - const: google,scarlet-rev13 - const: google,scarlet-rev12-sku2 - const: google,scarlet-rev12-sku4 - const: google,scarlet-rev12-sku6 - const: google,scarlet-rev12 - const: google,scarlet-rev11-sku2 - const: google,scarlet-rev11-sku4 - const: google,scarlet-rev11-sku6 - const: google,scarlet-rev11 - const: google,scarlet-rev10-sku2 - const: google,scarlet-rev10-sku4 - const: google,scarlet-rev10-sku6 - const: google,scarlet-rev10 - const: google,scarlet-rev9-sku2 - const: google,scarlet-rev9-sku4 - const: google,scarlet-rev9-sku6 - const: google,scarlet-rev9 - const: google,scarlet-rev8-sku2 - const: google,scarlet-rev8-sku4 - const: google,scarlet-rev8-sku6 - const: google,scarlet-rev8 - const: google,scarlet-rev7-sku2 - const: google,scarlet-rev7-sku4 - const: google,scarlet-rev7-sku6 - const: google,scarlet-rev7 - const: google,scarlet-rev6-sku2 - const: google,scarlet-rev6-sku4 - const: google,scarlet-rev6-sku6 - const: google,scarlet-rev6 - const: google,scarlet-rev5-sku2 - const: google,scarlet-rev5-sku4 - const: google,scarlet-rev5-sku6 - const: google,scarlet-rev5 - const: google,scarlet-rev4-sku2 - const: google,scarlet-rev4-sku4 - const: google,scarlet-rev4-sku6 - const: google,scarlet-rev4 - const: google,scarlet - const: google,gru - const: rockchip,rk3399 - description: Google Speedy (Asus C201 Chromebook) items: - const: google,veyron-speedy-rev9 - const: google,veyron-speedy-rev8 - const: google,veyron-speedy-rev7 - const: google,veyron-speedy-rev6 - const: google,veyron-speedy-rev5 - const: google,veyron-speedy-rev4 - const: google,veyron-speedy-rev3 - const: google,veyron-speedy-rev2 - const: google,veyron-speedy - const: google,veyron - const: rockchip,rk3288 - description: Google Tiger (AOpen Chromebase Mini) items: - const: google,veyron-tiger-rev8 - const: google,veyron-tiger-rev7 - const: google,veyron-tiger-rev6 - const: google,veyron-tiger-rev5 - const: google,veyron-tiger-rev4 - const: google,veyron-tiger-rev3 - const: google,veyron-tiger-rev2 - const: google,veyron-tiger-rev1 - const: google,veyron-tiger-rev0 - const: google,veyron-tiger - const: google,veyron - const: rockchip,rk3288 - description: Haoyu MarsBoard RK3066 items: - const: haoyu,marsboard-rk3066 - const: rockchip,rk3066a - description: Hardkernel Odroid Go Advance items: - const: hardkernel,rk3326-odroid-go2 - const: rockchip,rk3326 - description: Hardkernel Odroid Go Advance Black Edition items: - const: hardkernel,rk3326-odroid-go2-v11 - const: rockchip,rk3326 - description: Hardkernel Odroid Go Super items: - const: hardkernel,rk3326-odroid-go3 - const: rockchip,rk3326 - description: Hardkernel Odroid M1 items: - const: rockchip,rk3568-odroid-m1 - const: rockchip,rk3568 - description: Hugsun X99 TV Box items: - const: hugsun,x99 - const: rockchip,rk3399 - description: Indiedroid Nova SBC items: - const: indiedroid,nova - const: rockchip,rk3588s - description: Khadas Edge series boards items: - enum: - khadas,edge - khadas,edge-captain - khadas,edge-v - const: rockchip,rk3399 - description: Khadas Edge2 series boards items: - const: khadas,edge2 - const: rockchip,rk3588s - description: Kobol Helios64 items: - const: kobol,helios64 - const: rockchip,rk3399 - description: Mecer Xtreme Mini S6 items: - const: mecer,xms6 - const: rockchip,rk3229 - description: Leez RK3399 P710 items: - const: leez,p710 - const: rockchip,rk3399 - description: Lunzn FastRhino R66S / R68S items: - enum: - lunzn,fastrhino-r66s - lunzn,fastrhino-r68s - const: rockchip,rk3568 - description: mqmaker MiQi items: - const: mqmaker,miqi - const: rockchip,rk3288 - description: Neardi LBA3368 items: - const: neardi,lba3368 - const: rockchip,rk3368 - description: Netxeon R89 board items: - const: netxeon,r89 - const: rockchip,rk3288 - description: OPEN AI LAB EAIDK-610 items: - const: openailab,eaidk-610 - const: rockchip,rk3399 - description: Xunlong Orange Pi RK3399 board items: - const: xunlong,rk3399-orangepi - const: rockchip,rk3399 - description: Phytec phyCORE-RK3288 Rapid Development Kit items: - const: phytec,rk3288-pcm-947 - const: phytec,rk3288-phycore-som - const: rockchip,rk3288 - description: Pine64 Pinebook Pro items: - const: pine64,pinebook-pro - const: rockchip,rk3399 - description: Pine64 PineNote items: - enum: - pine64,pinenote-v1.1 - pine64,pinenote-v1.2 - const: pine64,pinenote - const: rockchip,rk3566 - description: Pine64 PinePhone Pro items: - const: pine64,pinephone-pro - const: rockchip,rk3399 - description: Pine64 PineTab2 items: - enum: - pine64,pinetab2-v0.1 - pine64,pinetab2-v2.0 - const: pine64,pinetab2 - const: rockchip,rk3566 - description: Pine64 Rock64 items: - const: pine64,rock64 - const: rockchip,rk3328 - description: Pine64 RockPro64 items: - enum: - pine64,rockpro64-v2.1 - pine64,rockpro64-v2.0 - const: pine64,rockpro64 - const: rockchip,rk3399 - description: Pine64 Quartz64 Model A/B items: - enum: - pine64,quartz64-a - pine64,quartz64-b - const: rockchip,rk3566 - description: Pine64 QuartzPro64 items: - const: pine64,quartzpro64 - const: rockchip,rk3588 - description: Pine64 SOQuartz items: - enum: - pine64,soquartz-blade - pine64,soquartz-cm4io - pine64,soquartz-model-a - const: pine64,soquartz - const: rockchip,rk3566 - description: Powkiddy RK3566 Handheld Gaming Console items: - enum: - powkiddy,rgb10max3 - powkiddy,rgb30 - powkiddy,rk2023 - powkiddy,x55 - const: rockchip,rk3566 - description: Protonic MECSBC board items: - const: prt,mecsbc - const: rockchip,rk3568 - description: QNAP TS-433-4G 4-Bay NAS items: - const: qnap,ts433 - const: rockchip,rk3568 - description: Radxa Compute Module 3 (CM3) items: - enum: - radxa,cm3-io - const: radxa,cm3 - const: rockchip,rk3566 - description: Radxa CM3 Industrial items: - enum: - radxa,e25 - const: radxa,cm3i - const: rockchip,rk3568 - description: Radxa Rock items: - const: radxa,rock - const: rockchip,rk3188 - description: Radxa ROCK Pi 4A/A+/B/B+/C items: - enum: - radxa,rockpi4a - radxa,rockpi4a-plus - radxa,rockpi4b - radxa,rockpi4b-plus - radxa,rockpi4c - const: radxa,rockpi4 - const: rockchip,rk3399 - description: Radxa ROCK 4C+ items: - const: radxa,rock-4c-plus - const: rockchip,rk3399 - description: Radxa ROCK 4SE items: - const: radxa,rock-4se - const: rockchip,rk3399 - description: Radxa ROCK Pi E items: - const: radxa,rockpi-e - const: rockchip,rk3328 - description: Radxa ROCK Pi N8 items: - const: radxa,rockpi-n8 - const: vamrs,rk3288-vmarc-som - const: rockchip,rk3288 - description: Radxa ROCK Pi N10 items: - const: radxa,rockpi-n10 - const: vamrs,rk3399pro-vmarc-som - const: rockchip,rk3399pro - description: Radxa ROCK Pi S items: - const: radxa,rockpis - const: rockchip,rk3308 - description: Radxa Rock 2 Square items: - const: radxa,rock2-square - const: rockchip,rk3288 - description: Radxa ROCK 3A items: - const: radxa,rock3a - const: rockchip,rk3568 - description: Radxa ROCK 3B items: - const: radxa,rock-3b - const: rockchip,rk3568 - description: Radxa ROCK 3C items: - const: radxa,rock-3c - const: rockchip,rk3566 - description: Radxa ROCK 5 ITX items: - const: radxa,rock-5-itx - const: rockchip,rk3588 - description: Radxa ROCK 5A items: - const: radxa,rock-5a - const: rockchip,rk3588s - description: Radxa ROCK 5B items: - const: radxa,rock-5b - const: rockchip,rk3588 - description: Radxa ROCK S0 items: - const: radxa,rock-s0 - const: rockchip,rk3308 - description: Radxa ZERO 3W/3E items: - enum: - radxa,zero-3e - radxa,zero-3w - const: rockchip,rk3566 - description: Rikomagic MK808 v1 items: - const: rikomagic,mk808 - const: rockchip,rk3066a - description: Rockchip Kylin items: - const: rockchip,rk3036-kylin - const: rockchip,rk3036 - description: Rockchip PX3 Evaluation board items: - const: rockchip,px3-evb - const: rockchip,px3 - const: rockchip,rk3188 - description: Rockchip PX30 Evaluation board items: - const: rockchip,px30-evb - const: rockchip,px30 - description: Rockchip PX5 Evaluation board items: - const: rockchip,px5-evb - const: rockchip,px5 - const: rockchip,rk3368 - description: Rockchip R88 items: - const: rockchip,r88 - const: rockchip,rk3368 - description: Rockchip RK3036 Evaluation board items: - const: rockchip,rk3036-evb - const: rockchip,rk3036 - description: Rockchip RK3128 Evaluation board items: - const: rockchip,rk3128-evb - const: rockchip,rk3128 - description: Rockchip RK3228 Evaluation board items: - const: rockchip,rk3228-evb - const: rockchip,rk3228 - description: Rockchip RK3229 Evaluation board items: - const: rockchip,rk3229-evb - const: rockchip,rk3229 - description: Rockchip RK3288 Evaluation board items: - enum: - rockchip,rk3288-evb-act8846 - rockchip,rk3288-evb-rk808 - const: rockchip,rk3288 - description: Rockchip RK3308 Evaluation board items: - const: rockchip,rk3308-evb - const: rockchip,rk3308 - description: Rockchip RK3328 Evaluation board items: - const: rockchip,rk3328-evb - const: rockchip,rk3328 - description: Rockchip RK3368 Evaluation board (act8846 pmic) items: - const: rockchip,rk3368-evb-act8846 - const: rockchip,rk3368 - description: Rockchip RK3399 Evaluation board items: - const: rockchip,rk3399-evb - const: rockchip,rk3399 - description: Rockchip RK3399 Sapphire standalone items: - const: rockchip,rk3399-sapphire - const: rockchip,rk3399 - description: Rockchip RK3399 Sapphire with Excavator Baseboard items: - const: rockchip,rk3399-sapphire-excavator - const: rockchip,rk3399 - description: Rockchip RK3588 Evaluation board items: - const: rockchip,rk3588-evb1-v10 - const: rockchip,rk3588 - description: Rockchip RV1108 Evaluation board items: - const: rockchip,rv1108-evb - const: rockchip,rv1108 - description: Rockchip Toybrick TB-RK3588X board items: - const: rockchip,rk3588-toybrick-x0 - const: rockchip,rk3588 - description: Theobroma Systems PX30-uQ7 with Haikou baseboard items: - const: tsd,px30-ringneck-haikou - const: rockchip,px30 - description: Theobroma Systems RK3368-uQ7 with Haikou baseboard items: - const: tsd,rk3368-lion-haikou - const: rockchip,rk3368 - description: Theobroma Systems RK3399-Q7 with Haikou baseboard items: - const: tsd,rk3399-puma-haikou - const: rockchip,rk3399 - description: Theobroma Systems RK3588-SBC Jaguar items: - const: tsd,rk3588-jaguar - const: rockchip,rk3588 - description: Theobroma Systems RK3588-Q7 with Haikou baseboard items: - const: tsd,rk3588-tiger-haikou - const: tsd,rk3588-tiger - const: rockchip,rk3588 - description: Tronsmart Orion R68 Meta items: - const: tronsmart,orion-r68-meta - const: rockchip,rk3368 - description: Turing RK1 items: - const: turing,rk1 - const: rockchip,rk3588 - description: WolfVision PF5 mainboard items: - const: wolfvision,rk3568-pf5 - const: rockchip,rk3568 - description: Xunlong Orange Pi 3B items: - enum: - xunlong,orangepi-3b-v1.1 - xunlong,orangepi-3b-v2.1 - const: xunlong,orangepi-3b - const: rockchip,rk3566 - description: Xunlong Orange Pi 5 Plus items: - const: xunlong,orangepi-5-plus - const: rockchip,rk3588 - description: Xunlong Orange Pi R1 Plus / LTS items: - enum: - xunlong,orangepi-r1-plus - xunlong,orangepi-r1-plus-lts - const: rockchip,rk3328 - description: Xunlong Orange Pi 5 items: - const: xunlong,orangepi-5 - const: rockchip,rk3588s - description: Zkmagic A95X Z2 items: - const: zkmagic,a95x-z2 - const: rockchip,rk3318 - description: Rockchip RK3566 BOX Evaluation Demo board items: - const: rockchip,rk3566-box-demo - const: rockchip,rk3566 - description: Rockchip RK3568 Evaluation board items: - const: rockchip,rk3568-evb1-v10 - const: rockchip,rk3568 - description: Sinovoip RK3568 Banana Pi R2 Pro items: - const: sinovoip,rk3568-bpi-r2pro - const: rockchip,rk3568 - description: Sonoff iHost Smart Home Hub items: - const: itead,sonoff-ihost - enum: - rockchip,rv1126 - rockchip,rv1109 additionalProperties: true ... |