summaryrefslogtreecommitdiff
path: root/baseboard/zork
diff options
context:
space:
mode:
Diffstat (limited to 'baseboard/zork')
-rw-r--r--baseboard/zork/baseboard.c31
-rw-r--r--baseboard/zork/baseboard.h1
-rw-r--r--baseboard/zork/variant_dalboz.c33
3 files changed, 33 insertions, 32 deletions
diff --git a/baseboard/zork/baseboard.c b/baseboard/zork/baseboard.c
index 03a6a4107d..039450faa4 100644
--- a/baseboard/zork/baseboard.c
+++ b/baseboard/zork/baseboard.c
@@ -146,37 +146,6 @@ const struct thermistor_info thermistor_info = {
.data = thermistor_data,
};
-__overridable int board_get_temp(int idx, int *temp_k)
-{
- int mv;
- int temp_c;
- enum adc_channel channel;
-
- /* idx is the sensor index set in board temp_sensors[] */
- switch (idx) {
- case TEMP_SENSOR_CHARGER:
- channel = ADC_TEMP_SENSOR_CHARGER;
- break;
- case TEMP_SENSOR_SOC:
- /* thermistor is not powered in G3 */
- if (chipset_in_state(CHIPSET_STATE_HARD_OFF))
- return EC_ERROR_NOT_POWERED;
-
- channel = ADC_TEMP_SENSOR_SOC;
- break;
- default:
- return EC_ERROR_INVAL;
- }
-
- mv = adc_read_channel(channel);
- if (mv < 0)
- return EC_ERROR_INVAL;
-
- temp_c = thermistor_linear_interpolate(mv, &thermistor_info);
- *temp_k = C_TO_K(temp_c);
- return EC_SUCCESS;
-}
-
#ifndef TEST_BUILD
void lid_angle_peripheral_enable(int enable)
{
diff --git a/baseboard/zork/baseboard.h b/baseboard/zork/baseboard.h
index 1f91a8dada..2e05d4b80d 100644
--- a/baseboard/zork/baseboard.h
+++ b/baseboard/zork/baseboard.h
@@ -334,7 +334,6 @@ void ppc_interrupt(enum gpio_signal signal);
void pi3hdx1204_retimer_power(void);
__override_proto int check_hdmi_hpd_status(void);
-int board_get_temp(int idx, int *temp_k);
#endif /* !__ASSEMBLER__ */
diff --git a/baseboard/zork/variant_dalboz.c b/baseboard/zork/variant_dalboz.c
index a9ce52daf1..6e76034ced 100644
--- a/baseboard/zork/variant_dalboz.c
+++ b/baseboard/zork/variant_dalboz.c
@@ -6,6 +6,7 @@
#include "adc.h"
#include "adc_chip.h"
#include "charger.h"
+#include "chipset.h"
#include "common.h"
#include "driver/charger/isl9241.h"
#include "driver/temp_sensor/sb_tsi.h"
@@ -14,6 +15,7 @@
#include "i2c.h"
#include "power.h"
#include "temp_sensor.h"
+#include "thermistor.h"
const struct power_signal_info power_signal_list[] = {
[X86_SLP_S3_N] = {
@@ -39,6 +41,37 @@ const struct power_signal_info power_signal_list[] = {
};
BUILD_ASSERT(ARRAY_SIZE(power_signal_list) == POWER_SIGNAL_COUNT);
+int board_get_temp(int idx, int *temp_k)
+{
+ int mv;
+ int temp_c;
+ enum adc_channel channel;
+
+ /* idx is the sensor index set in board temp_sensors[] */
+ switch (idx) {
+ case TEMP_SENSOR_CHARGER:
+ channel = ADC_TEMP_SENSOR_CHARGER;
+ break;
+ case TEMP_SENSOR_SOC:
+ /* thermistor is not powered in G3 */
+ if (chipset_in_state(CHIPSET_STATE_HARD_OFF))
+ return EC_ERROR_NOT_POWERED;
+
+ channel = ADC_TEMP_SENSOR_SOC;
+ break;
+ default:
+ return EC_ERROR_INVAL;
+ }
+
+ mv = adc_read_channel(channel);
+ if (mv < 0)
+ return EC_ERROR_INVAL;
+
+ temp_c = thermistor_linear_interpolate(mv, &thermistor_info);
+ *temp_k = C_TO_K(temp_c);
+ return EC_SUCCESS;
+}
+
const struct adc_t adc_channels[] = {
[ADC_TEMP_SENSOR_CHARGER] = {
.name = "CHARGER",