├── .dockerignore ├── .github └── workflows │ └── main.yml ├── .gitignore ├── .img ├── bitcoin-qrcode.png ├── bitcoin.png ├── button-liberapay.png └── button-patreon.png ├── Dockerfile ├── GetPatchAndCompileKernel.sh ├── LICENSE ├── README.md ├── config ├── v4.13 │ └── config-latest ├── v4.14 │ └── config-latest ├── v4.15 │ └── config-latest ├── v4.16 │ └── config-latest ├── v4.17 │ └── config-latest ├── v4.18 │ └── config-latest ├── v4.19 │ └── config-latest ├── v4.20 │ └── config-latest ├── v5.0 │ └── config-latest ├── v5.1 │ └── config-latest ├── v5.2 │ └── config-latest ├── v5.3 │ └── config-latest ├── v5.4 │ └── config-latest ├── v5.6 │ └── config-latest ├── v5.7 │ └── config-latest └── v5.8 │ └── config-latest ├── docker-compose.yml ├── docker └── build.sh └── patches ├── Midgard ├── r19p0-01rel0 │ ├── 0001-Mali-midgard-r19p0-fixes-for-4.13-kernels.patch │ ├── 0002-Using-the-new-header-on-4.12-kernels-for-copy_-_user.patch │ ├── 0003-Adapt-get_user_pages-calls-to-use-the-new-calling-pr.patch │ ├── 0004-Don-t-be-TOO-severe-when-looking-for-the-IRQ-names.patch │ ├── 0005-Added-the-new-compatible-list-mainly-used-by-Rockchi.patch │ ├── 0006-gpu-arm-Midgard-setup_timer-timer_setup.patch │ ├── 0007-drivers-gpu-Arm-Midgard-Replace-ACCESS_ONCE-by-READ_.patch │ ├── 0008-gpu-arm-midgard-Remove-sys_close-references.patch │ ├── 0009-GPU-ARM-Midgard-Adapt-to-the-new-mmap-call-checks.patch │ ├── 0010-GPU-Mali-Midgard-remove-rcu_read_lock-references.patch │ ├── 0011-mali-kbase-v4.20-to-v5.0-rc2-changes.patch │ └── 0012-Integrate-52791eeec1d9f4a7e7fe08aaba0b1553149d93bc-c.patch ├── r20p0-01rel0 │ ├── 0001-midgard-mali_kbase-include-linux-sched-task_stack.h.patch │ ├── 0002-Using-the-new-header-on-4.12-kernels-for-copy_-_user.patch │ ├── 0003-Adapt-get_user_pages-calls-to-use-the-new-calling-pr.patch │ ├── 0004-Don-t-be-TOO-severe-when-looking-for-the-IRQ-names.patch │ └── 0005-Added-the-new-compatible-list-mainly-used-by-Rockchi.patch └── r21p0-01rel0 │ ├── 0001-midgard-mali_kbase-include-linux-sched-task_stack.h.patch │ ├── 0002-Using-the-new-header-on-4.12-kernels-for-copy_-_user.patch │ ├── 0003-Adapt-get_user_pages-calls-to-use-the-new-calling-pr.patch │ ├── 0004-Don-t-be-TOO-severe-when-looking-for-the-IRQ-names.patch │ ├── 0005-Added-the-new-compatible-list-mainly-used-by-Rockchi.patch │ ├── 0006-gpu-arm-Midgard-setup_timer-timer_setup.patch │ └── 0007-gpu-arm-midgard-Remove-sys_close-references.patch └── kernel ├── v4.13 ├── 0001-Integrating-the-Mali-drivers.patch ├── 0002-fbdev-Mali-Add-the-FBIOGET_DMABUF-interface.patch ├── 0003-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0004-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0005-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0006-soc-rockchip-power-domain-export-idle-request.patch ├── 0007-Reboot-patch-2-The-Return.patch ├── 0008-rockchip-rga-v4l2-m2m-support.patch ├── 0009-dt-bindings-Document-the-Rockchip-RGA-bindings.patch ├── 0010-Rockchip-DRM-GEM-Prime-import-SG-Table-Support.patch ├── 0011-drm_fourcc-Add-new-P010-P016-video-format.patch └── DTS │ ├── 0001-Enabling-the-Mali-GPU-nodes-in-the-MiQi-and-Tinkerbo.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-Adaptation-ARM-dts-rockchip-add-the-MiQi-board-s-fan.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARMbian-RK3288-DTSI-changes.patch │ ├── 0007-Enabling-Tinkerboard-s-Wifi-Third-tentative.patch │ ├── 0008-Added-support-for-Tinkerboard-s-SPI-interface.patch │ ├── 0009-Define-VPU-services-in-the-Rockchip-3288-DTS-files.patch │ ├── 0010-Common-RK3288-DTSI-additions-by-ARMbian.patch │ ├── 0011-Fixes-imported-from-and-tested-by-the-ARMbian-team.patch │ ├── 0012-Tinkerboard-DTS-Define-the-Bluetooth-node.patch │ ├── 0013-Rockchip-DTSI-Fixed-a-few-typos-in-Rockchip-DTSI-fil.patch │ └── 0014-rk3288-tinker.dts-Few-additions-copied-on-TonyMac32.patch ├── v4.14 ├── 0001-Integrating-the-Mali-drivers.patch ├── 0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0004-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0005-Reboot-patch-2-The-Return.patch ├── 0006-rockchip-rga-v4l2-m2m-support.patch ├── 0007-dt-bindings-Document-the-Rockchip-RGA-bindings.patch └── DTS │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch │ ├── 0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch │ ├── 0008-Added-support-for-Tinkerboard-s-SPI-interface.patch │ ├── 0010-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch │ ├── 0011-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch │ ├── 0012-ARM-DTSI-rk3288-Add-the-RGA-node.patch │ ├── 0013-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch │ ├── 0014-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch │ ├── 0015-ARM-DTS-rk3288-tinker-Enabling-SDIO-Wireless-and.patch │ ├── 0016-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch │ ├── 0017-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch │ ├── 0018-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch │ ├── 0019-ARM-DTS-rk3288-tinker-Add-the-MIPI-DSI-node.patch │ ├── 0020-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch │ ├── 0021-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch │ ├── 0022-ARM-DTSI-rk3288-Define-the-VPU-services.patch │ ├── 0023-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch │ ├── 0024-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch │ ├── 0025-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch │ └── 0026-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch ├── v4.15 ├── 0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch ├── 0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0004-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0005-ASUS-Tinkerboard-Stupid-reboot.patch ├── 0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch ├── 0006-soc-rockchip-power-domain-export-idle-request.patch └── DTS │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch │ ├── 0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch │ ├── 0008-Added-support-for-Tinkerboard-s-SPI-interface.patch │ ├── 0010-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch │ ├── 0011-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch │ ├── 0012-ARM-DTSI-rk3288-Add-the-RGA-node.patch │ ├── 0013-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch │ ├── 0014-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch │ ├── 0015-ARM-DTS-rk3288-tinker-Enabling-SDIO-Wireless-and.patch │ ├── 0016-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch │ ├── 0017-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch │ ├── 0018-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch │ ├── 0019-ARM-DTS-rk3288-tinker-Add-the-MIPI-DSI-node.patch │ ├── 0020-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch │ ├── 0021-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch │ ├── 0022-ARM-DTSI-rk3288-Define-the-VPU-services.patch │ ├── 0023-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch │ ├── 0024-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch │ ├── 0025-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch │ └── 0026-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch ├── v4.16 ├── 0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch ├── 0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0004-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch ├── 0005-dw_mmc-The-stupid-ASUS-Reboot.patch ├── 0006-soc-rockchip-power-domain-export-idle-request.patch └── DTS │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch │ ├── 0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch │ ├── 0008-Added-support-for-Tinkerboard-s-SPI-interface.patch │ ├── 0010-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch │ ├── 0011-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch │ ├── 0012-ARM-DTSI-rk3288-Add-the-RGA-node.patch │ ├── 0013-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch │ ├── 0014-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch │ ├── 0015-ARM-DTS-rk3288-tinker-Enabling-SDIO-Wireless-and.patch │ ├── 0016-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch │ ├── 0017-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch │ ├── 0018-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch │ ├── 0019-ARM-DTS-rk3288-tinker-Add-the-MIPI-DSI-node.patch │ ├── 0020-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch │ ├── 0021-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch │ ├── 0022-ARM-DTSI-rk3288-Define-the-VPU-services.patch │ ├── 0023-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch │ ├── 0024-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch │ ├── 0025-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch │ └── 0026-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch ├── v4.17 ├── 0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch ├── 0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0004-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch ├── 0005-dw_mmc-The-stupid-ASUS-Reboot.patch ├── 0006-soc-rockchip-power-domain-export-idle-request.patch ├── 0007-drivers-drm-rockchip-Enable-IRQ-on-unbind.patch └── DTS │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch │ ├── 0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch │ ├── 0008-Added-support-for-Tinkerboard-s-SPI-interface.patch │ ├── 0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch │ ├── 0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch │ ├── 0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch │ ├── 0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch │ ├── 0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch │ ├── 0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch │ ├── 0015-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch │ ├── 0016-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch │ ├── 0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch │ ├── 0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch │ ├── 0019-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch │ ├── 0020-ARM-DTSI-rk3288-Define-the-VPU-services.patch │ ├── 0021-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch │ ├── 0022-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch │ ├── 0023-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch │ ├── 0024-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch │ └── 0025-ARM-DTSI-rk3288-Add-the-appropriate-clock-references.patch ├── v4.18 ├── 0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch ├── 0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0004-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch ├── 0005-dw_mmc-The-stupid-ASUS-Reboot.patch ├── 0006-soc-rockchip-power-domain-export-idle-request.patch ├── 0007-drivers-drm-rockchip-Enable-IRQ-on-unbind.patch └── DTS │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch │ ├── 0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch │ ├── 0008-Added-support-for-Tinkerboard-s-SPI-interface.patch │ ├── 0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch │ ├── 0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch │ ├── 0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch │ ├── 0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch │ ├── 0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch │ ├── 0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch │ ├── 0015-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch │ ├── 0016-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch │ ├── 0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch │ ├── 0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch │ ├── 0019-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch │ ├── 0020-ARM-DTSI-rk3288-Define-the-VPU-services.patch │ ├── 0021-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch │ ├── 0022-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch │ ├── 0023-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch │ ├── 0024-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch │ ├── 0025-ARM-DTSI-rk3288-Renamed-the-VPU-services-clocks.patch │ ├── 0026-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch │ ├── 0027-ARM-DTSI-rk3288-veyron-chromebook-Fix-the-EDP-output.patch │ └── 0028-ARM-DTSI-rk3288-evb-Fix-the-EDP-output-nodes.patch ├── v4.19 ├── 0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch ├── 0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0004-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch ├── 0005-dw_mmc-The-stupid-ASUS-Reboot.patch ├── 0006-soc-rockchip-power-domain-export-idle-request.patch ├── 0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch ├── 0008-rockchip-dwc2-usb-partial-power-down.patch ├── 0009-drivers-clk-rk3288-support-for-dedicating-NPLL-to-a-.patch ├── 0010-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch ├── 0011-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch ├── 0012-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch ├── 0013-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch ├── 0100-media-Add-JPEG_RAW-format.patch ├── 0101-media-Add-controls-for-JPEG-quantization-tables.patch ├── DTS │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch │ ├── 0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch │ ├── 0008-Added-support-for-Tinkerboard-s-SPI-interface.patch │ ├── 0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch │ ├── 0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch │ ├── 0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch │ ├── 0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch │ ├── 0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch │ ├── 0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch │ ├── 0015-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch │ ├── 0016-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch │ ├── 0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch │ ├── 0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch │ ├── 0019-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch │ ├── 0020-ARM-DTSI-rk3288-Define-the-VPU-services.patch │ ├── 0021-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch │ ├── 0022-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch │ ├── 0023-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch │ ├── 0024-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch │ ├── 0025-ARM-DTSI-rk3288-Renamed-the-VPU-services-clocks.patch │ ├── 0026-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch │ ├── 0027-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch │ ├── 0028-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch │ ├── 0029-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch │ └── 0030-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch └── Documentation │ ├── 0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch │ └── 0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch ├── v4.20 ├── 0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch ├── 0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0004-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch ├── 0006-soc-rockchip-power-domain-export-idle-request.patch ├── 0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch ├── 0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch ├── 0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch ├── 0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch ├── 0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch ├── 0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch ├── 0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch ├── DTS │ ├── .directory │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch │ ├── 0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch │ ├── 0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch │ ├── 0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch │ ├── 0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch │ ├── 0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch │ ├── 0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch │ ├── 0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch │ ├── 0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch │ ├── 0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch │ ├── 0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch │ ├── 0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch │ ├── 0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch │ ├── 0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch │ ├── 0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch │ ├── 0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch │ ├── 0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch │ └── 0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch └── Documentation │ ├── 0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch │ └── 0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch ├── v5.0 ├── 0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch ├── 0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0004-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch ├── 0006-soc-rockchip-power-domain-export-idle-request.patch ├── 0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch ├── 0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch ├── 0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch ├── 0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch ├── 0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch ├── 0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch ├── 0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch ├── DTS │ ├── .directory │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch │ ├── 0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch │ ├── 0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch │ ├── 0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch │ ├── 0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch │ ├── 0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch │ ├── 0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch │ ├── 0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch │ ├── 0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch │ ├── 0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch │ ├── 0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch │ ├── 0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch │ ├── 0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch │ ├── 0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch │ ├── 0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch │ ├── 0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch │ ├── 0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch │ └── 0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch └── Documentation │ ├── 0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch │ └── 0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch ├── v5.1 ├── 0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch ├── 0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0004-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch ├── 0006-soc-rockchip-power-domain-export-idle-request.patch ├── 0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch ├── 0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch ├── 0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch ├── 0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch ├── 0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch ├── 0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch ├── 0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch ├── DTS │ ├── .directory │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch │ ├── 0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch │ ├── 0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch │ ├── 0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch │ ├── 0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch │ ├── 0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch │ ├── 0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch │ ├── 0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch │ ├── 0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch │ ├── 0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch │ ├── 0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch │ ├── 0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch │ ├── 0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch │ ├── 0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch │ ├── 0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch │ ├── 0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch │ ├── 0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch │ └── 0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch ├── Documentation │ ├── 0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch │ └── 0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch └── VPU │ ├── 0001-lib-Add-sort_r-for-the-Rockchip-H264-driver.patch │ ├── 0002-soc-rockchip-pmu-export-rockchip_pmu_idle_request.patch │ ├── 0003-include-V4L2-Add-new-pixel-and-frames-formats.patch │ ├── 0004-V4L2-device-management-fixes.patch │ ├── 0005-Videobuf2-Removing-REQUEUING-state-and-replacing-som.patch │ ├── 0006-RK3288-Clock-fixes.patch │ ├── 0007-staging-rockchip-vpu-Add-MPEG-2-and-H264-Alpha-state.patch │ └── 0008-DTS-RK3399-Add-VPU-definitions.patch ├── v5.2 ├── 0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch ├── 0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0004-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch ├── 0006-soc-rockchip-power-domain-export-idle-request.patch ├── 0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch ├── 0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch ├── 0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch ├── 0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch ├── 0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch ├── 0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch ├── 0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch ├── DTS │ ├── .directory │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch │ ├── 0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch │ ├── 0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch │ ├── 0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch │ ├── 0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch │ ├── 0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch │ ├── 0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch │ ├── 0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch │ ├── 0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch │ ├── 0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch │ ├── 0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch │ ├── 0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch │ ├── 0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch │ ├── 0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch │ ├── 0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch │ ├── 0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch │ ├── 0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch │ └── 0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch ├── Documentation │ ├── 0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch │ └── 0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch └── VPU │ ├── 0001-lib-Add-sort_r-for-the-Rockchip-H264-driver.patch │ ├── 0002-soc-rockchip-pmu-export-rockchip_pmu_idle_request.patch │ ├── 0003-include-V4L2-Add-new-pixel-and-frames-formats.patch │ ├── 0004-V4L2-device-management-fixes.patch │ ├── 0005-Videobuf2-Removing-REQUEUING-state-and-replacing-som.patch │ ├── 0006-RK3288-Clock-fixes.patch │ ├── 0007-staging-rockchip-vpu-Add-MPEG-2-and-H264-Alpha-state.patch │ └── 0008-DTS-RK3399-Add-VPU-definitions.patch ├── v5.3 ├── 0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch ├── 0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0004-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch ├── 0006-soc-rockchip-power-domain-export-idle-request.patch ├── 0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch ├── 0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch ├── 0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch ├── 0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch ├── 0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch ├── 0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch ├── 0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch ├── DTS │ ├── .directory │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch │ ├── 0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch │ ├── 0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch │ ├── 0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch │ ├── 0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch │ ├── 0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch │ ├── 0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch │ ├── 0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch │ ├── 0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch │ ├── 0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch │ ├── 0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch │ ├── 0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch │ ├── 0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch │ ├── 0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch │ ├── 0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch │ ├── 0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch │ ├── 0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch │ └── 0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch ├── Documentation │ ├── 0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch │ └── 0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch └── VPU │ ├── 0001-lib-Add-sort_r-for-the-Rockchip-H264-driver.patch │ ├── 0002-soc-rockchip-pmu-export-rockchip_pmu_idle_request.patch │ ├── 0003-include-V4L2-Add-new-pixel-and-frames-formats.patch │ ├── 0004-V4L2-device-management-fixes.patch │ ├── 0005-Videobuf2-Removing-REQUEUING-state-and-replacing-som.patch │ ├── 0006-RK3288-Clock-fixes.patch │ ├── 0007-staging-rockchip-vpu-Add-MPEG-2-and-H264-Alpha-state.patch │ └── 0008-DTS-RK3399-Add-VPU-definitions.patch ├── v5.4 ├── 0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch ├── 0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch ├── 0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch ├── 0004-Remove-the-dependency-to-the-clk_mali-symbol.patch ├── 0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch ├── 0006-soc-rockchip-power-domain-export-idle-request.patch ├── 0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch ├── 0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch ├── 0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch ├── 0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch ├── 0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch ├── 0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch ├── 0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch ├── DTS │ ├── .directory │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ ├── 0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch │ ├── 0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch │ ├── 0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch │ ├── 0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch │ ├── 0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch │ ├── 0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch │ ├── 0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch │ ├── 0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch │ ├── 0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch │ ├── 0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch │ ├── 0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch │ ├── 0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch │ ├── 0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch │ ├── 0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch │ ├── 0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch │ ├── 0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch │ ├── 0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch │ ├── 0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch │ ├── 0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch │ ├── 0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch │ ├── 0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch │ └── 0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch ├── Documentation │ ├── 0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch │ └── 0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch └── VPU │ ├── 0001-lib-Add-sort_r-for-the-Rockchip-H264-driver.patch │ ├── 0002-soc-rockchip-pmu-export-rockchip_pmu_idle_request.patch │ ├── 0003-include-V4L2-Add-new-pixel-and-frames-formats.patch │ ├── 0004-V4L2-device-management-fixes.patch │ ├── 0005-Videobuf2-Removing-REQUEUING-state-and-replacing-som.patch │ ├── 0006-RK3288-Clock-fixes.patch │ ├── 0007-staging-rockchip-vpu-Add-MPEG-2-and-H264-Alpha-state.patch │ └── 0008-DTS-RK3399-Add-VPU-definitions.patch ├── v5.6 ├── 0001-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard-.patch ├── 0002-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch ├── 0003-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch ├── 0004-mimick-phy-rockchip-inno-hdmi-Support-more-pre-pll-c.patch ├── 0005-drm-rockchip-vop-filter-modes-outside-0.5-pixel-cloc.patch ├── 0006-drm-rockchip-dw_hdmi-Set-cur_ctr-to-0-always.patch ├── 0007-drm-rockchip-dw_hdmi-adjust-cklvl-txlvl-for-RF-EMI.patch ├── 0008-drm-rockchip-dw_hdmi-Use-auto-generated-tables.patch ├── 0009-drm-rockchip-dw_hdmi-add-default-594Mhz-clk-for-4K-6.patch ├── 0010-drm-rockchip-dw-hdmi-limit-tmds-to-340mhz.patch ├── 0011-HACK-drm-rockchip-vop-limit-resolution-to-3840x2160.patch ├── 0012-MINIARM-set-npll-be-used-for-hdmi-only.patch ├── 0013-clk-rockchip-rk3288-use-npll-table-to-to-improve-HDM.patch ├── 0014-clk-rockchip-rk3288-add-more-npll-clocks.patch ├── 0015-Use-340000-as-fallback-max_tmds_clock.patch ├── 0016-FIXME-Don-t-use-vop_crtc_mode_valid.patch ├── 0017-dma-fence-Reducing-DMA_FENCE_TRACE-to-debug.patch └── DTS │ ├── .directory │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ └── 0002-arm-dtsi-rk3288-tinker-Added-flags-for-reboot-suppor.patch ├── v5.7 ├── 0001-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard-.patch ├── 0002-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch ├── 0003-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch ├── 0004-mimick-phy-rockchip-inno-hdmi-Support-more-pre-pll-c.patch ├── 0005-drm-rockchip-dw_hdmi-Set-cur_ctr-to-0-always.patch ├── 0006-drm-rockchip-dw_hdmi-adjust-cklvl-txlvl-for-RF-EMI.patch ├── 0007-drm-rockchip-dw_hdmi-Use-auto-generated-tables.patch ├── 0008-drm-rockchip-dw_hdmi-add-default-594Mhz-clk-for-4K-6.patch ├── 0009-drm-rockchip-dw-hdmi-Fusion-of-two-previous-patches.patch ├── 0010-MINIARM-set-npll-be-used-for-hdmi-only.patch ├── 0011-clk-rockchip-rk3288-use-npll-table-to-to-improve-HDM.patch ├── 0012-clk-rockchip-rk3288-add-more-npll-clocks.patch ├── 0013-Use-340000-as-fallback-max_tmds_clock.patch ├── 0017-dma-fence-Reducing-DMA_FENCE_TRACE-to-debug.patch └── DTS │ ├── .directory │ ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch │ └── 0002-arm-dtsi-rk3288-tinker-Added-flags-for-reboot-suppor.patch └── v5.8 ├── 0001-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard-.patch ├── 0002-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch ├── 0003-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch ├── 0004-mimick-phy-rockchip-inno-hdmi-Support-more-pre-pll-c.patch ├── 0006-drm-rockchip-vop-filter-modes-outside-0.5-pixel-cloc.patch ├── 0007-drm-rockchip-dw_hdmi-Set-cur_ctr-to-0-always.patch ├── 0008-drm-rockchip-dw_hdmi-adjust-cklvl-txlvl-for-RF-EMI.patch ├── 0009-drm-rockchip-dw_hdmi-Use-auto-generated-tables.patch ├── 0010-drm-rockchip-dw_hdmi-add-default-594Mhz-clk-for-4K-6.patch ├── 0011-drm-rockchip-dw-hdmi-limit-tmds-to-340mhz.patch ├── 0012-HACK-drm-rockchip-vop-limit-resolution-to-3840x2160.patch ├── 0013-MINIARM-set-npll-be-used-for-hdmi-only.patch ├── 0014-clk-rockchip-rk3288-use-npll-table-to-to-improve-HDM.patch ├── 0015-clk-rockchip-rk3288-add-more-npll-clocks.patch ├── 0016-Use-340000-as-fallback-max_tmds_clock.patch ├── 0017-FIXME-Don-t-use-vop_crtc_mode_valid.patch ├── 0018-dma-fence-Reducing-DMA_FENCE_TRACE-to-debug.patch ├── 0019-drivers-staging-rtl8723bs-Initialize-structures-corr.patch └── DTS ├── .directory ├── 0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch ├── 0002-arm-dtsi-rk3288-tinker-Added-flags-for-reboot-suppor.patch └── 0003-arm-dtsi-rk3288-add-GPU-500-Mhz-OPP-again.patch /.dockerignore: -------------------------------------------------------------------------------- 1 | .gitignore -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/.gitignore -------------------------------------------------------------------------------- /.img/bitcoin-qrcode.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/.img/bitcoin-qrcode.png -------------------------------------------------------------------------------- /.img/bitcoin.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/.img/bitcoin.png -------------------------------------------------------------------------------- /.img/button-liberapay.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/.img/button-liberapay.png -------------------------------------------------------------------------------- /.img/button-patreon.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/.img/button-patreon.png -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/Dockerfile -------------------------------------------------------------------------------- /GetPatchAndCompileKernel.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/GetPatchAndCompileKernel.sh -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/README.md -------------------------------------------------------------------------------- /config/v4.13/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v4.13/config-latest -------------------------------------------------------------------------------- /config/v4.14/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v4.14/config-latest -------------------------------------------------------------------------------- /config/v4.15/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v4.15/config-latest -------------------------------------------------------------------------------- /config/v4.16/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v4.16/config-latest -------------------------------------------------------------------------------- /config/v4.17/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v4.17/config-latest -------------------------------------------------------------------------------- /config/v4.18/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v4.18/config-latest -------------------------------------------------------------------------------- /config/v4.19/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v4.19/config-latest -------------------------------------------------------------------------------- /config/v4.20/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v4.20/config-latest -------------------------------------------------------------------------------- /config/v5.0/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v5.0/config-latest -------------------------------------------------------------------------------- /config/v5.1/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v5.1/config-latest -------------------------------------------------------------------------------- /config/v5.2/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v5.2/config-latest -------------------------------------------------------------------------------- /config/v5.3/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v5.3/config-latest -------------------------------------------------------------------------------- /config/v5.4/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v5.4/config-latest -------------------------------------------------------------------------------- /config/v5.6/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v5.6/config-latest -------------------------------------------------------------------------------- /config/v5.7/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v5.7/config-latest -------------------------------------------------------------------------------- /config/v5.8/config-latest: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/config/v5.8/config-latest -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /docker/build.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/docker/build.sh -------------------------------------------------------------------------------- /patches/Midgard/r19p0-01rel0/0001-Mali-midgard-r19p0-fixes-for-4.13-kernels.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r19p0-01rel0/0001-Mali-midgard-r19p0-fixes-for-4.13-kernels.patch -------------------------------------------------------------------------------- /patches/Midgard/r19p0-01rel0/0002-Using-the-new-header-on-4.12-kernels-for-copy_-_user.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r19p0-01rel0/0002-Using-the-new-header-on-4.12-kernels-for-copy_-_user.patch -------------------------------------------------------------------------------- /patches/Midgard/r19p0-01rel0/0003-Adapt-get_user_pages-calls-to-use-the-new-calling-pr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r19p0-01rel0/0003-Adapt-get_user_pages-calls-to-use-the-new-calling-pr.patch -------------------------------------------------------------------------------- /patches/Midgard/r19p0-01rel0/0004-Don-t-be-TOO-severe-when-looking-for-the-IRQ-names.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r19p0-01rel0/0004-Don-t-be-TOO-severe-when-looking-for-the-IRQ-names.patch -------------------------------------------------------------------------------- /patches/Midgard/r19p0-01rel0/0005-Added-the-new-compatible-list-mainly-used-by-Rockchi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r19p0-01rel0/0005-Added-the-new-compatible-list-mainly-used-by-Rockchi.patch -------------------------------------------------------------------------------- /patches/Midgard/r19p0-01rel0/0006-gpu-arm-Midgard-setup_timer-timer_setup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r19p0-01rel0/0006-gpu-arm-Midgard-setup_timer-timer_setup.patch -------------------------------------------------------------------------------- /patches/Midgard/r19p0-01rel0/0007-drivers-gpu-Arm-Midgard-Replace-ACCESS_ONCE-by-READ_.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r19p0-01rel0/0007-drivers-gpu-Arm-Midgard-Replace-ACCESS_ONCE-by-READ_.patch -------------------------------------------------------------------------------- /patches/Midgard/r19p0-01rel0/0008-gpu-arm-midgard-Remove-sys_close-references.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r19p0-01rel0/0008-gpu-arm-midgard-Remove-sys_close-references.patch -------------------------------------------------------------------------------- /patches/Midgard/r19p0-01rel0/0009-GPU-ARM-Midgard-Adapt-to-the-new-mmap-call-checks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r19p0-01rel0/0009-GPU-ARM-Midgard-Adapt-to-the-new-mmap-call-checks.patch -------------------------------------------------------------------------------- /patches/Midgard/r19p0-01rel0/0010-GPU-Mali-Midgard-remove-rcu_read_lock-references.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r19p0-01rel0/0010-GPU-Mali-Midgard-remove-rcu_read_lock-references.patch -------------------------------------------------------------------------------- /patches/Midgard/r19p0-01rel0/0011-mali-kbase-v4.20-to-v5.0-rc2-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r19p0-01rel0/0011-mali-kbase-v4.20-to-v5.0-rc2-changes.patch -------------------------------------------------------------------------------- /patches/Midgard/r19p0-01rel0/0012-Integrate-52791eeec1d9f4a7e7fe08aaba0b1553149d93bc-c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r19p0-01rel0/0012-Integrate-52791eeec1d9f4a7e7fe08aaba0b1553149d93bc-c.patch -------------------------------------------------------------------------------- /patches/Midgard/r20p0-01rel0/0001-midgard-mali_kbase-include-linux-sched-task_stack.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r20p0-01rel0/0001-midgard-mali_kbase-include-linux-sched-task_stack.h.patch -------------------------------------------------------------------------------- /patches/Midgard/r20p0-01rel0/0002-Using-the-new-header-on-4.12-kernels-for-copy_-_user.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r20p0-01rel0/0002-Using-the-new-header-on-4.12-kernels-for-copy_-_user.patch -------------------------------------------------------------------------------- /patches/Midgard/r20p0-01rel0/0003-Adapt-get_user_pages-calls-to-use-the-new-calling-pr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r20p0-01rel0/0003-Adapt-get_user_pages-calls-to-use-the-new-calling-pr.patch -------------------------------------------------------------------------------- /patches/Midgard/r20p0-01rel0/0004-Don-t-be-TOO-severe-when-looking-for-the-IRQ-names.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r20p0-01rel0/0004-Don-t-be-TOO-severe-when-looking-for-the-IRQ-names.patch -------------------------------------------------------------------------------- /patches/Midgard/r20p0-01rel0/0005-Added-the-new-compatible-list-mainly-used-by-Rockchi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r20p0-01rel0/0005-Added-the-new-compatible-list-mainly-used-by-Rockchi.patch -------------------------------------------------------------------------------- /patches/Midgard/r21p0-01rel0/0001-midgard-mali_kbase-include-linux-sched-task_stack.h.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r21p0-01rel0/0001-midgard-mali_kbase-include-linux-sched-task_stack.h.patch -------------------------------------------------------------------------------- /patches/Midgard/r21p0-01rel0/0002-Using-the-new-header-on-4.12-kernels-for-copy_-_user.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r21p0-01rel0/0002-Using-the-new-header-on-4.12-kernels-for-copy_-_user.patch -------------------------------------------------------------------------------- /patches/Midgard/r21p0-01rel0/0003-Adapt-get_user_pages-calls-to-use-the-new-calling-pr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r21p0-01rel0/0003-Adapt-get_user_pages-calls-to-use-the-new-calling-pr.patch -------------------------------------------------------------------------------- /patches/Midgard/r21p0-01rel0/0004-Don-t-be-TOO-severe-when-looking-for-the-IRQ-names.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r21p0-01rel0/0004-Don-t-be-TOO-severe-when-looking-for-the-IRQ-names.patch -------------------------------------------------------------------------------- /patches/Midgard/r21p0-01rel0/0005-Added-the-new-compatible-list-mainly-used-by-Rockchi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r21p0-01rel0/0005-Added-the-new-compatible-list-mainly-used-by-Rockchi.patch -------------------------------------------------------------------------------- /patches/Midgard/r21p0-01rel0/0006-gpu-arm-Midgard-setup_timer-timer_setup.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r21p0-01rel0/0006-gpu-arm-Midgard-setup_timer-timer_setup.patch -------------------------------------------------------------------------------- /patches/Midgard/r21p0-01rel0/0007-gpu-arm-midgard-Remove-sys_close-references.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/Midgard/r21p0-01rel0/0007-gpu-arm-midgard-Remove-sys_close-references.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/0001-Integrating-the-Mali-drivers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/0001-Integrating-the-Mali-drivers.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/0002-fbdev-Mali-Add-the-FBIOGET_DMABUF-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/0002-fbdev-Mali-Add-the-FBIOGET_DMABUF-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/0003-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/0003-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/0004-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/0004-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/0005-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/0005-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/0006-soc-rockchip-power-domain-export-idle-request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/0006-soc-rockchip-power-domain-export-idle-request.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/0007-Reboot-patch-2-The-Return.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/0007-Reboot-patch-2-The-Return.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/0008-rockchip-rga-v4l2-m2m-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/0008-rockchip-rga-v4l2-m2m-support.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/0009-dt-bindings-Document-the-Rockchip-RGA-bindings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/0009-dt-bindings-Document-the-Rockchip-RGA-bindings.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/0010-Rockchip-DRM-GEM-Prime-import-SG-Table-Support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/0010-Rockchip-DRM-GEM-Prime-import-SG-Table-Support.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/0011-drm_fourcc-Add-new-P010-P016-video-format.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/0011-drm_fourcc-Add-new-P010-P016-video-format.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0001-Enabling-the-Mali-GPU-nodes-in-the-MiQi-and-Tinkerbo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0001-Enabling-the-Mali-GPU-nodes-in-the-MiQi-and-Tinkerbo.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0003-Adaptation-ARM-dts-rockchip-add-the-MiQi-board-s-fan.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0003-Adaptation-ARM-dts-rockchip-add-the-MiQi-board-s-fan.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0006-ARMbian-RK3288-DTSI-changes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0006-ARMbian-RK3288-DTSI-changes.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0007-Enabling-Tinkerboard-s-Wifi-Third-tentative.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0007-Enabling-Tinkerboard-s-Wifi-Third-tentative.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0009-Define-VPU-services-in-the-Rockchip-3288-DTS-files.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0009-Define-VPU-services-in-the-Rockchip-3288-DTS-files.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0010-Common-RK3288-DTSI-additions-by-ARMbian.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0010-Common-RK3288-DTSI-additions-by-ARMbian.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0011-Fixes-imported-from-and-tested-by-the-ARMbian-team.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0011-Fixes-imported-from-and-tested-by-the-ARMbian-team.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0012-Tinkerboard-DTS-Define-the-Bluetooth-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0012-Tinkerboard-DTS-Define-the-Bluetooth-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0013-Rockchip-DTSI-Fixed-a-few-typos-in-Rockchip-DTSI-fil.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0013-Rockchip-DTSI-Fixed-a-few-typos-in-Rockchip-DTSI-fil.patch -------------------------------------------------------------------------------- /patches/kernel/v4.13/DTS/0014-rk3288-tinker.dts-Few-additions-copied-on-TonyMac32.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.13/DTS/0014-rk3288-tinker.dts-Few-additions-copied-on-TonyMac32.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/0001-Integrating-the-Mali-drivers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/0001-Integrating-the-Mali-drivers.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/0005-Reboot-patch-2-The-Return.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/0005-Reboot-patch-2-The-Return.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/0006-rockchip-rga-v4l2-m2m-support.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/0006-rockchip-rga-v4l2-m2m-support.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/0007-dt-bindings-Document-the-Rockchip-RGA-bindings.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/0007-dt-bindings-Document-the-Rockchip-RGA-bindings.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0010-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0010-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0011-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0011-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0012-ARM-DTSI-rk3288-Add-the-RGA-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0012-ARM-DTSI-rk3288-Add-the-RGA-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0013-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0013-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0014-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0014-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0015-ARM-DTS-rk3288-tinker-Enabling-SDIO-Wireless-and.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0015-ARM-DTS-rk3288-tinker-Enabling-SDIO-Wireless-and.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0016-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0016-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0017-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0017-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0018-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0018-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0019-ARM-DTS-rk3288-tinker-Add-the-MIPI-DSI-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0019-ARM-DTS-rk3288-tinker-Add-the-MIPI-DSI-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0020-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0020-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0021-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0021-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0022-ARM-DTSI-rk3288-Define-the-VPU-services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0022-ARM-DTSI-rk3288-Define-the-VPU-services.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0023-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0023-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0024-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0024-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0025-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0025-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch -------------------------------------------------------------------------------- /patches/kernel/v4.14/DTS/0026-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.14/DTS/0026-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/0005-ASUS-Tinkerboard-Stupid-reboot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/0005-ASUS-Tinkerboard-Stupid-reboot.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/0006-soc-rockchip-power-domain-export-idle-request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/0006-soc-rockchip-power-domain-export-idle-request.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0010-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0010-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0011-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0011-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0012-ARM-DTSI-rk3288-Add-the-RGA-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0012-ARM-DTSI-rk3288-Add-the-RGA-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0013-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0013-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0014-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0014-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0015-ARM-DTS-rk3288-tinker-Enabling-SDIO-Wireless-and.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0015-ARM-DTS-rk3288-tinker-Enabling-SDIO-Wireless-and.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0016-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0016-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0017-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0017-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0018-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0018-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0019-ARM-DTS-rk3288-tinker-Add-the-MIPI-DSI-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0019-ARM-DTS-rk3288-tinker-Add-the-MIPI-DSI-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0020-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0020-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0021-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0021-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0022-ARM-DTSI-rk3288-Define-the-VPU-services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0022-ARM-DTSI-rk3288-Define-the-VPU-services.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0023-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0023-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0024-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0024-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0025-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0025-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch -------------------------------------------------------------------------------- /patches/kernel/v4.15/DTS/0026-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.15/DTS/0026-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/0005-dw_mmc-The-stupid-ASUS-Reboot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/0005-dw_mmc-The-stupid-ASUS-Reboot.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/0006-soc-rockchip-power-domain-export-idle-request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/0006-soc-rockchip-power-domain-export-idle-request.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0010-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0010-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0011-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0011-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0012-ARM-DTSI-rk3288-Add-the-RGA-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0012-ARM-DTSI-rk3288-Add-the-RGA-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0013-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0013-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0014-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0014-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0015-ARM-DTS-rk3288-tinker-Enabling-SDIO-Wireless-and.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0015-ARM-DTS-rk3288-tinker-Enabling-SDIO-Wireless-and.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0016-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0016-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0017-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0017-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0018-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0018-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0019-ARM-DTS-rk3288-tinker-Add-the-MIPI-DSI-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0019-ARM-DTS-rk3288-tinker-Add-the-MIPI-DSI-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0020-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0020-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0021-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0021-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0022-ARM-DTSI-rk3288-Define-the-VPU-services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0022-ARM-DTSI-rk3288-Define-the-VPU-services.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0023-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0023-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0024-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0024-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0025-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0025-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch -------------------------------------------------------------------------------- /patches/kernel/v4.16/DTS/0026-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.16/DTS/0026-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/0005-dw_mmc-The-stupid-ASUS-Reboot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/0005-dw_mmc-The-stupid-ASUS-Reboot.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/0006-soc-rockchip-power-domain-export-idle-request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/0006-soc-rockchip-power-domain-export-idle-request.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/0007-drivers-drm-rockchip-Enable-IRQ-on-unbind.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/0007-drivers-drm-rockchip-Enable-IRQ-on-unbind.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0015-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0015-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0016-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0016-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0019-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0019-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0020-ARM-DTSI-rk3288-Define-the-VPU-services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0020-ARM-DTSI-rk3288-Define-the-VPU-services.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0021-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0021-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0022-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0022-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0023-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0023-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0024-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0024-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch -------------------------------------------------------------------------------- /patches/kernel/v4.17/DTS/0025-ARM-DTSI-rk3288-Add-the-appropriate-clock-references.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.17/DTS/0025-ARM-DTSI-rk3288-Add-the-appropriate-clock-references.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/0005-dw_mmc-The-stupid-ASUS-Reboot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/0005-dw_mmc-The-stupid-ASUS-Reboot.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/0006-soc-rockchip-power-domain-export-idle-request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/0006-soc-rockchip-power-domain-export-idle-request.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/0007-drivers-drm-rockchip-Enable-IRQ-on-unbind.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/0007-drivers-drm-rockchip-Enable-IRQ-on-unbind.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0015-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0015-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0016-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0016-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0019-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0019-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0020-ARM-DTSI-rk3288-Define-the-VPU-services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0020-ARM-DTSI-rk3288-Define-the-VPU-services.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0021-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0021-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0022-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0022-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0023-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0023-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0024-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0024-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0025-ARM-DTSI-rk3288-Renamed-the-VPU-services-clocks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0025-ARM-DTSI-rk3288-Renamed-the-VPU-services-clocks.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0026-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0026-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0027-ARM-DTSI-rk3288-veyron-chromebook-Fix-the-EDP-output.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0027-ARM-DTSI-rk3288-veyron-chromebook-Fix-the-EDP-output.patch -------------------------------------------------------------------------------- /patches/kernel/v4.18/DTS/0028-ARM-DTSI-rk3288-evb-Fix-the-EDP-output-nodes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.18/DTS/0028-ARM-DTSI-rk3288-evb-Fix-the-EDP-output-nodes.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0005-dw_mmc-The-stupid-ASUS-Reboot.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0005-dw_mmc-The-stupid-ASUS-Reboot.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0006-soc-rockchip-power-domain-export-idle-request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0006-soc-rockchip-power-domain-export-idle-request.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0008-rockchip-dwc2-usb-partial-power-down.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0008-rockchip-dwc2-usb-partial-power-down.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0009-drivers-clk-rk3288-support-for-dedicating-NPLL-to-a-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0009-drivers-clk-rk3288-support-for-dedicating-NPLL-to-a-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0010-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0010-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0011-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0011-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0012-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0012-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0013-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0013-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0100-media-Add-JPEG_RAW-format.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0100-media-Add-JPEG_RAW-format.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/0101-media-Add-controls-for-JPEG-quantization-tables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/0101-media-Add-controls-for-JPEG-quantization-tables.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0008-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0015-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0015-ARM-DTS-rk3288-tinker-Improving-the-CPU-max-volt.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0016-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0016-ARM-DTS-rk3288-tinker-Setting-up-the-SD-regulato.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0019-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0019-ARM-DTS-rk3288-tinker-Defining-SDMMC-properties.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0020-ARM-DTSI-rk3288-Define-the-VPU-services.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0020-ARM-DTSI-rk3288-Define-the-VPU-services.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0021-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0021-ARM-DTS-rk3288-miqi-Enable-the-Video-encoding-MM.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0022-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0022-ARM-DTS-rk3288-tinker-Enable-the-Video-encoding-MMU-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0023-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0023-ARM-DTSI-rk3288-firefly-Enable-the-Video-encoding-MM.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0024-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0024-ARM-DTSI-rk3288-veyron-Enable-the-Video-encoding-MMU.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0025-ARM-DTSI-rk3288-Renamed-the-VPU-services-clocks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0025-ARM-DTSI-rk3288-Renamed-the-VPU-services-clocks.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0026-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0026-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0027-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0027-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0028-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0028-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0029-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0029-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/DTS/0030-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/DTS/0030-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch -------------------------------------------------------------------------------- /patches/kernel/v4.19/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.19/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0006-soc-rockchip-power-domain-export-idle-request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0006-soc-rockchip-power-domain-export-idle-request.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,11,5,20,31,36 3 | Version=4 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/DTS/0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/DTS/0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch -------------------------------------------------------------------------------- /patches/kernel/v4.20/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v4.20/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0006-soc-rockchip-power-domain-export-idle-request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0006-soc-rockchip-power-domain-export-idle-request.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,11,5,20,31,36 3 | Version=4 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/DTS/0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/DTS/0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch -------------------------------------------------------------------------------- /patches/kernel/v5.0/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.0/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0006-soc-rockchip-power-domain-export-idle-request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0006-soc-rockchip-power-domain-export-idle-request.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,11,5,20,31,36 3 | Version=4 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/DTS/0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/DTS/0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/VPU/0001-lib-Add-sort_r-for-the-Rockchip-H264-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/VPU/0001-lib-Add-sort_r-for-the-Rockchip-H264-driver.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/VPU/0002-soc-rockchip-pmu-export-rockchip_pmu_idle_request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/VPU/0002-soc-rockchip-pmu-export-rockchip_pmu_idle_request.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/VPU/0003-include-V4L2-Add-new-pixel-and-frames-formats.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/VPU/0003-include-V4L2-Add-new-pixel-and-frames-formats.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/VPU/0004-V4L2-device-management-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/VPU/0004-V4L2-device-management-fixes.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/VPU/0005-Videobuf2-Removing-REQUEUING-state-and-replacing-som.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/VPU/0005-Videobuf2-Removing-REQUEUING-state-and-replacing-som.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/VPU/0006-RK3288-Clock-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/VPU/0006-RK3288-Clock-fixes.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/VPU/0007-staging-rockchip-vpu-Add-MPEG-2-and-H264-Alpha-state.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/VPU/0007-staging-rockchip-vpu-Add-MPEG-2-and-H264-Alpha-state.patch -------------------------------------------------------------------------------- /patches/kernel/v5.1/VPU/0008-DTS-RK3399-Add-VPU-definitions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.1/VPU/0008-DTS-RK3399-Add-VPU-definitions.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0006-soc-rockchip-power-domain-export-idle-request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0006-soc-rockchip-power-domain-export-idle-request.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,11,5,20,31,36 3 | Version=4 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/DTS/0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/DTS/0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/VPU/0001-lib-Add-sort_r-for-the-Rockchip-H264-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/VPU/0001-lib-Add-sort_r-for-the-Rockchip-H264-driver.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/VPU/0002-soc-rockchip-pmu-export-rockchip_pmu_idle_request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/VPU/0002-soc-rockchip-pmu-export-rockchip_pmu_idle_request.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/VPU/0003-include-V4L2-Add-new-pixel-and-frames-formats.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/VPU/0003-include-V4L2-Add-new-pixel-and-frames-formats.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/VPU/0004-V4L2-device-management-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/VPU/0004-V4L2-device-management-fixes.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/VPU/0005-Videobuf2-Removing-REQUEUING-state-and-replacing-som.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/VPU/0005-Videobuf2-Removing-REQUEUING-state-and-replacing-som.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/VPU/0006-RK3288-Clock-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/VPU/0006-RK3288-Clock-fixes.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/VPU/0007-staging-rockchip-vpu-Add-MPEG-2-and-H264-Alpha-state.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/VPU/0007-staging-rockchip-vpu-Add-MPEG-2-and-H264-Alpha-state.patch -------------------------------------------------------------------------------- /patches/kernel/v5.2/VPU/0008-DTS-RK3399-Add-VPU-definitions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.2/VPU/0008-DTS-RK3399-Add-VPU-definitions.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0006-soc-rockchip-power-domain-export-idle-request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0006-soc-rockchip-power-domain-export-idle-request.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,11,5,20,31,36 3 | Version=4 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/DTS/0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/DTS/0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/VPU/0001-lib-Add-sort_r-for-the-Rockchip-H264-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/VPU/0001-lib-Add-sort_r-for-the-Rockchip-H264-driver.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/VPU/0002-soc-rockchip-pmu-export-rockchip_pmu_idle_request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/VPU/0002-soc-rockchip-pmu-export-rockchip_pmu_idle_request.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/VPU/0003-include-V4L2-Add-new-pixel-and-frames-formats.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/VPU/0003-include-V4L2-Add-new-pixel-and-frames-formats.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/VPU/0004-V4L2-device-management-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/VPU/0004-V4L2-device-management-fixes.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/VPU/0005-Videobuf2-Removing-REQUEUING-state-and-replacing-som.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/VPU/0005-Videobuf2-Removing-REQUEUING-state-and-replacing-som.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/VPU/0006-RK3288-Clock-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/VPU/0006-RK3288-Clock-fixes.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/VPU/0007-staging-rockchip-vpu-Add-MPEG-2-and-H264-Alpha-state.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/VPU/0007-staging-rockchip-vpu-Add-MPEG-2-and-H264-Alpha-state.patch -------------------------------------------------------------------------------- /patches/kernel/v5.3/VPU/0008-DTS-RK3399-Add-VPU-definitions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.3/VPU/0008-DTS-RK3399-Add-VPU-definitions.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0001-drivers-Integrating-Mali-Midgard-video-and-gpu-drive.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0002-clk-rockchip-add-all-known-operating-points-to-the-a.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0003-clk-rockchip-rk3288-prefer-vdpu-for-vcodec-clock-sou.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0004-Remove-the-dependency-to-the-clk_mali-symbol.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0005-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0006-soc-rockchip-power-domain-export-idle-request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0006-soc-rockchip-power-domain-export-idle-request.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0007-drivers-wifi-ath9k-reverse-do-not-use-bulk-on-EP3-and-EP4.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0008-clk-rockchip-rk3288-Support-for-dedicating-NPLL-to-a.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0009-drm-dw_hdmi-rockchip-better-clock-selection-logic-an.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0010-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0011-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0012-mmc-Added-a-flag-to-disable-cache-flush-during-reset.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/0013-spi-Added-support-for-Tinkerboard-s-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,11,5,20,31,36 3 | Version=4 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0002-ARM-dts-rockchip-fix-the-regulator-s-voltage-range-o.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0003-ARM-dts-rockchip-add-the-MiQi-board-s-fan-definition.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0004-ARM-dts-rockchip-add-support-for-1800-MHz-operation-.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0005-Readapt-ARM-dts-rockchip-miqi-add-turbo-mode-operati.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0006-ARM-DTSI-rk3288-Missing-GRF-handles.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0007-RK3288-DTSI-rk3288-Add-missing-SPI2-pinctrl.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0009-ARM-DTSI-rk3288-Adding-cells-addresses-and-size.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0010-ARM-DTSI-rk3288-Adding-missing-EDP-power-domain.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0011-ARM-DTSI-rk3288-Adding-missing-VOPB-registers.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0012-ARM-DTSI-rk3288-Fixed-the-SPDIF-node-address.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0013-ARM-DTS-rk3288-tinker-Enabling-SDIO-and-Wifi.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0014-ARM-DTS-rk3288-tinker-Setup-the-Bluetooth-UART-pins.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0015-ARM-DTSI-rk3288-tinker-Improving-the-CPU-max-voltage.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0016-ARM-DTSI-rk3288-tinker-Setting-up-the-SD-regulators.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0017-ARM-DTS-rk3288-tinker-Defined-the-I2C-interfaces.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0018-ARM-DTS-rk3288-tinker-Defining-the-SPI-interface.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0019-ARM-DTSI-rk3288-tinker-Defining-SDMMC-properties.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0020-ARM-DTSI-rk3288-Set-the-VPU-MMU-power-domains.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0021-ARM-dtsi-The-VPU-service-as-defined-in-the-V4L2-driv.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0022-dts-rk3288-veyron-chromebook-dedicate-npll-to-VOP0-H.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0023-dts-rk3288-support-for-dedicating-npll-to-a-vop.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/DTS/0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/DTS/0024-arm-dts-veyron-Added-a-flag-to-disable-cache-flush-d.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/Documentation/0001-dt-bindings-clock-rk3288-cru-Add-property-to-dedicat.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/Documentation/0002-dt-bindings-display-rockchip-dw_hdmi-Add-property-fo.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/VPU/0001-lib-Add-sort_r-for-the-Rockchip-H264-driver.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/VPU/0001-lib-Add-sort_r-for-the-Rockchip-H264-driver.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/VPU/0002-soc-rockchip-pmu-export-rockchip_pmu_idle_request.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/VPU/0002-soc-rockchip-pmu-export-rockchip_pmu_idle_request.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/VPU/0003-include-V4L2-Add-new-pixel-and-frames-formats.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/VPU/0003-include-V4L2-Add-new-pixel-and-frames-formats.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/VPU/0004-V4L2-device-management-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/VPU/0004-V4L2-device-management-fixes.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/VPU/0005-Videobuf2-Removing-REQUEUING-state-and-replacing-som.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/VPU/0005-Videobuf2-Removing-REQUEUING-state-and-replacing-som.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/VPU/0006-RK3288-Clock-fixes.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/VPU/0006-RK3288-Clock-fixes.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/VPU/0007-staging-rockchip-vpu-Add-MPEG-2-and-H264-Alpha-state.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/VPU/0007-staging-rockchip-vpu-Add-MPEG-2-and-H264-Alpha-state.patch -------------------------------------------------------------------------------- /patches/kernel/v5.4/VPU/0008-DTS-RK3399-Add-VPU-definitions.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.4/VPU/0008-DTS-RK3399-Add-VPU-definitions.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0001-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0001-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard-.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0002-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0002-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0003-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0003-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0004-mimick-phy-rockchip-inno-hdmi-Support-more-pre-pll-c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0004-mimick-phy-rockchip-inno-hdmi-Support-more-pre-pll-c.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0005-drm-rockchip-vop-filter-modes-outside-0.5-pixel-cloc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0005-drm-rockchip-vop-filter-modes-outside-0.5-pixel-cloc.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0006-drm-rockchip-dw_hdmi-Set-cur_ctr-to-0-always.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0006-drm-rockchip-dw_hdmi-Set-cur_ctr-to-0-always.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0007-drm-rockchip-dw_hdmi-adjust-cklvl-txlvl-for-RF-EMI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0007-drm-rockchip-dw_hdmi-adjust-cklvl-txlvl-for-RF-EMI.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0008-drm-rockchip-dw_hdmi-Use-auto-generated-tables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0008-drm-rockchip-dw_hdmi-Use-auto-generated-tables.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0009-drm-rockchip-dw_hdmi-add-default-594Mhz-clk-for-4K-6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0009-drm-rockchip-dw_hdmi-add-default-594Mhz-clk-for-4K-6.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0010-drm-rockchip-dw-hdmi-limit-tmds-to-340mhz.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0010-drm-rockchip-dw-hdmi-limit-tmds-to-340mhz.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0011-HACK-drm-rockchip-vop-limit-resolution-to-3840x2160.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0011-HACK-drm-rockchip-vop-limit-resolution-to-3840x2160.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0012-MINIARM-set-npll-be-used-for-hdmi-only.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0012-MINIARM-set-npll-be-used-for-hdmi-only.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0013-clk-rockchip-rk3288-use-npll-table-to-to-improve-HDM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0013-clk-rockchip-rk3288-use-npll-table-to-to-improve-HDM.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0014-clk-rockchip-rk3288-add-more-npll-clocks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0014-clk-rockchip-rk3288-add-more-npll-clocks.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0015-Use-340000-as-fallback-max_tmds_clock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0015-Use-340000-as-fallback-max_tmds_clock.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0016-FIXME-Don-t-use-vop_crtc_mode_valid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0016-FIXME-Don-t-use-vop_crtc_mode_valid.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/0017-dma-fence-Reducing-DMA_FENCE_TRACE-to-debug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/0017-dma-fence-Reducing-DMA_FENCE_TRACE-to-debug.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/DTS/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,11,5,20,31,36 3 | Version=4 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /patches/kernel/v5.6/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v5.6/DTS/0002-arm-dtsi-rk3288-tinker-Added-flags-for-reboot-suppor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.6/DTS/0002-arm-dtsi-rk3288-tinker-Added-flags-for-reboot-suppor.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0001-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0001-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard-.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0002-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0002-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0003-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0003-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0004-mimick-phy-rockchip-inno-hdmi-Support-more-pre-pll-c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0004-mimick-phy-rockchip-inno-hdmi-Support-more-pre-pll-c.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0005-drm-rockchip-dw_hdmi-Set-cur_ctr-to-0-always.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0005-drm-rockchip-dw_hdmi-Set-cur_ctr-to-0-always.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0006-drm-rockchip-dw_hdmi-adjust-cklvl-txlvl-for-RF-EMI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0006-drm-rockchip-dw_hdmi-adjust-cklvl-txlvl-for-RF-EMI.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0007-drm-rockchip-dw_hdmi-Use-auto-generated-tables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0007-drm-rockchip-dw_hdmi-Use-auto-generated-tables.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0008-drm-rockchip-dw_hdmi-add-default-594Mhz-clk-for-4K-6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0008-drm-rockchip-dw_hdmi-add-default-594Mhz-clk-for-4K-6.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0009-drm-rockchip-dw-hdmi-Fusion-of-two-previous-patches.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0009-drm-rockchip-dw-hdmi-Fusion-of-two-previous-patches.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0010-MINIARM-set-npll-be-used-for-hdmi-only.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0010-MINIARM-set-npll-be-used-for-hdmi-only.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0011-clk-rockchip-rk3288-use-npll-table-to-to-improve-HDM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0011-clk-rockchip-rk3288-use-npll-table-to-to-improve-HDM.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0012-clk-rockchip-rk3288-add-more-npll-clocks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0012-clk-rockchip-rk3288-add-more-npll-clocks.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0013-Use-340000-as-fallback-max_tmds_clock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0013-Use-340000-as-fallback-max_tmds_clock.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/0017-dma-fence-Reducing-DMA_FENCE_TRACE-to-debug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/0017-dma-fence-Reducing-DMA_FENCE_TRACE-to-debug.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/DTS/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,11,5,20,31,36 3 | Version=4 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /patches/kernel/v5.7/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v5.7/DTS/0002-arm-dtsi-rk3288-tinker-Added-flags-for-reboot-suppor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.7/DTS/0002-arm-dtsi-rk3288-tinker-Added-flags-for-reboot-suppor.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0001-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard-.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0001-drivers-mmc-dw-mci-rockchip-Handle-ASUS-Tinkerboard-.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0002-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0002-block-partitions-efi-Ignore-GPT-flags-on-Veyron-Chro.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0003-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0003-block-partitions-efi-Ignore-bizarre-Chromebook-GPT-p.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0004-mimick-phy-rockchip-inno-hdmi-Support-more-pre-pll-c.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0004-mimick-phy-rockchip-inno-hdmi-Support-more-pre-pll-c.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0006-drm-rockchip-vop-filter-modes-outside-0.5-pixel-cloc.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0006-drm-rockchip-vop-filter-modes-outside-0.5-pixel-cloc.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0007-drm-rockchip-dw_hdmi-Set-cur_ctr-to-0-always.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0007-drm-rockchip-dw_hdmi-Set-cur_ctr-to-0-always.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0008-drm-rockchip-dw_hdmi-adjust-cklvl-txlvl-for-RF-EMI.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0008-drm-rockchip-dw_hdmi-adjust-cklvl-txlvl-for-RF-EMI.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0009-drm-rockchip-dw_hdmi-Use-auto-generated-tables.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0009-drm-rockchip-dw_hdmi-Use-auto-generated-tables.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0010-drm-rockchip-dw_hdmi-add-default-594Mhz-clk-for-4K-6.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0010-drm-rockchip-dw_hdmi-add-default-594Mhz-clk-for-4K-6.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0011-drm-rockchip-dw-hdmi-limit-tmds-to-340mhz.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0011-drm-rockchip-dw-hdmi-limit-tmds-to-340mhz.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0012-HACK-drm-rockchip-vop-limit-resolution-to-3840x2160.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0012-HACK-drm-rockchip-vop-limit-resolution-to-3840x2160.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0013-MINIARM-set-npll-be-used-for-hdmi-only.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0013-MINIARM-set-npll-be-used-for-hdmi-only.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0014-clk-rockchip-rk3288-use-npll-table-to-to-improve-HDM.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0014-clk-rockchip-rk3288-use-npll-table-to-to-improve-HDM.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0015-clk-rockchip-rk3288-add-more-npll-clocks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0015-clk-rockchip-rk3288-add-more-npll-clocks.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0016-Use-340000-as-fallback-max_tmds_clock.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0016-Use-340000-as-fallback-max_tmds_clock.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0017-FIXME-Don-t-use-vop_crtc_mode_valid.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0017-FIXME-Don-t-use-vop_crtc_mode_valid.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0018-dma-fence-Reducing-DMA_FENCE_TRACE-to-debug.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0018-dma-fence-Reducing-DMA_FENCE_TRACE-to-debug.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/0019-drivers-staging-rtl8723bs-Initialize-structures-corr.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/0019-drivers-staging-rtl8723bs-Initialize-structures-corr.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/DTS/.directory: -------------------------------------------------------------------------------- 1 | [Dolphin] 2 | Timestamp=2018,11,5,20,31,36 3 | Version=4 4 | ViewMode=1 5 | -------------------------------------------------------------------------------- /patches/kernel/v5.8/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/DTS/0001-dts-rk3288-miqi-Enabling-the-Mali-GPU-node.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/DTS/0002-arm-dtsi-rk3288-tinker-Added-flags-for-reboot-suppor.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/DTS/0002-arm-dtsi-rk3288-tinker-Added-flags-for-reboot-suppor.patch -------------------------------------------------------------------------------- /patches/kernel/v5.8/DTS/0003-arm-dtsi-rk3288-add-GPU-500-Mhz-OPP-again.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Miouyouyou/RockMyy/HEAD/patches/kernel/v5.8/DTS/0003-arm-dtsi-rk3288-add-GPU-500-Mhz-OPP-again.patch --------------------------------------------------------------------------------