summaryrefslogtreecommitdiff
path: root/common/case_closed_debug.c
blob: 31477b7554ecb5ecc6f6fdddab448e509f7927b8 (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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
/* Copyright (c) 2014 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.
 *
 * Case Closed Debug common implementation
 */

#include "case_closed_debug.h"

#include "common.h"
#include "usb_api.h"
#include "usb_console.h"
#include "usb_spi.h"

#if !defined(CONFIG_USB)
#error "CONFIG_USB must be defined to use Case Closed Debugging"
#endif

#if !defined(CONFIG_USB_CONSOLE)
#error "CONFIG_USB_CONSOLE must be defined to use Case Closed Debugging"
#endif

#if !defined(CONFIG_USB_INHIBIT_INIT)
#error "CONFIG_USB_INHIBIT_INIT must be defined to use Case Closed Debugging"
#endif

#if defined(CONFIG_USB_SPI)
USB_SPI_CONFIG(ccd_usb_spi, USB_IFACE_SPI, USB_EP_SPI);
#endif

static enum ccd_mode current_mode = CCD_MODE_DISABLED;

void ccd_set_mode(enum ccd_mode new_mode)
{
	if (new_mode == current_mode)
		return;

	if (current_mode != CCD_MODE_DISABLED)
		usb_release();

	current_mode = new_mode;

	/*
	 * The forwarding of the local console over USB is read-only
	*  if we are not in the fully enabled mode.
	 */
	usb_console_enable(new_mode != CCD_MODE_DISABLED,
			   new_mode != CCD_MODE_ENABLED);

#if defined(CONFIG_USB_SPI)
	usb_spi_enable(&ccd_usb_spi, new_mode == CCD_MODE_ENABLED);
#endif

	if (new_mode != CCD_MODE_DISABLED)
		usb_init();
}