mirror of
https://github.com/hardkernel/kernel_common_drivers.git
synced 2026-06-25 12:03:48 +09:00
562c6fc1b6
PD#SWPL-166661 Problem: DDR kernel refresh control patch list Solution: add indmc sensor driver to do ddr thermal cooling Verify: S7D Change-Id: I5ba8d167f9ce83785f51af6d2809030147aaacde Signed-off-by: Xingxing Wang <xingxing.wang@amlogic.com>
23 lines
366 B
C
23 lines
366 B
C
/* SPDX-License-Identifier: (GPL-2.0+ OR MIT) */
|
|
/*
|
|
* Copyright (c) 2019 Amlogic, Inc. All rights reserved.
|
|
*/
|
|
|
|
#ifndef __AML_INDMC_SENSOR_H__
|
|
#define __AML_INDMC_SENSOR_H__
|
|
|
|
enum dmc_type {
|
|
TYPE_DDR3,
|
|
TYPE_DDR4,
|
|
TYPE_LPDDR4,
|
|
TYPE_LPDDR3,
|
|
TYPE_LPDDR2,
|
|
TYPE_LPDDR4X,
|
|
TYPE_LPDDR5,
|
|
TYPE_MAX
|
|
};
|
|
|
|
extern struct platform_driver aml_indmc_sensor_platdrv;
|
|
|
|
#endif
|