1 /*
2  * Renesas SCP/MCP Software
3  * Copyright (c) 2021, Renesas Electronics Corporation. All rights reserved.
4  *
5  * SPDX-License-Identifier: BSD-3-Clause
6  */
7 
8 #ifndef CONFIG_SENSOR_H
9 #define CONFIG_SENSOR_H
10 
11 enum REG_SENSOR_DEVICES {
12     REG_SENSOR_DEV_SOC_TEMP1,
13     REG_SENSOR_DEV_SOC_TEMP2,
14     REG_SENSOR_DEV_SOC_TEMP3,
15     REG_SENSOR_DEV_COUNT,
16 };
17 
18 enum SENSOR_DEVICES {
19     R8A7795_SNSR_THERMAL1,
20     R8A7795_SNSR_THERMAL2,
21     R8A7795_SNSR_THERMAL3,
22     R8A7795_SNSR_COUNT,
23 };
24 #endif /* CONFIG_SENSOR_H */
25