mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2026-01-06 23:51:28 +00:00
For all GPIOs, the current values are recorded. A test can then change the value of a GPIO input by gpio_set_level(). The changed value is recorded and also interrupt is fired if the change fits the interrupt flags defined in board/host/board.c. BUG=chrome-os-partner:19235 TEST=Pass all tests BRANCH=None Change-Id: If8e547e5adf4a20dcb118f5fe2187293005d4ca3 Signed-off-by: Vic Yang <victoryang@chromium.org> Reviewed-on: https://chromium-review.googlesource.com/170907 Reviewed-by: Bill Richardson <wfrichar@chromium.org> Reviewed-by: Randall Spangler <rspangler@chromium.org> Reviewed-by: Vincent Palatin <vpalatin@chromium.org>
75 lines
1.6 KiB
C
75 lines
1.6 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.
|
|
*/
|
|
|
|
/* GPIO module for emulator */
|
|
|
|
#include "console.h"
|
|
|
|
#include "common.h"
|
|
#include "gpio.h"
|
|
#include "timer.h"
|
|
#include "util.h"
|
|
|
|
static int gpio_values[GPIO_COUNT];
|
|
static int gpio_interrupt_enabled[GPIO_COUNT];
|
|
|
|
test_mockable void gpio_pre_init(void)
|
|
{
|
|
/* Nothing */
|
|
}
|
|
|
|
test_mockable int gpio_get_level(enum gpio_signal signal)
|
|
{
|
|
return gpio_values[signal];
|
|
}
|
|
|
|
static int gpio_interrupt_check(uint32_t flags, int old, int new)
|
|
{
|
|
if ((flags & (GPIO_INT_F_RISING|GPIO_INT_F_BOTH)) &&
|
|
old == 0 && new == 1)
|
|
return 1;
|
|
if ((flags & (GPIO_INT_F_FALLING|GPIO_INT_F_BOTH)) &&
|
|
old == 1 && new == 0)
|
|
return 1;
|
|
if ((flags & GPIO_INT_F_LOW) && new == 0)
|
|
return 1;
|
|
if ((flags & GPIO_INT_F_HIGH) && new == 1)
|
|
return 1;
|
|
return 0;
|
|
}
|
|
|
|
test_mockable void gpio_set_level(enum gpio_signal signal, int value)
|
|
{
|
|
const struct gpio_info *g = gpio_list + signal;
|
|
const uint32_t flags = g->flags;
|
|
const int old_value = gpio_values[signal];
|
|
|
|
gpio_values[signal] = value;
|
|
|
|
if (g->irq_handler == NULL || !gpio_interrupt_enabled[signal])
|
|
return;
|
|
|
|
if (gpio_interrupt_check(flags, old_value, value))
|
|
g->irq_handler(signal);
|
|
}
|
|
|
|
test_mockable int gpio_enable_interrupt(enum gpio_signal signal)
|
|
{
|
|
gpio_interrupt_enabled[signal] = 1;
|
|
return EC_SUCCESS;
|
|
}
|
|
|
|
test_mockable void gpio_set_flags_by_mask(uint32_t port, uint32_t mask,
|
|
uint32_t flags)
|
|
{
|
|
/* Nothing */
|
|
}
|
|
|
|
test_mockable void gpio_set_alternate_function(uint32_t port, uint32_t mask,
|
|
int func)
|
|
{
|
|
/* Nothing */
|
|
}
|