├── .gitignore ├── README.md ├── driver ├── documentation │ └── devicetree │ │ └── bindings │ │ └── arm │ │ └── mali-utgard.txt └── src │ ├── devicedrv │ ├── mali │ │ ├── .version │ │ ├── Kbuild │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── common │ │ │ ├── mali_broadcast.c │ │ │ ├── mali_broadcast.h │ │ │ ├── mali_control_timer.c │ │ │ ├── mali_control_timer.h │ │ │ ├── mali_dlbu.c │ │ │ ├── mali_dlbu.h │ │ │ ├── mali_dvfs_policy.c │ │ │ ├── mali_dvfs_policy.h │ │ │ ├── mali_executor.c │ │ │ ├── mali_executor.h │ │ │ ├── mali_gp.c │ │ │ ├── mali_gp.h │ │ │ ├── mali_gp_job.c │ │ │ ├── mali_gp_job.h │ │ │ ├── mali_group.c │ │ │ ├── mali_group.h │ │ │ ├── mali_hw_core.c │ │ │ ├── mali_hw_core.h │ │ │ ├── mali_kernel_common.h │ │ │ ├── mali_kernel_core.c │ │ │ ├── mali_kernel_core.h │ │ │ ├── mali_kernel_utilization.c │ │ │ ├── mali_kernel_utilization.h │ │ │ ├── mali_kernel_vsync.c │ │ │ ├── mali_l2_cache.c │ │ │ ├── mali_l2_cache.h │ │ │ ├── mali_mem_validation.c │ │ │ ├── mali_mem_validation.h │ │ │ ├── mali_mmu.c │ │ │ ├── mali_mmu.h │ │ │ ├── mali_mmu_page_directory.c │ │ │ ├── mali_mmu_page_directory.h │ │ │ ├── mali_osk.h │ │ │ ├── mali_osk_bitops.h │ │ │ ├── mali_osk_list.h │ │ │ ├── mali_osk_mali.h │ │ │ ├── mali_osk_profiling.h │ │ │ ├── mali_osk_types.h │ │ │ ├── mali_pm.c │ │ │ ├── mali_pm.h │ │ │ ├── mali_pm_domain.c │ │ │ ├── mali_pm_domain.h │ │ │ ├── mali_pm_metrics.c │ │ │ ├── mali_pm_metrics.h │ │ │ ├── mali_pmu.c │ │ │ ├── mali_pmu.h │ │ │ ├── mali_pp.c │ │ │ ├── mali_pp.h │ │ │ ├── mali_pp_job.c │ │ │ ├── mali_pp_job.h │ │ │ ├── mali_scheduler.c │ │ │ ├── mali_scheduler.h │ │ │ ├── mali_scheduler_types.h │ │ │ ├── mali_session.c │ │ │ ├── mali_session.h │ │ │ ├── mali_soft_job.c │ │ │ ├── mali_soft_job.h │ │ │ ├── mali_spinlock_reentrant.c │ │ │ ├── mali_spinlock_reentrant.h │ │ │ ├── mali_timeline.c │ │ │ ├── mali_timeline.h │ │ │ ├── mali_timeline_fence_wait.c │ │ │ ├── mali_timeline_fence_wait.h │ │ │ ├── mali_timeline_sync_fence.c │ │ │ ├── mali_timeline_sync_fence.h │ │ │ ├── mali_ukk.h │ │ │ ├── mali_user_settings_db.c │ │ │ └── mali_user_settings_db.h │ │ ├── include │ │ │ └── linux │ │ │ │ └── mali │ │ │ │ ├── mali_utgard.h │ │ │ │ ├── mali_utgard_ioctl.h │ │ │ │ ├── mali_utgard_profiling_events.h │ │ │ │ ├── mali_utgard_profiling_gator_api.h │ │ │ │ └── mali_utgard_uk_types.h │ │ ├── linux │ │ │ ├── license │ │ │ │ └── gpl │ │ │ │ │ └── mali_kernel_license.h │ │ │ ├── mali_devfreq.c │ │ │ ├── mali_devfreq.h │ │ │ ├── mali_device_pause_resume.c │ │ │ ├── mali_kernel_linux.c │ │ │ ├── mali_kernel_linux.h │ │ │ ├── mali_kernel_sysfs.c │ │ │ ├── mali_kernel_sysfs.h │ │ │ ├── mali_linux_trace.h │ │ │ ├── mali_memory.c │ │ │ ├── mali_memory.h │ │ │ ├── mali_memory_block_alloc.c │ │ │ ├── mali_memory_block_alloc.h │ │ │ ├── mali_memory_cow.c │ │ │ ├── mali_memory_cow.h │ │ │ ├── mali_memory_defer_bind.c │ │ │ ├── mali_memory_defer_bind.h │ │ │ ├── mali_memory_dma_buf.c │ │ │ ├── mali_memory_dma_buf.h │ │ │ ├── mali_memory_external.c │ │ │ ├── mali_memory_external.h │ │ │ ├── mali_memory_manager.c │ │ │ ├── mali_memory_manager.h │ │ │ ├── mali_memory_os_alloc.c │ │ │ ├── mali_memory_os_alloc.h │ │ │ ├── mali_memory_secure.c │ │ │ ├── mali_memory_secure.h │ │ │ ├── mali_memory_swap_alloc.c │ │ │ ├── mali_memory_swap_alloc.h │ │ │ ├── mali_memory_types.h │ │ │ ├── mali_memory_ump.c │ │ │ ├── mali_memory_ump.h │ │ │ ├── mali_memory_util.c │ │ │ ├── mali_memory_util.h │ │ │ ├── mali_memory_virtual.c │ │ │ ├── mali_memory_virtual.h │ │ │ ├── mali_osk_atomics.c │ │ │ ├── mali_osk_bitmap.c │ │ │ ├── mali_osk_irq.c │ │ │ ├── mali_osk_locks.c │ │ │ ├── mali_osk_locks.h │ │ │ ├── mali_osk_low_level_mem.c │ │ │ ├── mali_osk_mali.c │ │ │ ├── mali_osk_math.c │ │ │ ├── mali_osk_memory.c │ │ │ ├── mali_osk_misc.c │ │ │ ├── mali_osk_notification.c │ │ │ ├── mali_osk_pm.c │ │ │ ├── mali_osk_profiling.c │ │ │ ├── mali_osk_specific.h │ │ │ ├── mali_osk_time.c │ │ │ ├── mali_osk_timers.c │ │ │ ├── mali_osk_wait_queue.c │ │ │ ├── mali_osk_wq.c │ │ │ ├── mali_pmu_power_up_down.c │ │ │ ├── mali_profiling_events.h │ │ │ ├── mali_profiling_gator_api.h │ │ │ ├── mali_profiling_internal.c │ │ │ ├── mali_profiling_internal.h │ │ │ ├── mali_sync.c │ │ │ ├── mali_sync.h │ │ │ ├── mali_uk_types.h │ │ │ ├── mali_ukk_core.c │ │ │ ├── mali_ukk_gp.c │ │ │ ├── mali_ukk_mem.c │ │ │ ├── mali_ukk_pp.c │ │ │ ├── mali_ukk_profiling.c │ │ │ ├── mali_ukk_soft_job.c │ │ │ ├── mali_ukk_timeline.c │ │ │ ├── mali_ukk_vsync.c │ │ │ └── mali_ukk_wrappers.h │ │ ├── platform │ │ │ ├── arm │ │ │ │ ├── arm.c │ │ │ │ ├── arm_core_scaling.c │ │ │ │ ├── arm_core_scaling.h │ │ │ │ └── juno_opp.c │ │ │ └── meson │ │ │ │ └── meson.c │ │ ├── readme.txt │ │ ├── regs │ │ │ ├── mali_200_regs.h │ │ │ └── mali_gp_regs.h │ │ ├── timestamp-arm11-cc │ │ │ ├── mali_timestamp.c │ │ │ └── mali_timestamp.h │ │ └── timestamp-default │ │ │ ├── mali_timestamp.c │ │ │ └── mali_timestamp.h │ ├── ump │ │ ├── .version │ │ ├── Kbuild │ │ ├── Kconfig │ │ ├── Makefile │ │ ├── Makefile.common │ │ ├── arch-default │ │ │ └── config.h │ │ ├── arch-pb-virtex5 │ │ │ └── config.h │ │ ├── common │ │ │ ├── ump_kernel_api.c │ │ │ ├── ump_kernel_common.c │ │ │ ├── ump_kernel_common.h │ │ │ ├── ump_kernel_descriptor_mapping.c │ │ │ ├── ump_kernel_descriptor_mapping.h │ │ │ ├── ump_kernel_memory_backend.h │ │ │ ├── ump_kernel_ref_drv.c │ │ │ ├── ump_kernel_types.h │ │ │ ├── ump_osk.h │ │ │ ├── ump_uk_types.h │ │ │ └── ump_ukk.h │ │ ├── linux │ │ │ ├── license │ │ │ │ └── gpl │ │ │ │ │ └── ump_kernel_license.h │ │ │ ├── ump_ioctl.h │ │ │ ├── ump_kernel_linux.c │ │ │ ├── ump_kernel_linux.h │ │ │ ├── ump_kernel_memory_backend_dedicated.c │ │ │ ├── ump_kernel_memory_backend_dedicated.h │ │ │ ├── ump_kernel_memory_backend_os.c │ │ │ ├── ump_kernel_memory_backend_os.h │ │ │ ├── ump_kernel_random_mapping.c │ │ │ ├── ump_kernel_random_mapping.h │ │ │ ├── ump_memory_backend.c │ │ │ ├── ump_osk_atomics.c │ │ │ ├── ump_osk_low_level_mem.c │ │ │ ├── ump_osk_misc.c │ │ │ ├── ump_ukk_ref_wrappers.c │ │ │ ├── ump_ukk_ref_wrappers.h │ │ │ ├── ump_ukk_wrappers.c │ │ │ └── ump_ukk_wrappers.h │ │ └── readme.txt │ └── umplock │ │ ├── Makefile │ │ ├── umplock_driver.c │ │ └── umplock_ioctl.h │ ├── egl │ └── x11 │ │ └── drm_module │ │ ├── mali_drm │ │ ├── Makefile │ │ ├── include │ │ │ ├── Kbuild │ │ │ └── mali_drm.h │ │ └── mali │ │ │ ├── Makefile │ │ │ ├── mali_drv.c │ │ │ ├── mali_drv.h │ │ │ └── mali_mm.c │ │ └── readme │ └── ump │ └── include │ └── ump │ ├── ump_kernel_interface.h │ ├── ump_kernel_interface_ref_drv.h │ └── ump_kernel_platform.h └── patches_linux-4.10 ├── 0001-clk-meson-gxbb-Add-MALI-clocks.patch └── 0002-ARM64-dts-meson-gxbb-Add-Mali-node.patch /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/README.md -------------------------------------------------------------------------------- /driver/documentation/devicetree/bindings/arm/mali-utgard.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/documentation/devicetree/bindings/arm/mali-utgard.txt -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/.version: -------------------------------------------------------------------------------- 1 | r6p1-01rel0 2 | -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/Kbuild -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/Kconfig -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/Makefile -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_broadcast.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_broadcast.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_broadcast.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_broadcast.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_control_timer.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_control_timer.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_control_timer.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_control_timer.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_dlbu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_dlbu.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_dlbu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_dlbu.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_dvfs_policy.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_dvfs_policy.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_dvfs_policy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_dvfs_policy.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_executor.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_executor.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_executor.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_executor.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_gp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_gp.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_gp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_gp.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_gp_job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_gp_job.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_gp_job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_gp_job.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_group.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_group.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_group.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_group.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_hw_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_hw_core.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_hw_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_hw_core.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_kernel_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_kernel_common.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_kernel_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_kernel_core.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_kernel_core.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_kernel_core.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_kernel_utilization.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_kernel_utilization.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_kernel_utilization.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_kernel_utilization.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_kernel_vsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_kernel_vsync.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_l2_cache.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_l2_cache.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_l2_cache.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_l2_cache.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_mem_validation.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_mem_validation.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_mem_validation.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_mem_validation.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_mmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_mmu.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_mmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_mmu.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_mmu_page_directory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_mmu_page_directory.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_mmu_page_directory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_mmu_page_directory.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_osk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_osk.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_osk_bitops.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_osk_bitops.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_osk_list.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_osk_list.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_osk_mali.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_osk_mali.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_osk_profiling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_osk_profiling.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_osk_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_osk_types.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_pm.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_pm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_pm.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_pm_domain.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_pm_domain.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_pm_domain.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_pm_domain.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_pm_metrics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_pm_metrics.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_pm_metrics.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_pm_metrics.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_pmu.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_pmu.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_pmu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_pmu.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_pp.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_pp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_pp.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_pp_job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_pp_job.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_pp_job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_pp_job.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_scheduler.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_scheduler.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_scheduler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_scheduler.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_scheduler_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_scheduler_types.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_session.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_session.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_session.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_session.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_soft_job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_soft_job.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_soft_job.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_soft_job.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_spinlock_reentrant.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_spinlock_reentrant.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_spinlock_reentrant.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_spinlock_reentrant.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_timeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_timeline.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_timeline.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_timeline.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_timeline_fence_wait.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_timeline_fence_wait.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_timeline_fence_wait.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_timeline_fence_wait.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_timeline_sync_fence.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_timeline_sync_fence.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_timeline_sync_fence.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_timeline_sync_fence.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_ukk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_ukk.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_user_settings_db.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_user_settings_db.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/common/mali_user_settings_db.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/common/mali_user_settings_db.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/include/linux/mali/mali_utgard.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/include/linux/mali/mali_utgard.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/include/linux/mali/mali_utgard_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/include/linux/mali/mali_utgard_ioctl.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/include/linux/mali/mali_utgard_profiling_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/include/linux/mali/mali_utgard_profiling_events.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/include/linux/mali/mali_utgard_profiling_gator_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/include/linux/mali/mali_utgard_profiling_gator_api.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/include/linux/mali/mali_utgard_uk_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/include/linux/mali/mali_utgard_uk_types.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/license/gpl/mali_kernel_license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/license/gpl/mali_kernel_license.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_devfreq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_devfreq.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_devfreq.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_devfreq.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_device_pause_resume.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_device_pause_resume.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_kernel_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_kernel_linux.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_kernel_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_kernel_linux.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_kernel_sysfs.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_kernel_sysfs.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_kernel_sysfs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_kernel_sysfs.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_linux_trace.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_linux_trace.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_block_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_block_alloc.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_block_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_block_alloc.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_cow.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_cow.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_cow.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_cow.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_defer_bind.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_defer_bind.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_defer_bind.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_defer_bind.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_dma_buf.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_dma_buf.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_dma_buf.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_dma_buf.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_external.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_external.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_external.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_external.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_manager.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_manager.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_manager.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_manager.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_os_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_os_alloc.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_os_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_os_alloc.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_secure.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_secure.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_secure.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_secure.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_swap_alloc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_swap_alloc.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_swap_alloc.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_swap_alloc.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_types.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_ump.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_ump.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_ump.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_ump.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_util.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_util.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_util.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_util.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_virtual.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_virtual.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_memory_virtual.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_memory_virtual.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_atomics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_atomics.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_bitmap.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_bitmap.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_irq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_irq.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_locks.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_locks.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_locks.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_locks.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_low_level_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_low_level_mem.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_mali.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_mali.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_math.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_math.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_memory.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_memory.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_misc.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_notification.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_notification.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_pm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_pm.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_profiling.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_specific.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_specific.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_time.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_time.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_timers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_timers.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_wait_queue.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_wait_queue.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_osk_wq.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_osk_wq.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_pmu_power_up_down.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_pmu_power_up_down.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_profiling_events.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_profiling_events.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_profiling_gator_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_profiling_gator_api.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_profiling_internal.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_profiling_internal.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_profiling_internal.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_profiling_internal.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_sync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_sync.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_sync.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_sync.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_uk_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_uk_types.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_ukk_core.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_ukk_core.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_ukk_gp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_ukk_gp.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_ukk_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_ukk_mem.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_ukk_pp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_ukk_pp.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_ukk_profiling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_ukk_profiling.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_ukk_soft_job.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_ukk_soft_job.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_ukk_timeline.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_ukk_timeline.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_ukk_vsync.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_ukk_vsync.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/linux/mali_ukk_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/linux/mali_ukk_wrappers.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/platform/arm/arm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/platform/arm/arm.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/platform/arm/arm_core_scaling.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/platform/arm/arm_core_scaling.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/platform/arm/arm_core_scaling.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/platform/arm/arm_core_scaling.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/platform/arm/juno_opp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/platform/arm/juno_opp.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/platform/meson/meson.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/platform/meson/meson.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/readme.txt -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/regs/mali_200_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/regs/mali_200_regs.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/regs/mali_gp_regs.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/regs/mali_gp_regs.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/timestamp-arm11-cc/mali_timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/timestamp-arm11-cc/mali_timestamp.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/timestamp-arm11-cc/mali_timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/timestamp-arm11-cc/mali_timestamp.h -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/timestamp-default/mali_timestamp.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/timestamp-default/mali_timestamp.c -------------------------------------------------------------------------------- /driver/src/devicedrv/mali/timestamp-default/mali_timestamp.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/mali/timestamp-default/mali_timestamp.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/.version: -------------------------------------------------------------------------------- 1 | r6p1-01rel0 2 | -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/Kbuild -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/Kconfig: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/Kconfig -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/Makefile -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/Makefile.common: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/Makefile.common -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/arch-default/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/arch-default/config.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/arch-pb-virtex5/config.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/arch-pb-virtex5/config.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/common/ump_kernel_api.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/common/ump_kernel_api.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/common/ump_kernel_common.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/common/ump_kernel_common.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/common/ump_kernel_common.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/common/ump_kernel_common.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/common/ump_kernel_descriptor_mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/common/ump_kernel_descriptor_mapping.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/common/ump_kernel_descriptor_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/common/ump_kernel_descriptor_mapping.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/common/ump_kernel_memory_backend.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/common/ump_kernel_memory_backend.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/common/ump_kernel_ref_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/common/ump_kernel_ref_drv.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/common/ump_kernel_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/common/ump_kernel_types.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/common/ump_osk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/common/ump_osk.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/common/ump_uk_types.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/common/ump_uk_types.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/common/ump_ukk.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/common/ump_ukk.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/license/gpl/ump_kernel_license.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/license/gpl/ump_kernel_license.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_ioctl.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_kernel_linux.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_kernel_linux.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_kernel_linux.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_kernel_linux.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_kernel_memory_backend_dedicated.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_kernel_memory_backend_dedicated.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_kernel_memory_backend_dedicated.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_kernel_memory_backend_dedicated.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_kernel_memory_backend_os.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_kernel_memory_backend_os.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_kernel_memory_backend_os.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_kernel_memory_backend_os.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_kernel_random_mapping.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_kernel_random_mapping.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_kernel_random_mapping.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_kernel_random_mapping.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_memory_backend.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_memory_backend.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_osk_atomics.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_osk_atomics.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_osk_low_level_mem.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_osk_low_level_mem.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_osk_misc.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_osk_misc.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_ukk_ref_wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_ukk_ref_wrappers.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_ukk_ref_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_ukk_ref_wrappers.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_ukk_wrappers.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_ukk_wrappers.c -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/linux/ump_ukk_wrappers.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/linux/ump_ukk_wrappers.h -------------------------------------------------------------------------------- /driver/src/devicedrv/ump/readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/ump/readme.txt -------------------------------------------------------------------------------- /driver/src/devicedrv/umplock/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/umplock/Makefile -------------------------------------------------------------------------------- /driver/src/devicedrv/umplock/umplock_driver.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/umplock/umplock_driver.c -------------------------------------------------------------------------------- /driver/src/devicedrv/umplock/umplock_ioctl.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/devicedrv/umplock/umplock_ioctl.h -------------------------------------------------------------------------------- /driver/src/egl/x11/drm_module/mali_drm/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/egl/x11/drm_module/mali_drm/Makefile -------------------------------------------------------------------------------- /driver/src/egl/x11/drm_module/mali_drm/include/Kbuild: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/egl/x11/drm_module/mali_drm/include/Kbuild -------------------------------------------------------------------------------- /driver/src/egl/x11/drm_module/mali_drm/include/mali_drm.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/egl/x11/drm_module/mali_drm/include/mali_drm.h -------------------------------------------------------------------------------- /driver/src/egl/x11/drm_module/mali_drm/mali/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/egl/x11/drm_module/mali_drm/mali/Makefile -------------------------------------------------------------------------------- /driver/src/egl/x11/drm_module/mali_drm/mali/mali_drv.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/egl/x11/drm_module/mali_drm/mali/mali_drv.c -------------------------------------------------------------------------------- /driver/src/egl/x11/drm_module/mali_drm/mali/mali_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/egl/x11/drm_module/mali_drm/mali/mali_drv.h -------------------------------------------------------------------------------- /driver/src/egl/x11/drm_module/mali_drm/mali/mali_mm.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/egl/x11/drm_module/mali_drm/mali/mali_mm.c -------------------------------------------------------------------------------- /driver/src/egl/x11/drm_module/readme: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/egl/x11/drm_module/readme -------------------------------------------------------------------------------- /driver/src/ump/include/ump/ump_kernel_interface.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/ump/include/ump/ump_kernel_interface.h -------------------------------------------------------------------------------- /driver/src/ump/include/ump/ump_kernel_interface_ref_drv.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/ump/include/ump/ump_kernel_interface_ref_drv.h -------------------------------------------------------------------------------- /driver/src/ump/include/ump/ump_kernel_platform.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/driver/src/ump/include/ump/ump_kernel_platform.h -------------------------------------------------------------------------------- /patches_linux-4.10/0001-clk-meson-gxbb-Add-MALI-clocks.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/patches_linux-4.10/0001-clk-meson-gxbb-Add-MALI-clocks.patch -------------------------------------------------------------------------------- /patches_linux-4.10/0002-ARM64-dts-meson-gxbb-Add-Mali-node.patch: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/superna9999/meson_gx_mali_450/HEAD/patches_linux-4.10/0002-ARM64-dts-meson-gxbb-Add-Mali-node.patch --------------------------------------------------------------------------------