1
0
mirror of https://github.com/physwizz/a155-U-u1.git synced 2025-09-26 19:04:54 +00:00
Files
physwizz 99537be4e2 first
2024-03-11 06:53:12 +11:00

29 lines
692 B
C

// SPDX-License-Identifier: GPL-2.0
/*
* Copyright (C) 2020 MediaTek Inc.
*/
#include <linux/vmalloc.h> /* needed by vmalloc */
#include <linux/sysfs.h>
#include <linux/device.h> /* needed by device_* */
#include <linux/workqueue.h>
#include <linux/io.h>
#include <linux/mutex.h>
#include <linux/sched_clock.h>
#include <linux/ratelimit.h>
#include "vcp_helper.h"
#include "vcp_excep.h"
#include "vcp_feature_define.h"
#include "vcp_l1c.h"
#include <mt-plat/aee.h>
enum vcp_l1c_status_t vcp_l1c_flua(uint32_t L1C_type)
{
L1C_SEL(L1C_type)->L1C_OP &= ~L1C_OP_OP_MASK;
L1C_SEL(L1C_type)->L1C_OP |=
((L1C_FLUA << L1C_OP_OP_OFFSET) |
L1C_OP_EN_MASK);
return VCP_L1C_STATUS_OK;
}