summaryrefslogtreecommitdiff
path: root/include/switch.h
blob: 2cd732774e17cf8d32e9d8f26ac896c6122f6523 (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
/* 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.
 */

/* Switch module for Chrome EC */

#ifndef __CROS_EC_SWITCH_H
#define __CROS_EC_SWITCH_H

#include "common.h"
#include "gpio.h"

#ifdef HAS_TASK_SWITCH
/**
 * Interrupt handler for switch inputs.
 *
 * @param signal	Signal which triggered the interrupt.
 */
void switch_interrupt(enum gpio_signal signal);
#else
#define switch_interrupt NULL
#endif  /* HAS_TASK_SWITCH */

/**
 * Return non-zero if write protect signal is asserted.
 */
int switch_get_write_protect(void);

#endif  /* __CROS_EC_SWITCH_H */