17 lines
372 B
C
17 lines
372 B
C
/* SPDX-License-Identifier: GPL-2.0 */
|
|
/*
|
|
* techpoint tp9930 regs
|
|
*
|
|
* Copyright (C) 2023 Rockchip Electronics Co., Ltd.
|
|
*/
|
|
|
|
#ifndef _TECHPOINT_TP2815_H
|
|
#define _TECHPOINT_TP2815_H
|
|
|
|
#define TP2815_CHIP_ID_H_REG 0xFE
|
|
#define TP2815_CHIP_ID_H_VALUE 0x28
|
|
#define TP2815_CHIP_ID_L_REG 0xFF
|
|
#define TP2815_CHIP_ID_L_VALUE 0x15
|
|
|
|
#endif // _TECHPOINT_TP9930_H
|