mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-08 16:41:55 +00:00
Nearly every board had a buttons array defined in which its contents had the standard volume buttons. This commit creates a single common buttons array that can contain the standard volume buttons and recovery buttons. If a board has volume up and down buttons, they can simply define CONFIG_VOLUME_BUTTONS and it will populate the buttons array with the standard definition. The buttons are active low and have a 30 ms debounce period. Similiarly, if a board has a dedicated recovery button, defining CONFIG_DEDICATED_RECOVERY_BUTTON will also populate the buttons array with a recovery button. BUG=chromium:783371 BRANCH=None TEST=make -j buildall. TEST=Flash a device with CONFIG_VOLUME_BUTTONS, verify pressing volume buttons still work. Change-Id: Ie5d63670ca4c6b146ec8ffb64d40ea9ce437b913 Signed-off-by: Aseda Aboagye <aaboagye@google.com> Reviewed-on: https://chromium-review.googlesource.com/773794 Commit-Ready: Aseda Aboagye <aaboagye@chromium.org> Tested-by: Aseda Aboagye <aaboagye@chromium.org> Reviewed-by: Daisuke Nojiri <dnojiri@chromium.org> Reviewed-by: Shawn N <shawnn@chromium.org>
77 lines
1.8 KiB
C
77 lines
1.8 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 "button.h"
|
|
#include "extpower.h"
|
|
#include "gpio.h"
|
|
#include "host_command.h"
|
|
#include "i2c.h"
|
|
#include "inductive_charging.h"
|
|
#include "lid_switch.h"
|
|
#include "motion_sense.h"
|
|
#include "motion_lid.h"
|
|
#include "power_button.h"
|
|
#include "temp_sensor.h"
|
|
#include "timer.h"
|
|
#include "util.h"
|
|
|
|
/*
|
|
* GPIO_0 is the name generated by the gpio.inc GPIO macros for all of the host
|
|
* GPIO ports. This maps back to 0, which is then ignored by the host GPIO mock
|
|
* code.
|
|
*/
|
|
#define GPIO_0 0
|
|
|
|
#include "gpio_list.h"
|
|
|
|
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);
|
|
|
|
test_mockable void button_interrupt(enum gpio_signal signal)
|
|
{
|
|
};
|
|
|
|
#ifdef CONFIG_I2C
|
|
/* I2C ports */
|
|
const struct i2c_port_t i2c_ports[] = {
|
|
#ifdef I2C_PORT_BATTERY
|
|
{"battery", I2C_PORT_BATTERY, 100, 0, 0},
|
|
#elif defined I2C_PORT_LIGHTBAR
|
|
{"lightbar", I2C_PORT_LIGHTBAR, 100, 0, 0},
|
|
#endif
|
|
};
|
|
|
|
const unsigned int i2c_ports_used = ARRAY_SIZE(i2c_ports);
|
|
#endif
|
|
|
|
#ifdef TEST_BUILD
|
|
/* Poor source of entropy for testing purpose. */
|
|
int board_get_entropy(void *buffer, int len)
|
|
{
|
|
static uint32_t seed = 0xcafecafe;
|
|
int i = 0;
|
|
uint8_t *data = buffer;
|
|
|
|
for (i = 0; i < len; i++) {
|
|
seed *= 7;
|
|
data[i] = seed + (seed >> 24);
|
|
}
|
|
|
|
return 1;
|
|
}
|
|
#endif
|