mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-07 16:11:43 +00:00
Temperature sensor read is delegated to functions defined in board.c. Let's mock that function instead of the one in temp_sensor module. BUG=chrome-os-partner:19236 TEST=Pass thermal test. BRANCH=None Change-Id: Ic0387bd6a49e3f032e593c11c6f80bd36f8474e7 Signed-off-by: Vic Yang <victoryang@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/167761 Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
41 lines
1.2 KiB
C
41 lines
1.2 KiB
C
/* Copyright (c) 2013 The Chromium OS Authors. All rights reserved.
|
|
* Use of this source code is governed by a BSD-style license that can be
|
|
* found in the LICENSE file.
|
|
*/
|
|
/* Emulator board-specific configuration */
|
|
|
|
#include "gpio.h"
|
|
#include "temp_sensor.h"
|
|
#include "util.h"
|
|
|
|
#define MOCK_GPIO(x) {#x, 0, 0, 0, 0}
|
|
|
|
const struct gpio_info gpio_list[] = {
|
|
MOCK_GPIO(EC_INT),
|
|
MOCK_GPIO(LID_OPEN),
|
|
MOCK_GPIO(POWER_BUTTON_L),
|
|
MOCK_GPIO(WP),
|
|
MOCK_GPIO(ENTERING_RW),
|
|
MOCK_GPIO(AC_PRESENT),
|
|
};
|
|
BUILD_ASSERT(ARRAY_SIZE(gpio_list) == GPIO_COUNT);
|
|
|
|
/* Pins with alternate functions; not on simulated host platform */
|
|
const struct gpio_alt_func gpio_alt_funcs[] = {
|
|
};
|
|
const int gpio_alt_funcs_count = ARRAY_SIZE(gpio_alt_funcs);
|
|
|
|
test_mockable_static int dummy_temp_get_val(int idx, int *temp_ptr)
|
|
{
|
|
*temp_ptr = 0;
|
|
return EC_SUCCESS;
|
|
}
|
|
|
|
const struct temp_sensor_t temp_sensors[] = {
|
|
{"CPU", TEMP_SENSOR_TYPE_CPU, dummy_temp_get_val, 0, 3},
|
|
{"Board", TEMP_SENSOR_TYPE_BOARD, dummy_temp_get_val, 1, 3},
|
|
{"Case", TEMP_SENSOR_TYPE_CASE, dummy_temp_get_val, 2, 0},
|
|
{"Battery", TEMP_SENSOR_TYPE_BOARD, dummy_temp_get_val, 3, 0},
|
|
};
|
|
BUILD_ASSERT(ARRAY_SIZE(temp_sensors) == TEMP_SENSOR_COUNT);
|