summaryrefslogtreecommitdiff
path: root/chip/ish/gpio.c
blob: 145824011503df96caf2bba54644536d5b788342 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
/* Copyright (c) 2016 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 ISH */

#include "common.h"
#include "gpio.h"
#include "hooks.h"
#include "registers.h"
#include "system.h"
#include "task.h"
#include "timer.h"
#include "util.h"

test_mockable int gpio_get_level(enum gpio_signal signal)
{
	return 0;
}

void gpio_set_level(enum gpio_signal signal, int value)
{
}

void gpio_pre_init(void)
{
}

static void gpio_init(void)
{
	/* TBD */
}

static void gpio_interrupt(void)
{
	/*TODO*/
}

DECLARE_IRQ(ISH_GPIO_IRQ, gpio_interrupt);

DECLARE_HOOK(HOOK_INIT, gpio_init, HOOK_PRIO_DEFAULT);