mirror of
https://github.com/Telecominfraproject/OpenCellular.git
synced 2025-12-30 10:31:02 +00:00
Currently if an interrupt is pending before it is enabled the interrupt will fire immediately. In most cases this is fine, but if we want to use the interrupt to trigger something like waking the AP it should be sure that it won't immediately fire once enabled. For example: on the Eve board we have the trackpad interrupt run to the AP and the EC in order to support wake from Deep S3 (magic AP state that only the EC can wake it from). This interrupt is used in S0 by the AP while ignored by the EC, and then enabled on the transition to S3 in order to be able to wake. Since it has been active the interrupt may be pending in the EC (depending on the chip), which can result in the interrupt firing immediately and waking the AP. BUG=chrome-os-partner:62224 BRANCH=none TEST=This has been functionally tested on npcx only as that is what I have a use case and system for, the others compile and look right but have not been directly tested. Change-Id: I9e0877d99e7f09f4c30bf9861fbad81c12c059ad Signed-off-by: Duncan Laurie <dlaurie@google.com> Reviewed-on: https://chromium-review.googlesource.com/446962 Reviewed-by: Randall Spangler <rspangler@chromium.org>
79 lines
1.7 KiB
C
79 lines
1.7 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) && old == 0 && new == 1)
|
|
return 1;
|
|
if ((flags & GPIO_INT_F_FALLING) && 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];
|
|
void (*ih)(enum gpio_signal signal) = gpio_irq_handlers[signal];
|
|
|
|
gpio_values[signal] = value;
|
|
|
|
if (signal >= GPIO_IH_COUNT || !gpio_interrupt_enabled[signal])
|
|
return;
|
|
|
|
if (gpio_interrupt_check(flags, old_value, value))
|
|
ih(signal);
|
|
}
|
|
|
|
test_mockable int gpio_enable_interrupt(enum gpio_signal signal)
|
|
{
|
|
gpio_interrupt_enabled[signal] = 1;
|
|
return EC_SUCCESS;
|
|
}
|
|
|
|
test_mockable int gpio_clear_pending_interrupt(enum gpio_signal signal)
|
|
{
|
|
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 */
|
|
}
|